diff --git a/Content.Client/DeltaV/Harpy/HarpyVisualsComponent.cs b/Content.Client/DeltaV/Harpy/HarpyVisualsComponent.cs new file mode 100644 index 00000000000..1c3253c74ef --- /dev/null +++ b/Content.Client/DeltaV/Harpy/HarpyVisualsComponent.cs @@ -0,0 +1,5 @@ +namespace Content.Client.DeltaV.Harpy; + +[RegisterComponent] +public sealed partial class HarpyVisualsComponent : Component +{ } diff --git a/Content.Client/DeltaV/Overlays/UltraVisionOverlay.cs b/Content.Client/DeltaV/Overlays/UltraVisionOverlay.cs new file mode 100644 index 00000000000..64e5e762df6 --- /dev/null +++ b/Content.Client/DeltaV/Overlays/UltraVisionOverlay.cs @@ -0,0 +1,44 @@ +using Robust.Client.Graphics; +using Robust.Client.Player; +using Robust.Shared.Enums; +using Robust.Shared.Prototypes; +using Content.Shared.DeltaV.Abilities; + +namespace Content.Client.DeltaV.Overlays; + +public sealed partial class UltraVisionOverlay : Overlay +{ + [Dependency] private readonly IPrototypeManager _prototypeManager = default!; + [Dependency] private readonly IPlayerManager _playerManager = default!; + [Dependency] IEntityManager _entityManager = default!; + + + public override bool RequestScreenTexture => true; + public override OverlaySpace Space => OverlaySpace.WorldSpace; + private readonly ShaderInstance _ultraVisionShader; + + public UltraVisionOverlay() + { + IoCManager.InjectDependencies(this); + _ultraVisionShader = _prototypeManager.Index("UltraVision").Instance().Duplicate(); + } + + protected override void Draw(in OverlayDrawArgs args) + { + if (ScreenTexture == null) + return; + if (_playerManager.LocalPlayer?.ControlledEntity is not {Valid: true} player) + return; + if (!_entityManager.HasComponent(player)) + return; + + _ultraVisionShader?.SetParameter("SCREEN_TEXTURE", ScreenTexture); + + + var worldHandle = args.WorldHandle; + var viewport = args.WorldBounds; + worldHandle.SetTransform(Matrix3.Identity); + worldHandle.UseShader(_ultraVisionShader); + worldHandle.DrawRect(viewport, Color.White); + } +} diff --git a/Content.Client/DeltaV/Overlays/UltraVisionSystem.cs b/Content.Client/DeltaV/Overlays/UltraVisionSystem.cs new file mode 100644 index 00000000000..3c23d4f423d --- /dev/null +++ b/Content.Client/DeltaV/Overlays/UltraVisionSystem.cs @@ -0,0 +1,31 @@ +using Content.Shared.DeltaV.Abilities; +using Robust.Client.Graphics; + +namespace Content.Client.DeltaV.Overlays; + +public sealed partial class UltraVisionSystem : EntitySystem +{ + [Dependency] private readonly IOverlayManager _overlayMan = default!; + + private UltraVisionOverlay _overlay = default!; + + public override void Initialize() + { + base.Initialize(); + + SubscribeLocalEvent(OnUltraVisionInit); + SubscribeLocalEvent(OnUltraVisionShutdown); + + _overlay = new(); + } + + private void OnUltraVisionInit(EntityUid uid, UltraVisionComponent component, ComponentInit args) + { + _overlayMan.AddOverlay(_overlay); + } + + private void OnUltraVisionShutdown(EntityUid uid, UltraVisionComponent component, ComponentShutdown args) + { + _overlayMan.RemoveOverlay(_overlay); + } +} diff --git a/Content.Server/DeltaV/Harpy/HarpySingerSystem.cs b/Content.Server/DeltaV/Harpy/HarpySingerSystem.cs new file mode 100644 index 00000000000..ec3637823af --- /dev/null +++ b/Content.Server/DeltaV/Harpy/HarpySingerSystem.cs @@ -0,0 +1,180 @@ +using Content.Server.Instruments; +using Content.Server.Speech.Components; +using Content.Server.UserInterface; +using Content.Shared.Instruments; +using Content.Shared.ActionBlocker; +using Content.Shared.Damage; +using Content.Shared.Damage.ForceSay; +using Content.Shared.DeltaV.Harpy; +using Content.Shared.FixedPoint; +using Content.Shared.Inventory; +using Content.Shared.Inventory.Events; +using Content.Shared.Mobs; +using Content.Shared.Popups; +using Content.Shared.StatusEffect; +using Content.Shared.Stunnable; +using Content.Shared.UserInterface; +using Content.Shared.Zombies; +using Robust.Shared.Player; +using Robust.Shared.Prototypes; +using Content.Shared.DeltaV.Harpy.Components; + +namespace Content.Server.DeltaV.Harpy +{ + public sealed class HarpySingerSystem : EntitySystem + { + [Dependency] private readonly InstrumentSystem _instrument = default!; + [Dependency] private readonly SharedPopupSystem _popupSystem = default!; + [Dependency] private readonly InventorySystem _inventorySystem = default!; + [Dependency] private readonly ActionBlockerSystem _blocker = default!; + [Dependency] private readonly IPrototypeManager _prototype = default!; + [Dependency] private readonly SharedAppearanceSystem _appearance = default!; + + public override void Initialize() + { + base.Initialize(); + + SubscribeLocalEvent(OnMobStateChangedEvent); + SubscribeLocalEvent(OnEquip); + SubscribeLocalEvent(OnZombified); + SubscribeLocalEvent(OnKnockedDown); + SubscribeLocalEvent(OnStunned); + SubscribeLocalEvent(OnSleep); + SubscribeLocalEvent(OnStatusEffect); + SubscribeLocalEvent(OnDamageChanged); + SubscribeLocalEvent(OnBoundUIClosed); + SubscribeLocalEvent(OnBoundUIOpened); + + // This is intended to intercept the UI event and stop the MIDI UI from opening if the + // singer is unable to sing. Thus it needs to run before the ActivatableUISystem. + SubscribeLocalEvent(OnInstrumentOpen, before: new[] { typeof(ActivatableUISystem) }); + } + + private void OnEquip(GotEquippedEvent args) + { + // Check if an item that makes the singer mumble is equipped to their face + // (not their pockets!). As of writing, this should just be the muzzle. + if (TryComp(args.Equipment, out var accent) && + accent.ReplacementPrototype == "mumble" && + args.Slot == "mask") + { + CloseMidiUi(args.Equipee); + } + } + + private void OnMobStateChangedEvent(EntityUid uid, InstrumentComponent component, MobStateChangedEvent args) + { + if (args.NewMobState is MobState.Critical or MobState.Dead) + CloseMidiUi(args.Target); + } + + private void OnZombified(ref EntityZombifiedEvent args) + { + CloseMidiUi(args.Target); + } + + private void OnKnockedDown(EntityUid uid, InstrumentComponent component, ref KnockedDownEvent args) + { + CloseMidiUi(uid); + } + + private void OnStunned(EntityUid uid, InstrumentComponent component, ref StunnedEvent args) + { + CloseMidiUi(uid); + } + + private void OnSleep(EntityUid uid, InstrumentComponent component, ref SleepStateChangedEvent args) + { + if (args.FellAsleep) + CloseMidiUi(uid); + } + + private void OnStatusEffect(EntityUid uid, InstrumentComponent component, StatusEffectAddedEvent args) + { + if (args.Key == "Muted") + CloseMidiUi(uid); + } + + /// + /// Almost a copy of Content.Server.Damage.ForceSay.DamageForceSaySystem.OnDamageChanged. + /// Done so because DamageForceSaySystem doesn't output an event, and my understanding is + /// that we don't want to change upstream code more than necessary to avoid merge conflicts + /// and maintenance overhead. It still reuses the values from DamageForceSayComponent, so + /// any tweaks to that will keep ForceSay consistent with singing interruptions. + /// + private void OnDamageChanged(EntityUid uid, InstrumentComponent instrumentComponent, DamageChangedEvent args) + { + if (!TryComp(uid, out var component) || + args.DamageDelta == null || + !args.DamageIncreased || + args.DamageDelta.GetTotal() < component.DamageThreshold || + component.ValidDamageGroups == null) + return; + + var totalApplicableDamage = FixedPoint2.Zero; + foreach (var (group, value) in args.DamageDelta.GetDamagePerGroup(_prototype)) + { + if (!component.ValidDamageGroups.Contains(group)) + continue; + + totalApplicableDamage += value; + } + + if (totalApplicableDamage >= component.DamageThreshold) + CloseMidiUi(uid); + } + + /// + /// Closes the MIDI UI if it is open. + /// + private void CloseMidiUi(EntityUid uid) + { + if (HasComp(uid) && + TryComp(uid, out var actor)) + { + _instrument.ToggleInstrumentUi(uid, actor.PlayerSession); + } + } + + /// + /// Prevent the player from opening the MIDI UI under some circumstances. + /// + private void OnInstrumentOpen(EntityUid uid, HarpySingerComponent component, OpenUiActionEvent args) + { + // CanSpeak covers all reasons you can't talk, including being incapacitated + // (crit/dead), asleep, or for any reason mute inclding glimmer or a mime's vow. + var canNotSpeak = !_blocker.CanSpeak(uid); + var zombified = TryComp(uid, out var _); + var muzzled = _inventorySystem.TryGetSlotEntity(uid, "mask", out var maskUid) && + TryComp(maskUid, out var accent) && + accent.ReplacementPrototype == "mumble"; + + // Set this event as handled when the singer should be incapable of singing in order + // to stop the ActivatableUISystem event from opening the MIDI UI. + args.Handled = canNotSpeak || muzzled || zombified; + + // Tell the user that they can not sing. + if (args.Handled) + _popupSystem.PopupEntity(Loc.GetString("no-sing-while-no-speak"), uid, uid, PopupType.Medium); + } + + private void OnBoundUIClosed(EntityUid uid, HarpySingerComponent component, BoundUIClosedEvent args) + { + if (args.UiKey is not InstrumentUiKey) + return; + + TryComp(uid, out AppearanceComponent? appearance); + _appearance.SetData(uid, HarpyVisualLayers.Singing, SingingVisualLayer.False, appearance); + } + + private void OnBoundUIOpened(EntityUid uid, HarpySingerComponent component, BoundUIOpenedEvent args) + { + if (args.UiKey is not InstrumentUiKey) + return; + + TryComp(uid, out AppearanceComponent? appearance); + _appearance.SetData(uid, HarpyVisualLayers.Singing, SingingVisualLayer.True, appearance); + + } + } +} diff --git a/Content.Server/DeltaV/Implants/SubdermalBionicSyrinxImplantSystem.cs b/Content.Server/DeltaV/Implants/SubdermalBionicSyrinxImplantSystem.cs new file mode 100644 index 00000000000..60ec363ac2e --- /dev/null +++ b/Content.Server/DeltaV/Implants/SubdermalBionicSyrinxImplantSystem.cs @@ -0,0 +1,114 @@ +using Content.Server.Administration.Logs; +using Content.Server.Chat.Systems; +using Content.Server.Popups; +using Content.Server.VoiceMask; +using Content.Server.Implants; +using Content.Shared.Database; +using Content.Shared.Implants; +using Content.Shared.Implants.Components; +using Content.Shared.Popups; +using Content.Shared.Preferences; +using Content.Shared.Tag; +using Content.Shared.VoiceMask; +using Robust.Server.GameObjects; +using Robust.Shared.Containers; + +namespace Content.Server.DeltaV.Implants; + +public sealed class SubdermalBionicSyrinxImplantSystem : EntitySystem +{ + [Dependency] private readonly UserInterfaceSystem _uiSystem = default!; + [Dependency] private readonly PopupSystem _popupSystem = default!; + [Dependency] private readonly IAdminLogManager _adminLogger = default!; + [Dependency] private readonly TagSystem _tag = default!; + + [ValidatePrototypeId] + public const string BionicSyrinxImplant = "BionicSyrinxImplant"; + + + public override void Initialize() + { + base.Initialize(); + + SubscribeLocalEvent(OnInsert); + SubscribeLocalEvent(OnSpeakerNameTransform); + SubscribeLocalEvent(OnChangeName); + // We need to remove the SyrinxVoiceMaskComponent from the owner before the implant + // is removed, so we need to execute before the SubdermalImplantSystem. + SubscribeLocalEvent(OnRemove, before: new[] { typeof(SubdermalImplantSystem) }); + } + + private void OnInsert(EntityUid uid, VoiceMaskerComponent component, ImplantImplantedEvent args) + { + if (!args.Implanted.HasValue || + !_tag.HasTag(args.Implant, BionicSyrinxImplant)) + return; + + var voicemask = EnsureComp(args.Implanted.Value); + voicemask.VoiceName = MetaData(args.Implanted.Value).EntityName; + Dirty(args.Implanted.Value, voicemask); + } + + private void OnRemove(EntityUid uid, VoiceMaskerComponent component, EntGotRemovedFromContainerMessage args) + { + if (!TryComp(uid, out var implanted) || implanted.ImplantedEntity == null) + return; + + RemComp(implanted.ImplantedEntity.Value); + } + + /// + /// Copy from VoiceMaskSystem, adapted to work with SyrinxVoiceMaskComponent. + /// + private void OnChangeName(EntityUid uid, SyrinxVoiceMaskComponent component, VoiceMaskChangeNameMessage message) + { + if (message.Name.Length > HumanoidCharacterProfile.MaxNameLength || message.Name.Length <= 0) + { + _popupSystem.PopupEntity(Loc.GetString("voice-mask-popup-failure"), uid, message.Session, PopupType.SmallCaution); + return; + } + + component.VoiceName = message.Name; + if (message.Session.AttachedEntity != null) + _adminLogger.Add(LogType.Action, LogImpact.Medium, $"{ToPrettyString(message.Session.AttachedEntity.Value):player} set voice of {ToPrettyString(uid):mask}: {component.VoiceName}"); + else + _adminLogger.Add(LogType.Action, LogImpact.Medium, $"Voice of {ToPrettyString(uid):mask} set: {component.VoiceName}"); + + _popupSystem.PopupEntity(Loc.GetString("voice-mask-popup-success"), uid, message.Session); + TrySetLastKnownName(uid, message.Name); + UpdateUI(uid, component); + } + + /// + /// Copy from VoiceMaskSystem, adapted to work with SyrinxVoiceMaskComponent. + /// + private void TrySetLastKnownName(EntityUid implanted, string lastName) + { + if (!HasComp(implanted) + || !TryComp(implanted, out var maskComp)) + return; + + maskComp.LastSetName = lastName; + } + + /// + /// Copy from VoiceMaskSystem, adapted to work with SyrinxVoiceMaskComponent. + /// + private void UpdateUI(EntityUid owner, SyrinxVoiceMaskComponent? component = null) + { + if (!Resolve(owner, ref component, logMissing: false)) + return; + + if (_uiSystem.TryGetUi(owner, VoiceMaskUIKey.Key, out var bui)) + _uiSystem.SetUiState(bui, new VoiceMaskBuiState(component.VoiceName)); + } + + /// + /// Copy from VoiceMaskSystem, adapted to work with SyrinxVoiceMaskComponent. + /// + private void OnSpeakerNameTransform(EntityUid uid, SyrinxVoiceMaskComponent component, TransformSpeakerNameEvent args) + { + if (component.Enabled) + args.Name = component.VoiceName; + } +} diff --git a/Content.Server/DeltaV/VoiceMask/SyrinxVoiceMaskComponent.cs b/Content.Server/DeltaV/VoiceMask/SyrinxVoiceMaskComponent.cs new file mode 100644 index 00000000000..97c04039f92 --- /dev/null +++ b/Content.Server/DeltaV/VoiceMask/SyrinxVoiceMaskComponent.cs @@ -0,0 +1,9 @@ +namespace Content.Server.VoiceMask; + +[RegisterComponent] +public sealed partial class SyrinxVoiceMaskComponent : Component +{ + [ViewVariables(VVAccess.ReadWrite)] public bool Enabled = true; + + [ViewVariables(VVAccess.ReadWrite)] public string VoiceName = "Unknown"; +} diff --git a/Content.Server/Procedural/DungeonJob.Generator.cs b/Content.Server/Procedural/DungeonJob.Generator.cs index 4415ec66d4a..a466cfdb14d 100644 --- a/Content.Server/Procedural/DungeonJob.Generator.cs +++ b/Content.Server/Procedural/DungeonJob.Generator.cs @@ -351,7 +351,8 @@ private async Task GeneratePrefabDungeon(PrefabDunGen prefab, EntityUid grid.SetTile(tilePos, fallbackTile); } - var result = _decals.TryAddDecal( + // var result = + _decals.TryAddDecal( decal.Id, new EntityCoordinates(gridUid, position), out _, @@ -360,7 +361,10 @@ private async Task GeneratePrefabDungeon(PrefabDunGen prefab, EntityUid decal.ZIndex, decal.Cleanable); - DebugTools.Assert(result); + // Frontier change + // We disable the assertion here because generation of spaceplatform stops prematurely since it has holes. + // Dont care if decals dont get placed because of holes, generation works fine if we ignore the assertion. + // DebugTools.Assert(result); } } diff --git a/Content.Server/Shipyard/Systems/ShipyardSystem.Consoles.cs b/Content.Server/Shipyard/Systems/ShipyardSystem.Consoles.cs index b740900b66d..629d2e12ed4 100644 --- a/Content.Server/Shipyard/Systems/ShipyardSystem.Consoles.cs +++ b/Content.Server/Shipyard/Systems/ShipyardSystem.Consoles.cs @@ -36,6 +36,7 @@ using Content.Server.Shuttles.Components; using Content.Server.Station.Components; using System.Text.RegularExpressions; +using Robust.Shared.Audio; using Robust.Shared.Audio.Systems; namespace Content.Server.Shipyard.Systems; @@ -438,12 +439,12 @@ private void SendSellMessage(EntityUid uid, EntityUid? player, string name, stri private void PlayDenySound(EntityUid uid, ShipyardConsoleComponent component) { - _audio.PlayPvs(_audio.GetSound(component.ErrorSound), uid); + _audio.PlayPvs(_audio.GetSound(component.ErrorSound), uid, AudioParams.Default.WithMaxDistance(0.01f)); } private void PlayConfirmSound(EntityUid uid, ShipyardConsoleComponent component) { - _audio.PlayPvs(_audio.GetSound(component.ConfirmSound), uid); + _audio.PlayPvs(_audio.GetSound(component.ConfirmSound), uid, AudioParams.Default.WithMaxDistance(0.01f)); } private void OnItemSlotChanged(EntityUid uid, ShipyardConsoleComponent component, ContainerModifiedMessage args) diff --git a/Content.Server/Species/Systems/NymphSystem.cs b/Content.Server/Species/Systems/NymphSystem.cs index 8d0646ae8e4..da7a3d2a61f 100644 --- a/Content.Server/Species/Systems/NymphSystem.cs +++ b/Content.Server/Species/Systems/NymphSystem.cs @@ -1,4 +1,6 @@ +using Content.Server.Cargo.Components; using Content.Server.Mind; +using Content.Shared.Bank.Components; using Content.Shared.Species.Components; using Content.Shared.Body.Events; using Robust.Shared.Prototypes; @@ -34,8 +36,24 @@ private void OnRemovedFromPart(EntityUid uid, NymphComponent comp, RemovedFromPa var nymph = EntityManager.SpawnAtPosition(entityProto.ID, coords); if (comp.TransferMind == true && _mindSystem.TryGetMind(args.OldBody, out var mindId, out var mind)) + { _mindSystem.TransferTo(mindId, nymph, mind: mind); + + // Frontier + EnsureComp(nymph); + + // Frontier + // bank account transfer + if (TryComp(args.OldBody, out var bank)) + { + // Do this carefully since changing the value of a bank account component on a entity will save the balance immediately through subscribers. + var oldBankBalance = bank.Balance; + var newBank = EnsureComp(nymph); + newBank.Balance = oldBankBalance; + } + } + QueueDel(uid); } } diff --git a/Content.Server/_NF/Species/Systems/ReformSystem.cs b/Content.Server/_NF/Species/Systems/ReformSystem.cs new file mode 100644 index 00000000000..4e101843161 --- /dev/null +++ b/Content.Server/_NF/Species/Systems/ReformSystem.cs @@ -0,0 +1,21 @@ +using Content.Server.Cargo.Components; +using Content.Shared.Mind; +using Content.Shared.Species.Components; +using static Content.Shared.Species.ReformSystem; + +namespace Content.Server._NF.Species.Systems; + +// Frontier - This adds cargo sell blacklist component to the newly reformed diona. +public sealed partial class ReformSystem : EntitySystem +{ + public override void Initialize() + { + base.Initialize(); + SubscribeLocalEvent(OnDionaReformed); + } + + private void OnDionaReformed(SetDionaCargoBlacklistEvent ev) + { + EnsureComp(ev.ReformedDiona); + } +} diff --git a/Content.Shared/Access/Components/IdCardComponent.cs b/Content.Shared/Access/Components/IdCardComponent.cs index 26e83c5586e..9459f6c1910 100644 --- a/Content.Shared/Access/Components/IdCardComponent.cs +++ b/Content.Shared/Access/Components/IdCardComponent.cs @@ -1,6 +1,7 @@ using Content.Shared.Access.Systems; using Content.Shared.PDA; using Content.Shared.StatusIcon; +using Robust.Shared.Audio; using Robust.Shared.GameStates; using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype; @@ -40,4 +41,21 @@ public sealed partial class IdCardComponent : Component /// [DataField, ViewVariables(VVAccess.ReadWrite)] public bool BypassLogging; + + + // Frontier + [DataField("soundError")] + public SoundSpecifier ErrorSound = + new SoundPathSpecifier("/Audio/Effects/Cargo/buzz_sigh.ogg"); + + // Frontier + [DataField("soundSwipe")] + public SoundSpecifier SwipeSound = + new SoundPathSpecifier("/Audio/Machines/id_swipe.ogg"); + + // Frontier + [DataField("soundInsert")] + public SoundSpecifier InsertSound = + new SoundPathSpecifier("/Audio/Machines/id_insert.ogg"); + } diff --git a/Content.Shared/Access/Components/IdCardConsoleComponent.cs b/Content.Shared/Access/Components/IdCardConsoleComponent.cs index 3beff6c7d17..55023e4e14a 100644 --- a/Content.Shared/Access/Components/IdCardConsoleComponent.cs +++ b/Content.Shared/Access/Components/IdCardConsoleComponent.cs @@ -49,6 +49,7 @@ public sealed partial class IdCardConsoleComponent : Component "Janitor", "Kitchen", "Lawyer", + "Mail", // Frontier "Maintenance", "Medical", "Mercenary", // Frontier diff --git a/Content.Shared/DeltaV/Abilities/UltraVisionComponent.cs b/Content.Shared/DeltaV/Abilities/UltraVisionComponent.cs new file mode 100644 index 00000000000..c601d5bd8a8 --- /dev/null +++ b/Content.Shared/DeltaV/Abilities/UltraVisionComponent.cs @@ -0,0 +1,8 @@ +using Robust.Shared.GameStates; +namespace Content.Shared.DeltaV.Abilities; + +[RegisterComponent] +[NetworkedComponent] + +public sealed partial class UltraVisionComponent : Component +{} diff --git a/Content.Shared/DeltaV/Harpy/Components/HarpyVisualSystem.cs b/Content.Shared/DeltaV/Harpy/Components/HarpyVisualSystem.cs new file mode 100644 index 00000000000..f5100e13c7f --- /dev/null +++ b/Content.Shared/DeltaV/Harpy/Components/HarpyVisualSystem.cs @@ -0,0 +1,17 @@ +using Robust.Shared.Serialization; + +namespace Content.Shared.DeltaV.Harpy.Components +{ + [Serializable, NetSerializable] + public enum HarpyVisualLayers + { + Singing, + } + + [Serializable, NetSerializable] + public enum SingingVisualLayer + { + True, + False, + } +} diff --git a/Content.Shared/DeltaV/Harpy/HarpySingerComponent.cs b/Content.Shared/DeltaV/Harpy/HarpySingerComponent.cs new file mode 100644 index 00000000000..1ee3f795d58 --- /dev/null +++ b/Content.Shared/DeltaV/Harpy/HarpySingerComponent.cs @@ -0,0 +1,17 @@ +using Robust.Shared.GameStates; +using Robust.Shared.Prototypes; +using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype; + +namespace Content.Shared.DeltaV.Harpy +{ + [RegisterComponent, NetworkedComponent] + public sealed partial class HarpySingerComponent : Component + { + [DataField("midiActionId", serverOnly: true, + customTypeSerializer: typeof(PrototypeIdSerializer))] + public string? MidiActionId = "ActionHarpyPlayMidi"; + + [DataField("midiAction", serverOnly: true)] // server only, as it uses a server-BUI event !type + public EntityUid? MidiAction; + } +} diff --git a/Content.Shared/DeltaV/Harpy/HarpySingerSystem.cs b/Content.Shared/DeltaV/Harpy/HarpySingerSystem.cs new file mode 100644 index 00000000000..50e8b6302c0 --- /dev/null +++ b/Content.Shared/DeltaV/Harpy/HarpySingerSystem.cs @@ -0,0 +1,28 @@ +using Content.Shared.Actions; + +namespace Content.Shared.DeltaV.Harpy +{ + public class HarpySingerSystem : EntitySystem + { + [Dependency] private readonly SharedActionsSystem _actionsSystem = default!; + + public override void Initialize() + { + base.Initialize(); + + SubscribeLocalEvent(OnStartup); + SubscribeLocalEvent(OnShutdown); + } + + private void OnStartup(EntityUid uid, HarpySingerComponent component, ComponentStartup args) + { + _actionsSystem.AddAction(uid, ref component.MidiAction, component.MidiActionId); + } + + private void OnShutdown(EntityUid uid, HarpySingerComponent component, ComponentShutdown args) + { + _actionsSystem.RemoveAction(uid, component.MidiAction); + } + } +} + diff --git a/Content.Shared/DeltaV/Harpy/HarpyVisualsSystem.cs b/Content.Shared/DeltaV/Harpy/HarpyVisualsSystem.cs new file mode 100644 index 00000000000..f75fcee8d42 --- /dev/null +++ b/Content.Shared/DeltaV/Harpy/HarpyVisualsSystem.cs @@ -0,0 +1,40 @@ +using Content.Shared.Inventory.Events; +using Content.Shared.Tag; +using Content.Shared.Humanoid; + +namespace Content.Shared.DeltaV.Harpy; + +public sealed class HarpyVisualsSystem : EntitySystem +{ + [Dependency] private readonly TagSystem _tagSystem = default!; + [Dependency] private readonly SharedHumanoidAppearanceSystem _humanoidSystem = default!; + + [ValidatePrototypeId] + private const string HarpyWingsTag = "HidesHarpyWings"; + + public override void Initialize() + { + base.Initialize(); + + SubscribeLocalEvent(OnDidEquipEvent); + SubscribeLocalEvent(OnDidUnequipEvent); + } + + private void OnDidEquipEvent(EntityUid uid, HarpySingerComponent component, DidEquipEvent args) + { + if (args.Slot == "outerClothing" && _tagSystem.HasTag(args.Equipment, HarpyWingsTag)) + { + _humanoidSystem.SetLayerVisibility(uid, HumanoidVisualLayers.RArm, false); + _humanoidSystem.SetLayerVisibility(uid, HumanoidVisualLayers.Tail, false); + } + } + + private void OnDidUnequipEvent(EntityUid uid, HarpySingerComponent component, DidUnequipEvent args) + { + if (args.Slot == "outerClothing" && _tagSystem.HasTag(args.Equipment, HarpyWingsTag)) + { + _humanoidSystem.SetLayerVisibility(uid, HumanoidVisualLayers.RArm, true); + _humanoidSystem.SetLayerVisibility(uid, HumanoidVisualLayers.Tail, true); + } + } +} diff --git a/Content.Shared/DeltaV/Harpy/SharedHarpyVisualsComponent.cs b/Content.Shared/DeltaV/Harpy/SharedHarpyVisualsComponent.cs new file mode 100644 index 00000000000..cc0f7c39354 --- /dev/null +++ b/Content.Shared/DeltaV/Harpy/SharedHarpyVisualsComponent.cs @@ -0,0 +1,9 @@ +using Robust.Shared.Serialization; + +namespace Content.Shared.DeltaV.Harpy; + +[Serializable, NetSerializable] +public enum HardsuitWings : byte +{ + Worn +} diff --git a/Content.Shared/RCD/Components/RCDAmmoComponent.cs b/Content.Shared/RCD/Components/RCDAmmoComponent.cs index 7b1fc001d4d..16a92b6aa25 100644 --- a/Content.Shared/RCD/Components/RCDAmmoComponent.cs +++ b/Content.Shared/RCD/Components/RCDAmmoComponent.cs @@ -13,6 +13,13 @@ public sealed partial class RCDAmmoComponent : Component /// [DataField("charges"), ViewVariables(VVAccess.ReadWrite), AutoNetworkedField] public int Charges = 5; + + /// + /// ~~~ Frontier ~~~ + /// A flag that limits RCD to the authorized ships. + /// + [DataField("isShipyardRCDAmmo"), AutoNetworkedField] + public bool IsShipyardRCDAmmo; } // TODO: state??? check if it desyncs diff --git a/Content.Shared/RCD/Components/RCDComponent.cs b/Content.Shared/RCD/Components/RCDComponent.cs index 8e1032884aa..68271b1a102 100644 --- a/Content.Shared/RCD/Components/RCDComponent.cs +++ b/Content.Shared/RCD/Components/RCDComponent.cs @@ -48,4 +48,18 @@ public sealed partial class RCDComponent : Component [DataField("floor", customTypeSerializer: typeof(PrototypeIdSerializer))] [ViewVariables(VVAccess.ReadWrite), AutoNetworkedField] public string Floor = "FloorSteel"; + + /// + /// ~~~ Frontier ~~~ + /// A flag that limits RCD to the authorized ships. + /// + [DataField("isShipyardRCD"), AutoNetworkedField] + public bool IsShipyardRCD; + + /// + /// ~~~ Frontier ~~~ + /// The uid to which this RCD is limited to be used on. + /// + [DataField("linkedShuttleUid"), AutoNetworkedField] + public EntityUid? LinkedShuttleUid = null; } diff --git a/Content.Shared/RCD/Systems/RCDAmmoSystem.cs b/Content.Shared/RCD/Systems/RCDAmmoSystem.cs index 9481d299aaa..9136e337e28 100644 --- a/Content.Shared/RCD/Systems/RCDAmmoSystem.cs +++ b/Content.Shared/RCD/Systems/RCDAmmoSystem.cs @@ -42,6 +42,16 @@ private void OnAfterInteract(EntityUid uid, RCDAmmoComponent comp, AfterInteract return; var user = args.User; + + // ## Frontier - Shipyard RCD ammo only fits in shipyard RCD. + // At this point RCDComponent is guaranteed + EnsureComp(target, out var rcdComponent); + if (rcdComponent.IsShipyardRCD && !comp.IsShipyardRCDAmmo || !rcdComponent.IsShipyardRCD && comp.IsShipyardRCDAmmo) + { + _popup.PopupClient(Loc.GetString("rcd-component-wrong-ammo-type"), target, user); + return; + } + args.Handled = true; var count = Math.Min(charges.MaxCharges - charges.Charges, comp.Charges); if (count <= 0) diff --git a/Content.Shared/RCD/Systems/RCDSystem.cs b/Content.Shared/RCD/Systems/RCDSystem.cs index 2b9852a6945..f93ecb12fd2 100644 --- a/Content.Shared/RCD/Systems/RCDSystem.cs +++ b/Content.Shared/RCD/Systems/RCDSystem.cs @@ -1,3 +1,4 @@ +using Content.Shared.Access.Components; using Content.Shared.Administration.Logs; using Content.Shared.Charges.Components; using Content.Shared.Charges.Systems; @@ -10,6 +11,7 @@ using Content.Shared.Physics; using Content.Shared.Popups; using Content.Shared.RCD.Components; +using Content.Shared.Shipyard.Components; using Content.Shared.Tag; using Content.Shared.Tiles; using Robust.Shared.Audio; @@ -50,6 +52,7 @@ public override void Initialize() SubscribeLocalEvent(OnAfterInteract); SubscribeLocalEvent(OnDoAfter); SubscribeLocalEvent>(OnDoAfterAttempt); + SubscribeLocalEvent(OnIdCardSwipeHappened); // Frontier } private void OnExamine(EntityUid uid, RCDComponent comp, ExaminedEvent args) @@ -70,6 +73,56 @@ private void OnUseInHand(EntityUid uid, RCDComponent comp, UseInHandEvent args) args.Handled = true; } + /** + * Frontier - ability to swipe rcd for authorizations to build on specific grids + */ + private void OnIdCardSwipeHappened(EntityUid uid, IdCardComponent comp, ref AfterInteractEvent args) + { + if (args.Handled) + return; + + if (args.Target is not { Valid: true } target || !args.CanReach) + return; + + var rcdEntityUid = target; + + // Is this id card interacting with a shipyard RCD ? if not, ignore it. + if (!TryComp(rcdEntityUid, out var rcdComponent) || !rcdComponent.IsShipyardRCD) + { + args.Handled = true; + return; + } + + // If the id card has no registered ship we cant continue. + if (!TryComp(comp.Owner, out var shuttleDeedComponent)) + { + _popup.PopupClient(Loc.GetString("rcd-component-missing-id-deed"), + uid, args.User, PopupType.Medium); + _audio.PlayPredicted(comp.ErrorSound, rcdEntityUid, args.User, AudioParams.Default.WithMaxDistance(0.01f)); + args.Handled = true; + return; + } + + // Swiping it again removes the authorization on it. + if (rcdComponent.LinkedShuttleUid != null) + { + _popup.PopupClient(Loc.GetString("rcd-component-id-card-removed"), + uid, args.User, PopupType.Medium); + _audio.PlayPredicted(comp.SwipeSound, rcdEntityUid, args.User, AudioParams.Default.WithMaxDistance(0.01f)); + rcdComponent.LinkedShuttleUid = null; + } + else + { + _popup.PopupClient(Loc.GetString("rcd-component-id-card-accepted"), + uid, args.User, PopupType.Medium); + _audio.PlayPredicted(comp.InsertSound, rcdEntityUid, args.User, AudioParams.Default.WithMaxDistance(0.01f)); + rcdComponent.LinkedShuttleUid = shuttleDeedComponent.ShuttleUid; + } + + Dirty(rcdComponent.Owner, rcdComponent); + args.Handled = true; + } + private void OnAfterInteract(EntityUid uid, RCDComponent comp, AfterInteractEvent args) { if (args.Handled || !args.CanReach) @@ -111,10 +164,48 @@ private void OnAfterInteract(EntityUid uid, RCDComponent comp, AfterInteractEven args.Handled = true; - if (_doAfter.TryStartDoAfter(doAfterArgs) && _gameTiming.IsFirstTimePredicted) + // IsAuthorized is part of frontier + if (IsAuthorized(gridId, uid, comp, args) && _doAfter.TryStartDoAfter(doAfterArgs) && _gameTiming.IsFirstTimePredicted) Spawn("EffectRCDConstruction", location); } + /** + * Frontier - Stops RCD functions if there is a protected grid component on it, and adds shipyard rcd limitations. + */ + private bool IsAuthorized(EntityUid? gridId, EntityUid uid, RCDComponent comp, AfterInteractEvent args) + { + if (gridId == null) + { + return true; + } + var mapGrid = _mapMan.GetGrid(gridId.Value); + var gridUid = mapGrid.Owner; + + // Frontier - Remove all RCD use on outpost. + if (HasComp(gridUid)) + { + _popup.PopupClient(Loc.GetString("rcd-component-use-blocked"), uid, args.User); + return false; + } + + // Frontier - LinkedShuttleUid requirements to use Shipyard RCD. + if (comp.IsShipyardRCD) + { + if (comp.LinkedShuttleUid == null) + { + _popup.PopupClient(Loc.GetString("rcd-component-no-id-swiped"), uid, args.User); + return false; + } + if (comp.LinkedShuttleUid != gridUid) + { + _popup.PopupClient(Loc.GetString("rcd-component-can-only-build-authorized-ship"), uid, args.User); + return false; + } + } + + return true; + } + private void OnDoAfterAttempt(EntityUid uid, RCDComponent comp, DoAfterAttemptEvent args) { // sus client crash why @@ -162,14 +253,6 @@ private void OnDoAfter(EntityUid uid, RCDComponent comp, RCDDoAfterEvent args) var tile = mapGrid.GetTileRef(location); var snapPos = mapGrid.TileIndicesFor(location); - // I love that this uses entirely separate code to construction and tile placement!!! - - var gridUid = mapGrid.Owner; - var ev = new FloorTileAttemptEvent(); - - if (HasComp(gridUid) || ev.Cancelled) // Frontier - Remove all RCD use on outpost. - return; - switch (comp.Mode) { //Floor mode just needs the tile to be a space tile (subFloor) diff --git a/Content.Shared/Roles/StartingGearPrototype.cs b/Content.Shared/Roles/StartingGearPrototype.cs index 9ba4eab945d..9fb05aec077 100644 --- a/Content.Shared/Roles/StartingGearPrototype.cs +++ b/Content.Shared/Roles/StartingGearPrototype.cs @@ -35,7 +35,8 @@ public string GetGear(string slot, HumanoidCharacterProfile? profile) { if (profile != null) { - if (slot == "jumpsuit" && profile.Clothing == ClothingPreference.Jumpskirt && !string.IsNullOrEmpty(InnerClothingSkirt)) + if (slot == "jumpsuit" && profile.Clothing == ClothingPreference.Jumpskirt && !string.IsNullOrEmpty(InnerClothingSkirt) + ||slot == "jumpsuit" && profile.Species == "Harpy" && !string.IsNullOrEmpty(InnerClothingSkirt)) //Frontier: Needed for Harpies return InnerClothingSkirt; if (slot == "back" && profile.Backpack == BackpackPreference.Satchel && !string.IsNullOrEmpty(Satchel)) return Satchel; diff --git a/Content.Shared/Shipyard/Components/ShuttleDeedComponent.cs b/Content.Shared/Shipyard/Components/ShuttleDeedComponent.cs index ef66b5ff989..1ff534afbcb 100644 --- a/Content.Shared/Shipyard/Components/ShuttleDeedComponent.cs +++ b/Content.Shared/Shipyard/Components/ShuttleDeedComponent.cs @@ -1,9 +1,11 @@ +using Robust.Shared.GameStates; + namespace Content.Shared.Shipyard.Components; /// /// Tied to an ID card when a ship is purchased. 1 ship per captain. /// -[RegisterComponent, Access(typeof(SharedShipyardSystem))] +[RegisterComponent, NetworkedComponent, Access(typeof(SharedShipyardSystem))] public sealed partial class ShuttleDeedComponent : Component { public const int MaxNameLength = 30; diff --git a/Content.Shared/Species/Systems/ReformSystem.cs b/Content.Shared/Species/Systems/ReformSystem.cs index a013a7f8864..1c4c7c1f379 100644 --- a/Content.Shared/Species/Systems/ReformSystem.cs +++ b/Content.Shared/Species/Systems/ReformSystem.cs @@ -1,5 +1,6 @@ using Content.Shared.Species.Components; using Content.Shared.Actions; +using Content.Shared.Bank.Components; using Content.Shared.DoAfter; using Content.Shared.Popups; using Content.Shared.Stunnable; @@ -90,19 +91,37 @@ private void OnDoAfter(EntityUid uid, ReformComponent comp, ReformDoAfterEvent a return; // Spawn a new entity - // This is, to an extent, taken from polymorph. I don't use polymorph for various reasons- most notably that this is permanent. + // This is, to an extent, taken from polymorph. I don't use polymorph for various reasons- most notably that this is permanent. var child = Spawn(comp.ReformPrototype, Transform(uid).Coordinates); // This transfers the mind to the new entity if (_mindSystem.TryGetMind(uid, out var mindId, out var mind)) _mindSystem.TransferTo(mindId, child, mind: mind); + // Frontier + // bank account transfer + if (TryComp(uid, out var bank)) + { + // Do this carefully since changing the value of a bank account component on a entity will save the balance immediately through subscribers. + var oldBankBalance = bank.Balance; + var newBank = EnsureComp(child); + newBank.Balance = oldBankBalance; + } + + // Frontier + RaiseLocalEvent(child, new SetDionaCargoBlacklistEvent(child), true); + // Delete the old entity QueueDel(uid); } - public sealed partial class ReformEvent : InstantActionEvent { } - + public sealed partial class ReformEvent : InstantActionEvent { } + [Serializable, NetSerializable] public sealed partial class ReformDoAfterEvent : SimpleDoAfterEvent { } + + public sealed partial class SetDionaCargoBlacklistEvent(EntityUid entity) : EntityEventArgs + { + public EntityUid ReformedDiona { get; } = entity; + } } diff --git a/Resources/Audio/DeltaV/Voice/Harpy/attributions.yml b/Resources/Audio/DeltaV/Voice/Harpy/attributions.yml new file mode 100644 index 00000000000..f8c5fc72360 --- /dev/null +++ b/Resources/Audio/DeltaV/Voice/Harpy/attributions.yml @@ -0,0 +1,9 @@ +- files: ["caw1.ogg"] + license: "CC-BY-SA-4.0" + copyright: "Original sound by https://xeno-canto.org/756861" + source: "https://xeno-canto.org/756861" + + files: ["chirp1.ogg"] + license: "CC-BY-SA-4.0" + copyright: "Original sound by https://xeno-canto.org/797998" + source: "https://xeno-canto.org/797998" diff --git a/Resources/Audio/DeltaV/Voice/Harpy/caw1.ogg b/Resources/Audio/DeltaV/Voice/Harpy/caw1.ogg new file mode 100644 index 00000000000..182d3e755bf Binary files /dev/null and b/Resources/Audio/DeltaV/Voice/Harpy/caw1.ogg differ diff --git a/Resources/Audio/DeltaV/Voice/Harpy/chirp1.ogg b/Resources/Audio/DeltaV/Voice/Harpy/chirp1.ogg new file mode 100644 index 00000000000..5eeea546775 Binary files /dev/null and b/Resources/Audio/DeltaV/Voice/Harpy/chirp1.ogg differ diff --git a/Resources/Audio/DeltaV/Voice/Harpy/license.txt b/Resources/Audio/DeltaV/Voice/Harpy/license.txt new file mode 100644 index 00000000000..d7e2f4ed36b --- /dev/null +++ b/Resources/Audio/DeltaV/Voice/Harpy/license.txt @@ -0,0 +1,2 @@ +caw1.ogg licensed under CC-BY-SA-4.0 taken from https://xeno-canto.org/756861 +chirp1.ogg licensed under CC-BY-SA-4.0 taken from https://xeno-canto.org/797998 diff --git a/Resources/Audio/DeltaV/Voice/Vulpkanin/attributions.yml b/Resources/Audio/DeltaV/Voice/Vulpkanin/attributions.yml new file mode 100644 index 00000000000..8335f4cbf10 --- /dev/null +++ b/Resources/Audio/DeltaV/Voice/Vulpkanin/attributions.yml @@ -0,0 +1,49 @@ +- files: ["dog_bark1.ogg", "dog_bark2.ogg", "dog_bark3.ogg"] + license: "CC0-1.0" + copyright: "Original sound by abhisheky948 at https://freesound.org/people/abhisheky948/sounds/625497/" + source: "https://freesound.org/people/abhisheky948/sounds/625497/" + +- files: ["dog_bark2.ogg"] + license: "CC0-1.0" + copyright: "Original sound by michael_grinnell at https://freesound.org/people/michael_grinnell/sounds/464400/" + source: "https://freesound.org/people/michael_grinnell/sounds/464400/" + +- files: ["dog_bark3.ogg"] + license: "CC0-1.0" + copyright: "Original sound by Geoff-Bremner-Audio at https://freesound.org/people/Geoff-Bremner-Audio/sounds/688201/" + source: "https://freesound.org/people/Geoff-Bremner-Audio/sounds/688201/" + +- files: ["dog_growl1.ogg", "dog_growl2.ogg", "dog_growl3.ogg"] + license: "CC0-1.0" + copyright: "Original sound by GlitchedTones at https://freesound.org/people/Glitchedtones/sounds/372533/ - cut out three clips of dog growling, cleaned up, converted to ogg" + source: "https://freesound.org/people/Glitchedtones/sounds/372533/" + +- files: ["dog_growl4.ogg"] + license: "CC-BY-NC-SA-3.0" + copyright: "Original sound taken from Paradise Station. Renamed to dog_growl4.ogg" + source: "https://github.com/ParadiseSS13/Paradise/blob/master/sound/goonstation/voice/growl1.ogg" + +- files: ["dog_growl5.ogg"] + license: "CC-BY-NC-SA-3.0" + copyright: "Original sound taken from Paradise Station. Renamed to dog_growl5.ogg" + source: "https://github.com/ParadiseSS13/Paradise/blob/master/sound/goonstation/voice/growl2.ogg" + +- files: ["dog_growl6.ogg"] + license: "CC-BY-NC-SA-3.0" + copyright: "Original sound taken from Paradise Station. Renamed to dog_growl6.ogg" + source: "https://github.com/ParadiseSS13/Paradise/blob/master/sound/goonstation/voice/growl3.ogg" + +- files: ["dog_snarl1.ogg", "dog_snarl2.ogg", "dog_snarl3.ogg"] + license: "CC0-1.0" + copyright: "Original sound by strongbot at https://freesound.org/people/strongbot/sounds/341090/ - cut out three clips of dog snarling, cleaned up, converted to ogg" + source: "https://freesound.org/people/strongbot/sounds/341090/" + +- files: ["dog_whine.ogg"] + license: "CC0-1.0" + copyright: "Original sound by Sruddi1 at https://freesound.org/people/Sruddi1/sounds/34878/ - cleaned up, converted to ogg" + source: "https://freesound.org/people/Sruddi1/sounds/34878/" + +- files: ["howl.ogg"] + license: "CC-BY-NC-SA-3.0" + copyright: "Original sound taken from Goonstation. Renamed to howl.ogg" + source: "https://github.com/goonstation/goonstation/blob/master/sound/voice/animal/werewolf_howl.ogg" diff --git a/Resources/Audio/DeltaV/Voice/Vulpkanin/dog_bark1.ogg b/Resources/Audio/DeltaV/Voice/Vulpkanin/dog_bark1.ogg new file mode 100644 index 00000000000..8f3b8fe5bff Binary files /dev/null and b/Resources/Audio/DeltaV/Voice/Vulpkanin/dog_bark1.ogg differ diff --git a/Resources/Audio/DeltaV/Voice/Vulpkanin/dog_bark2.ogg b/Resources/Audio/DeltaV/Voice/Vulpkanin/dog_bark2.ogg new file mode 100644 index 00000000000..ed4d7bc7868 Binary files /dev/null and b/Resources/Audio/DeltaV/Voice/Vulpkanin/dog_bark2.ogg differ diff --git a/Resources/Audio/DeltaV/Voice/Vulpkanin/dog_bark3.ogg b/Resources/Audio/DeltaV/Voice/Vulpkanin/dog_bark3.ogg new file mode 100644 index 00000000000..13aab8edd40 Binary files /dev/null and b/Resources/Audio/DeltaV/Voice/Vulpkanin/dog_bark3.ogg differ diff --git a/Resources/Audio/DeltaV/Voice/Vulpkanin/dog_growl1.ogg b/Resources/Audio/DeltaV/Voice/Vulpkanin/dog_growl1.ogg new file mode 100644 index 00000000000..d2c99e97e7e Binary files /dev/null and b/Resources/Audio/DeltaV/Voice/Vulpkanin/dog_growl1.ogg differ diff --git a/Resources/Audio/DeltaV/Voice/Vulpkanin/dog_growl2.ogg b/Resources/Audio/DeltaV/Voice/Vulpkanin/dog_growl2.ogg new file mode 100644 index 00000000000..3eb018413a5 Binary files /dev/null and b/Resources/Audio/DeltaV/Voice/Vulpkanin/dog_growl2.ogg differ diff --git a/Resources/Audio/DeltaV/Voice/Vulpkanin/dog_growl3.ogg b/Resources/Audio/DeltaV/Voice/Vulpkanin/dog_growl3.ogg new file mode 100644 index 00000000000..84b505442d2 Binary files /dev/null and b/Resources/Audio/DeltaV/Voice/Vulpkanin/dog_growl3.ogg differ diff --git a/Resources/Audio/DeltaV/Voice/Vulpkanin/dog_growl4.ogg b/Resources/Audio/DeltaV/Voice/Vulpkanin/dog_growl4.ogg new file mode 100644 index 00000000000..d5152d9c057 Binary files /dev/null and b/Resources/Audio/DeltaV/Voice/Vulpkanin/dog_growl4.ogg differ diff --git a/Resources/Audio/DeltaV/Voice/Vulpkanin/dog_growl5.ogg b/Resources/Audio/DeltaV/Voice/Vulpkanin/dog_growl5.ogg new file mode 100644 index 00000000000..5c48053ac68 Binary files /dev/null and b/Resources/Audio/DeltaV/Voice/Vulpkanin/dog_growl5.ogg differ diff --git a/Resources/Audio/DeltaV/Voice/Vulpkanin/dog_growl6.ogg b/Resources/Audio/DeltaV/Voice/Vulpkanin/dog_growl6.ogg new file mode 100644 index 00000000000..bcacf2442f0 Binary files /dev/null and b/Resources/Audio/DeltaV/Voice/Vulpkanin/dog_growl6.ogg differ diff --git a/Resources/Audio/DeltaV/Voice/Vulpkanin/dog_snarl1.ogg b/Resources/Audio/DeltaV/Voice/Vulpkanin/dog_snarl1.ogg new file mode 100644 index 00000000000..4493be060cc Binary files /dev/null and b/Resources/Audio/DeltaV/Voice/Vulpkanin/dog_snarl1.ogg differ diff --git a/Resources/Audio/DeltaV/Voice/Vulpkanin/dog_snarl2.ogg b/Resources/Audio/DeltaV/Voice/Vulpkanin/dog_snarl2.ogg new file mode 100644 index 00000000000..6529e4e05d0 Binary files /dev/null and b/Resources/Audio/DeltaV/Voice/Vulpkanin/dog_snarl2.ogg differ diff --git a/Resources/Audio/DeltaV/Voice/Vulpkanin/dog_snarl3.ogg b/Resources/Audio/DeltaV/Voice/Vulpkanin/dog_snarl3.ogg new file mode 100644 index 00000000000..fb9e4c7ec7b Binary files /dev/null and b/Resources/Audio/DeltaV/Voice/Vulpkanin/dog_snarl3.ogg differ diff --git a/Resources/Audio/DeltaV/Voice/Vulpkanin/dog_whine.ogg b/Resources/Audio/DeltaV/Voice/Vulpkanin/dog_whine.ogg new file mode 100644 index 00000000000..47f2e8200d7 Binary files /dev/null and b/Resources/Audio/DeltaV/Voice/Vulpkanin/dog_whine.ogg differ diff --git a/Resources/Audio/DeltaV/Voice/Vulpkanin/howl.ogg b/Resources/Audio/DeltaV/Voice/Vulpkanin/howl.ogg new file mode 100644 index 00000000000..778fd6b2483 Binary files /dev/null and b/Resources/Audio/DeltaV/Voice/Vulpkanin/howl.ogg differ diff --git a/Resources/Audio/DeltaV/Voice/Vulpkanin/license.txt b/Resources/Audio/DeltaV/Voice/Vulpkanin/license.txt new file mode 100644 index 00000000000..753d95909aa --- /dev/null +++ b/Resources/Audio/DeltaV/Voice/Vulpkanin/license.txt @@ -0,0 +1,14 @@ +dog_bark1.ogg licensed under CC0 1.0 taken from abhisheky948 at https://freesound.org/people/abhisheky948/sounds/625497/ +dog_bark2.ogg licensed under CC0 1.0 taken from michael_grinnell at https://freesound.org/people/michael_grinnell/sounds/464400/ +dog_bark3.ogg licensed under CC0 1.0 taken from Geoff-Bremner-Audio at https://freesound.org/people/Geoff-Bremner-Audio/sounds/688201/ +dog_growl1.ogg licensed under CC0 1.0 taken from GlitchedTones at https://freesound.org/people/Glitchedtones/sounds/372533/ +dog_growl2.ogg licensed under CC0 1.0 taken from GlitchedTones at https://freesound.org/people/Glitchedtones/sounds/372533/ +dog_growl3.ogg licensed under CC0 1.0 taken from GlitchedTones at https://freesound.org/people/Glitchedtones/sounds/372533/ +dog_growl4.ogg licensed under CC-BY-NC-SA 3.0 taken from Paradise Station at https://github.com/ParadiseSS13/Paradise/blob/master/sound/goonstation/voice/growl1.ogg +dog_growl5.ogg licensed under CC-BY-NC-SA 3.0 taken from Paradise Station at https://github.com/ParadiseSS13/Paradise/blob/master/sound/goonstation/voice/growl2.ogg +dog_growl6.ogg licensed under CC-BY-NC-SA 3.0 taken from Paradise Station at https://github.com/ParadiseSS13/Paradise/blob/master/sound/goonstation/voice/growl3.ogg +dog_snarl1.ogg licensed under CC0 1.0 taken from strongbot at https://freesound.org/people/strongbot/sounds/341090/ +dog_snarl2.ogg licensed under CC0 1.0 taken from strongbot at https://freesound.org/people/strongbot/sounds/341090/ +dog_snarl3.ogg licensed under CC0 1.0 taken from strongbot at https://freesound.org/people/strongbot/sounds/341090/ +dog_whine.ogg licensed under CC SAMPLING+ 1.0 DEED taken from Sruddil at https://freesound.org/people/Sruddi1/sounds/34878/ +howl.ogg taken from goonstation at https://github.com/goonstation/goonstation/blob/master/sound/voice/animal/werewolf_howl.ogg which is licensed under the CC BY-NC-SA 3.0. \ No newline at end of file diff --git a/Resources/Audio/_NF/Effects/bloodcult/attributions.yml b/Resources/Audio/_NF/Effects/bloodcult/attributions.yml new file mode 100644 index 00000000000..fb84f07db3e --- /dev/null +++ b/Resources/Audio/_NF/Effects/bloodcult/attributions.yml @@ -0,0 +1,8 @@ +- files: ["whispers.ogg"] + license: "CC0-1.0" + copyright: "Original file made by dimbark1 (https://freesound.org/people/dimbark1/), converted to ogg by erhardsteinhauer (discord/github)" + source: "https://freesound.org/people/dimbark1/sounds/316797/" +- files: ["ghost-scream.ogg"] + license: "CC0-1.0" + copyright: "Original file made by NachtmahrTV (https://freesound.org/people/NachtmahrTV/), converted to mono and cut, exported as ogg by erhardsteinhauer (discord/github)" + source: "https://freesound.org/people/NachtmahrTV/sounds/556701/" \ No newline at end of file diff --git a/Resources/Audio/_NF/Effects/bloodcult/ghost-scream.ogg b/Resources/Audio/_NF/Effects/bloodcult/ghost-scream.ogg new file mode 100644 index 00000000000..3ce69432b5e Binary files /dev/null and b/Resources/Audio/_NF/Effects/bloodcult/ghost-scream.ogg differ diff --git a/Resources/Audio/_NF/Effects/bloodcult/licence.txt b/Resources/Audio/_NF/Effects/bloodcult/licence.txt new file mode 100644 index 00000000000..fb84f07db3e --- /dev/null +++ b/Resources/Audio/_NF/Effects/bloodcult/licence.txt @@ -0,0 +1,8 @@ +- files: ["whispers.ogg"] + license: "CC0-1.0" + copyright: "Original file made by dimbark1 (https://freesound.org/people/dimbark1/), converted to ogg by erhardsteinhauer (discord/github)" + source: "https://freesound.org/people/dimbark1/sounds/316797/" +- files: ["ghost-scream.ogg"] + license: "CC0-1.0" + copyright: "Original file made by NachtmahrTV (https://freesound.org/people/NachtmahrTV/), converted to mono and cut, exported as ogg by erhardsteinhauer (discord/github)" + source: "https://freesound.org/people/NachtmahrTV/sounds/556701/" \ No newline at end of file diff --git a/Resources/Audio/_NF/Effects/bloodcult/whispers.ogg b/Resources/Audio/_NF/Effects/bloodcult/whispers.ogg new file mode 100644 index 00000000000..593b9c09a4d Binary files /dev/null and b/Resources/Audio/_NF/Effects/bloodcult/whispers.ogg differ diff --git a/Resources/Audio/_NF/Effects/silence.ogg b/Resources/Audio/_NF/Effects/silence.ogg new file mode 100644 index 00000000000..91738108486 Binary files /dev/null and b/Resources/Audio/_NF/Effects/silence.ogg differ diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index 121ab6d20a6..ee0149fc656 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -3743,3 +3743,62 @@ Entries: message: Liberation Station now offers slug rounds. id: 4876 time: '2024-03-18T18:39:07.0000000+00:00' +- author: erhardsteinhauer + changes: + - type: Add + message: >- + New Bluespace Event. NT Naval Command disrupted the FTL-jump of + Syndicate Vessel. + - type: Add + message: >- + New Bluespace Event. NT Naval Command detected a Wizard Federation + Scouting Probe entering Frontier Sector. + - type: Add + message: >- + New Bluespace Event. NT Office of Faith and Believes issues aa + announcement about seemingly increased Blood Cult related activity in + the Frontier Sector and warns against worshiping fictional deities. + - type: Add + message: >- + New dungeon factions. Syndicate agents and Blood Cultists can now be + encountered planetside. + id: 4877 + time: '2024-03-25T20:09:10.0000000+00:00' +- author: Leander + changes: + - type: Add + message: >- + Nanotrasen just its newest radar microchip NSR-882 now available on + latest radar consoles. + - type: Tweak + message: >- + The paid trial of all mass scanners has ended and has been locked to the + demo version as by Nanotrasen terms of service. + id: 4878 + time: '2024-03-25T21:05:52.0000000+00:00' +- author: dvir01 + changes: + - type: Tweak + message: Mail room upgraded. + id: 4879 + time: '2024-03-25T21:08:21.0000000+00:00' +- author: VMSolidus + changes: + - type: Add + message: >- + Harpies have made their way from the Delta sector to Frontier, and are + now a new playable species! + id: 4880 + time: '2024-03-25T21:13:00.0000000+00:00' +- author: MoistBiscuits + changes: + - type: Tweak + message: Grifty's Gas and Grub has recieved a small expansion + id: 4881 + time: '2024-03-25T21:18:13.0000000+00:00' +- author: arimah + changes: + - type: Add + message: NC Ceres now comes with soda and booze dispensers. + id: 4882 + time: '2024-03-25T21:19:17.0000000+00:00' diff --git a/Resources/Locale/en-US/_NF/advertisements/mobchatter/bloodculthumanoidmob.ftl b/Resources/Locale/en-US/_NF/advertisements/mobchatter/bloodculthumanoidmob.ftl new file mode 100644 index 00000000000..9be975fd847 --- /dev/null +++ b/Resources/Locale/en-US/_NF/advertisements/mobchatter/bloodculthumanoidmob.ftl @@ -0,0 +1,20 @@ +advertisement-bloodcultisthumanoid-1 = Nar'Sie will rise again! +advertisement-bloodcultisthumanoid-2 = We will drain your blood! +advertisement-bloodcultisthumanoid-3 = Kill the unbeliever! +advertisement-bloodcultisthumanoid-4 = What was that? +advertisement-bloodcultisthumanoid-5 = You. Will. Suffer. +advertisement-bloodcultisthumanoid-6 = More blood for Nar'Sie! +advertisement-bloodcultisthumanoid-7 = You shouldn't have come here, Bloodbag! +advertisement-bloodcultisthumanoid-8 = I'll die, if Nar'Sie wills it! +advertisement-bloodcultisthumanoid-9 = I hear the Call of The Void. +advertisement-bloodcultisthumanoid-10 = Struggle or surrender- doesn't matter: we will claim your blood. +advertisement-bloodcultisthumanoid-11 = Blood! +advertisement-bloodcultisthumanoid-12 = Glory to The Lurking Void! +advertisement-bloodcultisthumanoid-13 = You will know the true pain! +advertisement-bloodcultisthumanoid-14 = There will be no mercy, unbeliever. +advertisement-bloodcultisthumanoid-15 = Hey, nice jacket! +advertisement-bloodcultisthumanoid-16 = Death to the followers of False Gods! +advertisement-bloodcultisthumanoid-17 = Yes-yes, blood. Need more blood. More, yes. +advertisement-bloodcultisthumanoid-18 = Void take you1 +advertisement-bloodcultisthumanoid-19 = *hums* +advertisement-bloodcultisthumanoid-20 = I will make a flute out of your collarbone! diff --git a/Resources/Locale/en-US/_NF/advertisements/mobchatter/syndicatehumanoidmob.ftl b/Resources/Locale/en-US/_NF/advertisements/mobchatter/syndicatehumanoidmob.ftl new file mode 100644 index 00000000000..d622b177479 --- /dev/null +++ b/Resources/Locale/en-US/_NF/advertisements/mobchatter/syndicatehumanoidmob.ftl @@ -0,0 +1,20 @@ +advertisement-syndicatehumanoid-1 = Man, I hate it in here! +advertisement-syndicatehumanoid-2 = Yesterday I saw an NT employee. Miserable creature. +advertisement-syndicatehumanoid-3 = Must've been the wind. +advertisement-syndicatehumanoid-4 = What was that? +advertisement-syndicatehumanoid-5 = You saw that? +advertisement-syndicatehumanoid-6 = Yo, dude, like, check this out! +advertisement-syndicatehumanoid-7 = Fuck, that blunt hits hard, I'm trippin'. +advertisement-syndicatehumanoid-8 = I'm looking foward for my hazard pay for this mission. +advertisement-syndicatehumanoid-9 = DIE, DIE, DIE! +advertisement-syndicatehumanoid-10 = Sometime I dream about cheese... +advertisement-syndicatehumanoid-11 = Stop! +advertisement-syndicatehumanoid-12 = Glory to The Syndicate! +advertisement-syndicatehumanoid-13 = Stop resisting! +advertisement-syndicatehumanoid-14 = Drop your weapons! +advertisement-syndicatehumanoid-15 = Argh! +advertisement-syndicatehumanoid-16 = Huh, that's funny. +advertisement-syndicatehumanoid-17 = This day is turning out alright afterall! +advertisement-syndicatehumanoid-18 = Hah! Take that! +advertisement-syndicatehumanoid-19 = *whistles* +advertisement-syndicatehumanoid-20 = Dibs on on that! diff --git a/Resources/Locale/en-US/_NF/advertisements/mobchatter/wizardhumanoidmob.ftl b/Resources/Locale/en-US/_NF/advertisements/mobchatter/wizardhumanoidmob.ftl new file mode 100644 index 00000000000..2901134948e --- /dev/null +++ b/Resources/Locale/en-US/_NF/advertisements/mobchatter/wizardhumanoidmob.ftl @@ -0,0 +1,20 @@ +advertisement-wizardhumanoid-1 = Ţ̴̜͠ú̷̞̬͐t̷̲̺̀̿e̸̠͛ą̸̻͓͗r̴͎͂̀ù̴͎̗͈̓̒m̴̼̽̋ ̴̧͑Ý̴̧͋e̵̒͘ͅv̵̜͂͂a̵͙̽ŗ̵̛̘r̵̯͚̈̍̑à̶̧̺̄̕n̴͓͐̾̇!̷̤̠́ +advertisement-wizardhumanoid-2 = M̵̭̼̣̆̒͋ộ̸̞ŕ̷̹̰̥ą̴̰̅̃̇ŗ̶̱̘͂́͂i̸̞̱̹͋͑s̵̗͌̓ ̸̳̅A̴͖̦͗͑͘n̷͚̣̠̉̊t̸̠̪̀́i̶̯͖͚͘ò̷̜͖̇a̴̹̳̘̐̃̊a̴̛̘̥͍i̸̡͔̪͋ẗ̷͎͚́͐̅ư̵̤̤̦̓ȑ̴͈ȋ̷̱̑́͜!̶͍͈̦͠ +advertisement-wizardhumanoid-3 = Y̸̕ͅa̵͈̒́a̶̢̹̺̾̈́v̶̤̈a̴͖̯̎r̴͓̲̻͒̃͝u̸̠̒͠ȗ̶̮̺̰k̸̖͍̾!̵̼̹̈́̈́ +advertisement-wizardhumanoid-4 = A̵͇͉̐̀n̷̮̈́͘g̴̯̞͛u̵͎̐͛͝l̴̢̙͘e̷̩̭͛ͅ ̵̳̮͍̓͝R̸͇̎͛͝a̵̢͓̼̒ṽ̴̼́ā̸̛͈̙̊t̴̫͒̈͝e̶͉̝̿!̷͉͖͔̈́ +advertisement-wizardhumanoid-5 = K̴̙͑̾̃ạ̴̢̒͗͋l̶̫͓̈́̍̒i̵̧̊͑̃i̸̛̗͚i̶̹͎͋͗ǘ̴̠̂a̷̦̐̈́c̵̦̠̜͆ ̷͓̺̓I̷̺͠ṋ̸̋̌q̸̡͉̓ṳ̶̿e̴̟̯͊͂ ̷̧͇̤̀R̷̮͖͝ė̴̢̡͘v̶͍̙̞̆͊̒u̴̠̿ḻ̴̠̳͘!̷̨̰̽̈́̃ +advertisement-wizardhumanoid-6 = Z̸̘̽̑e̸̳͂o̷̙̗̘͊u̷̪̍͠á̵͓î̵̭̟͎̄c̸̪̠̑͑̊ ̷͎̫̕K̴̠͍͖͊ă̷̹̗͉̿̐l̴̻̏̚i̴͚̅a̵̲͆́͠t̷̡̹̐i̷̞͙͆ŏ̸̫͖̋͌ ̸̛̻̤̄̔I̶̖̫̻̿̃n̶̮̪̂́a̷̛̩͂̇t̷͈̗̱̚͝ȩ̶̳̹̾͆!̸̠̺̀̆͌ +advertisement-wizardhumanoid-7 = Klaatu, Baratu, Nhh... Niktie? Nickle? Fuck.. +advertisement-wizardhumanoid-8 = L̷̰̅͗͠i̴͇͑͛̋b̸̡͇̈̾a̸͖͆͘a̶͈̓y̵͒̃͜o̷̧͍̿p̶͚͑͂͜ū̷̼͈͎s̷̯͕̠͂̾͝ ̴̛̣͎̤͑́Ž̵̳̫̈͂ů̶̪͊͘l̶̲̒̿̊ȃ̸̧̻e̸̖̎̋̍y̷̱͐c̵̎ͅì̵̟͍͚̒ȏ̷͈ ̶̻̰̌̕̚Ỉ̸̘̱͕n̷̞̫̣͘f̵̤̊ā̷͔̝̫̏̎i̴̤̋̅̇u̶̝͉̒ͅe̷̗͗̔͑s̷͓͗̑̀t̸̘̳̐̿a̴͇̲̬̔ ̷̯͔̤͠O̷̺̙̣͘c̵̺͖̚c̸͚̯͚̋o̶̖͆i̸̟̔͝ă̶̹̋ͅl̶̢̩̇̋͐ +advertisement-wizardhumanoid-9 = NOW YOU DIE! +advertisement-wizardhumanoid-10 = Ş̶̙͋ͅo̵̪̙̍̒m̶̱̏é̸̟̱͑͊t̸͙͑̀̎ì̵̗̀m̵̨͗e̶̗̳̒ ̴̡͓̆̐͆I̵̢͂̚ ̴͍̹͂d̵͎͇̋r̵̢̻̃̀̔ė̴̯͙a̵̧̤̗͑m̷̝̮̔͛ ̶̮͛̆a̶̞̕b̷̼́ǫ̸̩̘͋̍͠u̷͓̬̯͑ṯ̸͒̍̓ ̷͕́͆̂ć̸̱̯̺́͝h̸̨̗̃͠ȅ̶̡̫̓͝e̶̹̻̋̀̑͜s̵͕͍̃e̷̙̳͆.̶͕͑̀̚.̶̘͒͆.̸̺̠̥̒͐͋ +advertisement-wizardhumanoid-11 = J̴̪̥͐̒̓a̸̟̞̘͆l̴̟̉̉͝ţ̶̧͆͜i̸͚̮͊ỏ̴̘̘̤n̶͇̰̝͂͋͐ ̶̲̼̥̈́̔̕T̴̻̀̔̓a̸̼̝̞͒͌͝o̴̞͙͝a̶̡͔̰̚ú̴̝͎l̵͖̝͊̚ ̷̼͋͜B̴̪̤͌̏͗ṟ̶̩͌o̷̼̲͔̔͑̀i̸͉̗̗͠ỏ̶̝̹u̷̮̦̕s̵̯̩̰͌ +advertisement-wizardhumanoid-12 = O̶̳͈̐͛̚c̶̦͙̈́c̶̪͍̠͐̂ã̵̮͖̠̃͠a̶̙̺̒̒t̵͚̣͎́͘͝ŕ̴͍̋͘ͅͅḁ̶̠̓̕ ̸̝̄X̷̩̰̻̆͗̽á̵͖v̸͔̱̏͑͗ḏ̸̉̉̑i̵̪̣̯͒ù̷̘͙͈̀ŝ̶̲̗̗́͌ +advertisement-wizardhumanoid-13 = Surrender, worm, and your life will be spared! +advertisement-wizardhumanoid-14 = F̴̘̜̺̿o̶̼̲̽̓̽r̵͇̽y̷̗̺̼͑͗͠ę̷̛̹̰̇̕a̷̙͓̽ͅl̵̛̗̫͒g̴̯̞̻͘͝í̵̖̜̼̌̒ȃ̶̹̬̱ ̵͇͕̽Å̵͈̗̜̎t̸̡͍̄t̵͓̮̦͌̅̆ö̶̭́̍y̸̞̘͉̋u̸̻̞̎ţ̴̠̱͗̿̂u̶̻͚̽r̴̹̮͆̍̌i̶̘͍̾͆̈́ +advertisement-wizardhumanoid-15 = A̵̭̿͛ř̶̳͈̓g̸̘̯͛h̷̘̎͘!̶̡̳̃̾̕ +advertisement-wizardhumanoid-16 = A̴̘͎̿n̵̗̠͝t̶̤͚͌͛i̸̹͉̾̆̑ó̵͙t̷̢̓i̵̢̜̓̾o̸̮̣̻̎̊͘ ̶͚̓̐S̸̻̻͇̾͠͝ù̵͉͈̃̓l̶̫͔̭̋b̴̲͙̏͘a̶̠͂̓ ̶̼̗̹̀̃̃Q̷̠͘u̵͓̚͝ȧ̵̭̫̒̂͜ą̸̡͂͗i̴̺͘ĉ̶̫̳̿̾ī̶ͅŏ̷͇͍̊̓ +advertisement-wizardhumanoid-17 = V̵̳͇̻̏̆i̶͙̞͖̽͊͠n̶̦̦͍̉͝d̵̙͎̲̈́͑͌i̷̫͕̲̊̒̚ư̷̡̯͈͗̌s̶̠̙̿̽ ̶͈̬͐̈́R̶̟͙̉̀̏è̷̡͒͛v̵͕͖̚i̷̩͠ặ̴̾͋ͅq̵͎̝͚͝ū̵̙͉̔́é̷͙̗ ̵͉̑̃̐C̷̱͙͎͝i̷̢̘͗̽s̴̞̦̘͛̊ě̵̙͖͑͜y̵̖̻̭͂͑̾ḭ̴̅ẗ̷̙͉̙́ư̸̺͝r̴̻̺̍̀i̶̖̓͐ +advertisement-wizardhumanoid-18 = V̴͙̟̳̈į̴̪͈̒͗̈á̸͈ớ̴̠͑é̸͎̺̻g̷͉̓ȕ̶̡͓̻̇̚í̸͍͋̕n̷̰͗̋̈́ ̸͚͒́Z̸̛̟̉͘ő̴̘͝a̸̳͎͍̓͆͠y̶̖̋̚͘u̶̗̿͊͂b̶̡͓͓͗̈́a̷̺̱͌͠ ̷̢͈̺̿̿V̴̞͖̈͛̕è̸̞͎̏ṇ̴́͑͒t̴̛̼̐e̷̻͛̈ḯ̶̲̻̪͗a̵̻͙̋͛l̸̺̞̦͌͋͛k̶̺͔̉͒ů̵̙̰̾͐š̶̠͔̗ +advertisement-wizardhumanoid-19 = *giggles* +advertisement-wizardhumanoid-20 = *cackles* diff --git a/Resources/Locale/en-US/_NF/bluespace-events/events.ftl b/Resources/Locale/en-US/_NF/bluespace-events/events.ftl index b9879c9b243..50d771864c0 100644 --- a/Resources/Locale/en-US/_NF/bluespace-events/events.ftl +++ b/Resources/Locale/en-US/_NF/bluespace-events/events.ftl @@ -9,3 +9,12 @@ station-event-bluespace-asteroid-end-announcement = In compliance with NanoTrase station-event-bluespace-ship-start-announcement = We have detected an unusual FTL signature - long range scans indicate an unknown ship. NanoTrasen cannot confirm safety for prospectors within its vicinity, be advised. station-event-bluespace-ship-end-announcement = In compliance with NanoTrasen FTL traffic patterns, the unknown ship has been dissipated to ensure non-collision. + +station-event-bluespace-syndicate-ftl-interception-start-announcement = Attention all available NanoTrasen personnel! NanoTrasen Naval Command disrupted the FTL-jump of Syndicate Vessel, according to our deepspace scanners the vessel either already entered the real space in your sector or is about to enter. Code: Intercept, Expunge, Exterminate, Cauterise. Expect armed opposition, use of lethal force against enemy agents is authorized. Do note: any loss of NT affiliated personnel lifes will not be compensated. +station-event-bluespace-syndicate-ftl-interception-end-announcement = In compliance with NanoTrasen FTL traffic patterns, the Syndicate Vessel has been dissipated to ensure non-collision. + +station-event-bluespace-wizardfederation-scout-start-announcement = Attention all available NanoTrasen personnel! NanoTrasen Naval Command detected a Bluespace Anomaly in your sector with the signature indicative of the imminent arrival of a Wizard Federation micro vessel. Code: Intercept, Detain, Incarcerate. Arrest the intruders and prepare them to be handed over to the NanoTrasen Special Forces Unit for enhanced interrogation. +station-event-bluespace-wizardfederation-scout-end-announcement = In compliance with NanoTrasen FTL traffic patterns, the Wizard Federation Vessel has been dissipated to ensure non-collision. + +station-event-bluespace-bloodmoon-start-announcement = A̴̗̕ť̸͓t̸͍̂ë̶͈́̇n̵̠̑t̸̗̅i̸̜̓ő̷͉̭̀n̸̠̿̉ ̷̘̿ȃ̵̲͍͑l̴̲̽͒l̵͔̺̔̉ ̶̩̥͋̋S̵̟̼̐ē̷͓c̶̯̏̒u̸̱̿͊r̶̡͉̈́i̶̙̲͒t̷̢̻͌y̷͇̾̐ ̶͗͜p̵̲͂͆͜e̶̥̣̅ṟ̴͆s̶̹̋o̶̩͓̔͗n̸̝̄̔ṋ̵̓͌͜e̷̮͓̊l̴̩̞̕!̶̬͚̋̚ ̶̻̌̐N̶̖͇͗T̴͎̝̓̋ ̸̛̯N̸͙̓á̵̩̀v̷̬̫́a̸̰̒ļ̸̱͠ ̸͔̕ͅC̶̡͊ò̷̺͊m̶̫̐̽m̶͉̉a̷͖̾n̵̨̞̍̅d̶͓̥̀ ̶̨͖̀͝d̷͎̤̆͑e̶͚͎͗t̷̹̤̉̽e̷͙̽c̴̱͗t̴͖͈̅̽e̶͓̓d̵̼̱̈́ ̵̞̀͆b̸͍̼̋̂l̵͎͆u̵̻̐̚é̵̢̲s̴̢͇̒ṗ̴͉à̶̩̥ć̴͉ê̷͎͠ ̵̧̃͛a̸͙͙̾n̵͚͋o̸̤͑m̸͉̼̆̈́å̴̫l̷̜͂y̷͎̋͛ ̵̨͋ỉ̵̬ͅn̴̨͔͂͗ ̸̙̈̑y̴͉̮̾ȍ̴̠ų̶͝r̵͔̦̍͌ ̴̬̗͑s̷̻̆̒ě̴̗̲c̸̠̦̚t̸̬̅ỏ̵̝͂r̸̮̦̆ ̵͈͝w̴͍͊ỉ̴̯̙̕t̷͖̗̍̍h̷̳̭́ ̴̮̦̃̑t̷̩̓̌ḩ̷͇͝e̵͐́͜ ̸̳̈́͠s̶̖͌į̵̙̚̕g̵̰̓ñ̸̝̽a̷͖͊t̶̲̑u̸̬̾̑r̴̲͚̊̐ē̴̮ ̸̪͛i̴̝͆n̵͈̎̄d̶̥̍̄ȉ̶̜͕̇c̵̳̻͛ǎ̶̱̠̈t̴̢̘̉̔i̵͍͂̔v̸̢̛ͅe̷̛̬͘ ̸̠̱̅͠ŏ̵̹̲f̸͖̱̃̒ ̶͎̽i̵͙̱̊͘m̴̙̞̚m̷͖͉͋ǐ̴̠̊n̸̗̗̂̿è̶͇͖n̷̺̖̚t̵͎͉̽ ̴̝̑͗a̸̖̓̆ȑ̷̢̹̾r̷̬̓͜i̸̞̅v̷̗̒̍͜a̸̱̬̋̓ḽ̵̓ ̷̻̬̃ó̷̧̋f̷̨̈̈́͜ ̷̣͛a̸̞͛ ̴̼̮̈́̀B̵̖͊l̵̻̈́ͅo̴̧̺͗ő̸̳d̶̦̲̈͊ ̷͚̪̇C̶̨̽u̵̥̇l̴̥̣̋̆ṭ̵̞͒̔i̵̐͜s̵̰̏t̴̺̍̽'̴̢͘s̸̬̗̋ ̸͓̌v̷̼̆͛é̶̲͓s̴͙̯̄s̷̯̐̀ẻ̴̮̔l̶̢̀̈́.̷̳͠ ̵͓̜̓S̶̬̫͌e̵̱̣͐͘c̵̖̘̾u̷͎͜͠r̷͚̖̀̀i̵̪͖͗t̸͉͇̎̐y̵̺̼̽͗ ̷̖̋͝C̴̹͝ò̶̤ḓ̴̮̽̈e̴̦̕:̴͕̀̚ ̸̗̂͋Ì̴̪͗n̴̛͎ẗ̵̠̺̅e̷͔̍ͅr̴̖̯̋c̸̨͆e̴̻̖̓͠p̴̤̉t̴̰̆,̴̱̿̄ ̶̫̄Ȅ̵̝̤x̴̥̂͊p̸͕̟̽̕ú̸͙̖̈́n̶͙͗̈́g̶̟̯͑e̸̲̤͂͑,̶͉̤̃ ̷̰͐̆E̶̺͝x̵̛̭̔t̷͔̅e̸̜̩̓͝r̸̻͔̿͋m̵̢̆̄i̴̧͚͌n̷̜̼͊a̴̭̭̓t̸̘̘͝e̶̙̎͐,̶̱͚̽͐ ̷̖̥̔C̸̮̽ầ̸̞u̴̮̿͑t̶͉̕e̶̥͝r̸͔̘͛̏i̵̡̝͆s̵͚͇̃e̷̯͔͊͐.̸̮͊̆ ̶̧̰͒Ȅ̴̻̭̊x̵̞̋̍p̵̱͗̕e̶̛̦ĉ̴̣̅t̶̡̞̃͠ ̴̪̙͆a̴͉̪͋͑ř̷̛͕m̸̙͂͛ḙ̴͎̈́̑d̴̠̒ ̴̢̅o̷̟̪͐͊p̷̤̄p̷̲̠̑̓o̴͔͐͠ś̸̗i̸̩̓͌t̵̜̎i̷̱̅͠o̵̻̅͆ņ̶̱̇,̴̗̊̃ ̸̥̆u̵̪͂s̸̖͊̾e̷̫̭̒̇ ̷̫̲̓̊o̵̠͂f̵̺̿ ̸̦̞̅̔ļ̷̯̄̃ē̸͕t̸͖͗h̸̨͕̆̑à̷͓̫́ḽ̸̛͚̃ ̷̼̟͘f̵̻̱̈́̌ȏ̵̦r̸̭͘ͅć̸̼̂e̴͔̠̊̚ ̶̻̍ä̷̰̩g̷̠͒ą̸̩̈͌i̶̘̘̒͊n̵͖̏s̸̩̏͜t̶͇̳̍ ̵̪̲̋̓ȩ̸̙̏n̷͖̽͑ë̴̞͚́m̴̺͑̈y̵̤̅͂ ̵̥̼͛ạ̵̩̇g̸̣̪͊͂e̷͎̔͂n̸̳̎t̵̥̀s̵̛͚̗̀ ̷̡̝́́ī̶̹͇s̷͓̠̆ ̶̤̤̔͝a̷͇̝͌̇ũ̵͎̤͊t̵̡͖̽ḧ̸̝̥́o̵͙͑ȑ̵̟̮i̷̺͗ż̵͇̍é̸̙̏͜d̷̼̊.̴̮̗̑̿ ̵̰̇P̵͎̟͛ȓ̸͚é̶̤͍̈́v̵͔͑͂e̴͍͉̿͘ṇ̷̝͛t̶̗͚̕ ̶̫͇̉͋N̵̯͛T̸͔̂̚-̷̣̋̕á̷̬͉͘f̵̳̖̀͘f̸͎̟̄i̷̖̺͊́l̶̗͆̄i̷̧͙͑́a̶͂̑͜t̸̘̿̚e̸̺̓d̵̡̪̈́͋ ̷̞͐c̴̺̻͊a̶̮̱̍͠p̶̭̹̌t̴̳̱̒̀a̴̪͉̐i̸̖̎̏n̷͎̫̾s̶̫̖̒̚ ̵̣̒w̴̨̗̒i̸̬̚t̴̝͆h̴̪̮̑̃o̶̥̲̔͘u̷̲̣̐̏t̸̩͌͝ ̵̧̧͛́s̸̬͑̾e̵̯̜̐̈́č̷̮̰u̴̗̜̕r̷͇͇̽̀i̷̛̫̿t̸̞̓͝y̷̨̔ ̶̪̒̈́a̴̻͇̅c̷͙̯̀c̸̩̃̃e̸͇͙̓s̷̭̣͊s̷͇̭̉ ̶̠͂͠f̵͙̣̉͌r̵̲̐͗ǫ̶̬͑͝m̸̖̓ ̷͖̹̌̌ĝ̸̹̍ą̴̂͘i̸͈̺͆̇n̶̜̋ḯ̵̼̮n̵̺̉͊g̸̗̱͘ ̴̪̞̃a̶̩̯͐͂c̶͕̯̓c̷̮̟̿̒ë̷͙́̀s̶̨̳̋s̸̜̆̑ ̵̯̆̎t̷̞͕͆o̶̡̞͐ ̴̱̈́͝t̶͇̋̃h̵̟̼̀e̴̦̼͐̚ ̷̟̗̓͂e̵͙̓̂n̴̻͂̃ȩ̸̻͑m̴̢͋͊ý̷̬́ ̵͔͛v̵͔̓̂͜e̸̖̋ṡ̴̹͑s̴̬̈͋ė̵̖̈l̴̗͆̓ͅ ̷̛̱̀a̷̡̫̿n̸̜̟̓̕d̷͙̜͌̅ ̴̗́͑i̵̫͌ṯ̴̢͝s̵̫̼͂ ̷̱̥͗̓c̴͖͐̚o̶͕͍͒ń̷̞ṱ̸͖̒͛e̷͋ͅn̵̖̠̉͒t̴̲̋̚ș̸͍̈́.̸͖̅̓ ̸̧͛̄A̷͖̞͒͘n̷̮̥̿ḑ̷͊͠ ̵̬͚͂̊ȑ̷̰e̶̬͗ṃ̶̓ͅê̴̬ṁ̴̖͝b̶̨͘e̷̼̫̍r̷͔̦̓̓:̷̜͠ ̸̤̎N̵̢̖͐a̶͘ͅr̶̳̚'̸͈̝̽̕S̶͔̳̎̅i̷̠̝̓è̴͙͛ ̶͖͚͆͂i̸͓͠͝s̸͎͐̀ ̸̻̀̑n̸̮͆ö̶͙̮̇t̵̛̟͝ ̴͎̐͜r̴̘̹͑͛e̴̙̱͂a̵̖͑̆l̵͓̝͑ ̸̝̀á̵͙͎n̶̞̊̉d̶̥͙́̄ ̴̥̫̽c̴̨͉̐̀a̷̲͋̕n̸̦̽ ̷̖̾̕n̸̤̥͑͑ó̵̳t̸̡͆̅ ̸͈͚̒͆h̴͉͔̕u̴̠̩͌̑r̷̡̟̄̋t̵̗̰̃ ̵̛̭y̸͖̯͐ò̸͔̜̈ū̸ͅ.̸̨̜̕ +station-event-bluespace-bloodmoon-end-announcement = I̶̼͈͊̽n̶͉͉̈ ̶̭̝̈c̷̯͔̀o̸̙̊m̸̥̕͜͝p̸͋͜l̵͖͆i̴̛̗̟̓a̴͚̼͗n̸͔͙̓c̶̹̠͌ė̶͙̮ ̸̟́w̶͓̫̎ḯ̷͕t̶͚̩̍h̵̰͘ ̷̫͕̂̊Ň̸̥̞͂a̷̻̐n̴̖̺̒̄o̸̺͚͊́T̵̨̔̃ͅr̷̢͈̾á̸͉͛s̵̞̒ę̴͠n̵̩̈́ ̴̫̐̅F̸̹̤͗̈́T̸̹̅͜L̷̙̱͠ ̷̛͍͒t̴̘̣̔͝r̵̥̈́à̴̮͝f̴͉͇͆̎f̴͙̗̿̈́ȋ̸͍c̶̯͜͠ ̴̨̧̐͒p̷̬̻͐̊a̵͚̓̏t̴͇̺͌̕t̷͈͂̾ḙ̴͎͘ṛ̶̂n̷͔̈́͌s̴̡̤̊̆,̵͍̭͑̔ ̷͎̾t̵̜̪͆ḩ̸͗ę̶͉̏̽ ̶̠̎̑W̶̙̍̚i̴̢̜͘z̵̈́͂͜a̸͓̥̿͑r̵̭͆́ͅd̷̘͉͝ ̴̧̉ͅF̴͇̌͘ë̸͍͎́̀d̶̨̲́͠e̶̪̽͜͠ȑ̶̩͘à̸̺t̴̨̻̀͝ì̷͕̣̄o̶̢͑͠n̴̟̈́ ̸̹̈ͅV̸̜͑ė̵̥̩́s̵̖̓ṡ̵̲̮ȩ̷̈́l̷̰͠ ̸̥̇̆h̵̯͂a̷̜̗͝s̷̻̯̈́̍ ̸͈͂b̸̪̓̇e̸͍̰͋͗e̶͚̜̅̽n̷̡̯̓̋ ̴̤͎̃d̸͇̽i̸͚̍͠s̴̨̍͝ṡ̸͚̩͠ǐ̴̜͘p̵̣͂͂a̸͓̔́t̷̟̱̋̌e̷͕̒͂d̶̦͂͝ ̷̳̈́ṫ̵͈̀ò̵̡̟ ̶͔͂ḙ̸͍́͆n̶̩̐ṣ̸́ǔ̸̠͖ř̸̘̱͑ē̴̜͈ ̵̻͋͌n̴̪̩̊o̶̭̙̅n̶͇̑͒-̸̘̚̚c̸͖̩͌͘ö̴̡͌ͅl̵̳̗̓l̵͖̓̆i̷͖͝ͅs̵̘̝͝i̷̧̜͑̔o̷̼̲͐́ṋ̴̘͠.̶̡͎̌ diff --git a/Resources/Locale/en-US/_NF/ghost/roles/ghost-role-component.ftl b/Resources/Locale/en-US/_NF/ghost/roles/ghost-role-component.ftl index 95bce7cb013..dab6b50e3a1 100644 --- a/Resources/Locale/en-US/_NF/ghost/roles/ghost-role-component.ftl +++ b/Resources/Locale/en-US/_NF/ghost/roles/ghost-role-component.ftl @@ -14,5 +14,8 @@ ghost-role-information-crispy-description = Mistakes were made. ghost-role-information-mistake-name = ????? ghost-role-information-mistake-description = Ymg' ph'nglui ah li. +ghost-role-information-ert-mailcarrier-name = ERT Mail Carrier +ghost-role-information-ert-mailcarrier-description = Assist with paperworks efforts to resolve the stations issues. + ghost-role-information-jerma-name = Jerma -ghost-role-information-jerma-description = Pog moment \ No newline at end of file +ghost-role-information-jerma-description = Pog moment diff --git a/Resources/Locale/en-US/_NF/job/job-description.ftl b/Resources/Locale/en-US/_NF/job/job-description.ftl index 1d9a6c2bf8d..a8cc0c07f37 100644 --- a/Resources/Locale/en-US/_NF/job/job-description.ftl +++ b/Resources/Locale/en-US/_NF/job/job-description.ftl @@ -1,3 +1,4 @@ +job-description-ertmailcarrier = Nothing stops the mail. job-description-mercenary = Execute the bidding of anyone- for the right price. Enjoy being unbound from the confines of the law. job-description-pilot = Pilot spaceships from point A to B, outmaneuver pirates and dodge asteroids. You are a leaf on the solar wind, let others marvel at how you soar. job-description-security-guard = Patrol the empty halls, whistle simple tunes you heard on radio, jingle your keychain and scurry away at the sight of danger. diff --git a/Resources/Locale/en-US/_NF/job/job-names.ftl b/Resources/Locale/en-US/_NF/job/job-names.ftl index 7c34eb3e226..8be5e8a7de5 100644 --- a/Resources/Locale/en-US/_NF/job/job-names.ftl +++ b/Resources/Locale/en-US/_NF/job/job-names.ftl @@ -1,10 +1,12 @@ +job-name-ertmailcarrier = ERT Mail Carrier job-name-mercenary = Mercenary job-name-pilot = Pilot job-name-security-guard = Security Guard job-name-stc = Station Traffic Controller # Role timers - Make these alphabetical or I cut you +JobERTMailCarrier = ERT Mail Carrier JobMercenary = Mercenary JobPilot = Pilot JobSecurityGuard = Security Guard -JobSTC = Station Traffic Controller +JobSTC = Station Traffic Controller \ No newline at end of file diff --git a/Resources/Locale/en-US/_NF/prototypes/access/accesses.ftl b/Resources/Locale/en-US/_NF/prototypes/access/accesses.ftl index cf0684630b5..561c4c7ce13 100644 --- a/Resources/Locale/en-US/_NF/prototypes/access/accesses.ftl +++ b/Resources/Locale/en-US/_NF/prototypes/access/accesses.ftl @@ -1,3 +1,4 @@ id-card-access-level-frontier = Frontier id-card-access-level-pilot = Pilot +id-card-access-level-mail = Mail id-card-access-level-mercenary = Mercenary diff --git a/Resources/Locale/en-US/_NF/research/technologies.ftl b/Resources/Locale/en-US/_NF/research/technologies.ftl index b706785d5fe..450e9a9d736 100644 --- a/Resources/Locale/en-US/_NF/research/technologies.ftl +++ b/Resources/Locale/en-US/_NF/research/technologies.ftl @@ -1,4 +1,5 @@ research-techology-advanced-personal-propulsion = Advanced Personal Propulsion +research-technology-rapid-construction = Rapid Construction research-technology-hardsuits-basic = Basic Hardsuits research-technology-hardsuits-specialized = Specialized Hardsuits research-technology-hardsuits-advanced = Advanced Hardsuits diff --git a/Resources/Locale/en-US/_NF/shipyard/shipyard-rcd-component.ftl b/Resources/Locale/en-US/_NF/shipyard/shipyard-rcd-component.ftl new file mode 100644 index 00000000000..ee6dac465c4 --- /dev/null +++ b/Resources/Locale/en-US/_NF/shipyard/shipyard-rcd-component.ftl @@ -0,0 +1,8 @@ +## UI +rcd-component-missing-id-deed = No ship registered to this ID +rcd-component-can-only-build-authorized-ship = Can only build on authorized ships! +rcd-component-no-id-swiped = Swipe id card on RCD to authorize. +rcd-component-use-blocked = The RCD whirrs, but nothing happens. +rcd-component-id-card-accepted = You swipe the id card and the RCD makes a accepting noise. +rcd-component-id-card-removed = The RCD powers down, unauthorizing it. +rcd-component-wrong-ammo-type = Wrong type of RCD ammo. diff --git a/Resources/Locale/en-US/deltav/harpy/singer_system.ftl b/Resources/Locale/en-US/deltav/harpy/singer_system.ftl new file mode 100644 index 00000000000..8c21fc4c02a --- /dev/null +++ b/Resources/Locale/en-US/deltav/harpy/singer_system.ftl @@ -0,0 +1 @@ +no-sing-while-no-speak = You can't sing right now. diff --git a/Resources/Locale/en-US/deltav/markings/harpy.ftl b/Resources/Locale/en-US/deltav/markings/harpy.ftl new file mode 100644 index 00000000000..3c1a2e3b9b2 --- /dev/null +++ b/Resources/Locale/en-US/deltav/markings/harpy.ftl @@ -0,0 +1,52 @@ +marking-HarpyWingDefault = Basic Wings +marking-HarpyWingDefault-harpy = Wings + +marking-HarpyWingFolded = Folded Wings +marking-HarpyWingFolded-harpyfolded = Wings + +marking-HarpyWingClassic = Classic Wings +marking-HarpyWingClassic-classicharpy = Wings + +marking-HarpyWing2ToneClassic = Classic Two Tone Wings +marking-HarpyWing2ToneClassic-harpy2tone1 = Top Half +marking-HarpyWing2ToneClassic-harpy2tone2 = Bottom Half + +marking-HarpyWing3ToneClassic = Classic Three Tone Wings +marking-HarpyWing3ToneClassic-harpy3tone1 = Top Third +marking-HarpyWing3ToneClassic-harpy3tone2 = Middle Third +marking-HarpyWing3ToneClassic-harpy3tone3 = Bottom Third + +marking-HarpyWingSpeckledClassic = Speckled Classic Wings +marking-HarpyWingSpeckledClassic-harpyspeckled1 = Main +marking-HarpyWingSpeckledClassic-harpyspeckled2 = Speckles + +marking-HarpyWingUndertoneClassic = Classic Wings with Undertone +marking-HarpyWingUndertoneClassic-harpyundertone1 = Front +marking-HarpyWingUndertoneClassic-harpyundertone2 = Back + +marking-HarpyWingTipsClassic = Classic Wings with Feather Tips +marking-HarpyWingTipsClassic-harpywingtip1 = Main +marking-HarpyWingTipsClassic-harpywingtip2 = Feathertips + +marking-HarpyEarsDefault = Feather Tufts +marking-HarpyEarsDefault-harpy_ears_default = Tufts + +marking-HarpyTailPhoenix = Basic Tail +marking-HarpyTailPhoenix-phoenix_tail = Tail + +marking-HarpyTailRooster = Rooster Tail +marking-HarpyTailRooster-rooster_tail = Tail + +marking-HarpyTailFinch = Finch Tail +marking-HarpyTailFinch-finch_tail = Tail + +marking-HarpyChestDefault = Wing & Groin Under-Clothes +marking-HarpyChestDefault-upper = Wing Under-Clothes +marking-HarpyChestDefault-lower = Groin Under-Clothes + +marking-HarpyLegsDefault = Avian Legs +marking-HarpyLegsDefault-thighs = Thighs + +marking-HarpyFeetDefault = Avian Feet +marking-HarpyFeetDefault-feet = Feet +marking-HarpyFeetDefault-talons = Talons diff --git a/Resources/Locale/en-US/deltav/species/species.ftl b/Resources/Locale/en-US/deltav/species/species.ftl new file mode 100644 index 00000000000..83437bd651f --- /dev/null +++ b/Resources/Locale/en-US/deltav/species/species.ftl @@ -0,0 +1,4 @@ +## Species Names + +species-name-vulpkanin = Vulpkanin +species-name-harpy = Harpy diff --git a/Resources/Locale/en-US/deltav/store/uplink-catalog.ftl b/Resources/Locale/en-US/deltav/store/uplink-catalog.ftl new file mode 100644 index 00000000000..f5990c369d7 --- /dev/null +++ b/Resources/Locale/en-US/deltav/store/uplink-catalog.ftl @@ -0,0 +1,3 @@ +# Implants +uplink-bionic-syrinx-implanter-name = Bionic Syrinx Implanter +uplink-bionic-syrinx-implanter-desc = An implant that enhances a harpy's natural talent for mimicry to let you adjust your voice to whoever you can think of. diff --git a/Resources/Locale/en-US/deltav/traits/traits.ftl b/Resources/Locale/en-US/deltav/traits/traits.ftl index 4bcbbc21bdf..d10746274a9 100644 --- a/Resources/Locale/en-US/deltav/traits/traits.ftl +++ b/Resources/Locale/en-US/deltav/traits/traits.ftl @@ -1,2 +1,6 @@ trait-scottish-accent-name = Scottish Accent -trait-scottish-accent-desc = Fer tha folk who come frae Hielan clan. \ No newline at end of file +trait-scottish-accent-desc = Fer tha folk who come frae Hielan clan. + +trait-ultravision-name = Ultraviolet Vision +trait-ultravision-desc = Whether through custom bionic eyes, random mutation, + or being a Harpy, you perceive the world with ultraviolet light. diff --git a/Resources/Maps/_NF/Bluespace/bloodmoon.yml b/Resources/Maps/_NF/Bluespace/bloodmoon.yml new file mode 100644 index 00000000000..e82dd172540 --- /dev/null +++ b/Resources/Maps/_NF/Bluespace/bloodmoon.yml @@ -0,0 +1,8855 @@ +meta: + format: 6 + postmapinit: false +tilemap: + 0: Space + 30: FloorDark + 33: FloorDarkHerringbone + 34: FloorDarkMini + 35: FloorDarkMono + 39: FloorDarkPlastic + 45: FloorFreezer + 46: FloorGlass + 63: FloorLino + 68: FloorMiningDark + 120: FloorWoodTile + 122: Plating + 125: PlatingDamaged +entities: +- proto: "" + entities: + - uid: 1 + components: + - type: MetaData + name: Blood Moon + - type: Transform + pos: -0.5156249,-0.5312496 + parent: invalid + - type: MapGrid + chunks: + 0,0: + ind: 0,0 + tiles: LQAAAAAALQAAAAAALQAAAAAALQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAALQAAAAAALQAAAAAALQAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAeAAAAAAAeAAAAAAAeAAAAAAALQAAAAAALQAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAARAAAAAAARAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAALgAAAAACLgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAIwAAAAAAIwAAAAAAIwAAAAAALgAAAAABLgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAALgAAAAAALgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAeAAAAAAAeAAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAALgAAAAADLgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAeAAAAAAAeAAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAALgAAAAADLgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAeAAAAAAAeAAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAARAAAAAAARAAAAAAAegAAAAAAAAAAAAAALgAAAAACAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeAAAAAAAeAAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIgAAAAAAIgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAIQAAAAAAIQAAAAAARAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIgAAAAAAIgAAAAAARAAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAARAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAIgAAAAAAIgAAAAAARAAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAegAAAAAAegAAAAAAegAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAA + version: 6 + 0,-1: + ind: 0,-1 + tiles: RAAAAAAARAAAAAAAegAAAAAAAAAAAAAALgAAAAACAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAegAAAAAALgAAAAADLgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAALgAAAAAALgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAIQAAAAAAIQAAAAAAIQAAAAAALgAAAAACLgAAAAABLgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAIQAAAAAAIQAAAAAALgAAAAAALgAAAAADLgAAAAADLgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAIQAAAAAAAAAAAAAALgAAAAACLgAAAAAALgAAAAADLgAAAAACLgAAAAADLgAAAAADRAAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAIQAAAAAAAAAAAAAAAAAAAAAALgAAAAABLgAAAAABLgAAAAADLgAAAAACLgAAAAABRAAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAALgAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAfQAAAAAAfQAAAAAAegAAAAAAAAAAAAAAAAAAAAAALQAAAAAALQAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAegAAAAAAAAAAAAAAAAAAAAAALQAAAAAALQAAAAAALQAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAfQAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,0: + ind: -1,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAIgAAAAAAIgAAAAAAIgAAAAAARAAAAAAALgAAAAADLgAAAAAALgAAAAADLgAAAAADRAAAAAAALQAAAAAALQAAAAAALQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAIgAAAAAAIgAAAAAAIgAAAAAARAAAAAAALgAAAAAALgAAAAAALgAAAAABLgAAAAAARAAAAAAALQAAAAAALQAAAAAALQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAARAAAAAAARAAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAALQAAAAAALQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAALQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAARAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAJwAAAAAAJwAAAAAARAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,-1: + ind: -1,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAARAAAAAAARAAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAIQAAAAAAIQAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAIQAAAAAAIQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAALgAAAAAAegAAAAAAIQAAAAAAIQAAAAAAegAAAAAALgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAALQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAIQAAAAAAIQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAALQAAAAAALQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAARAAAAAAARAAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAALQAAAAAALQAAAAAALQAAAAAA + version: 6 + 1,0: + ind: 1,0 + tiles: AAAAAAAAegAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAegAAAAAARAAAAAAARAAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIwAAAAAAIwAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAeAAAAAAAeAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAeAAAAAAAeAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAeAAAAAAAeAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIwAAAAAAIwAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAHgAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 1,-1: + ind: 1,-1 + tiles: egAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIQAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIQAAAAAAIQAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAARAAAAAAARAAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAIQAAAAAAIQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAIQAAAAAAIQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALgAAAAAAegAAAAAAIQAAAAAAIQAAAAAAegAAAAAALgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAIQAAAAAAIQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAIQAAAAAAIQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 0,-2: + ind: 0,-2 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALgAAAAAALgAAAAADLgAAAAABLgAAAAADLgAAAAABLgAAAAADLgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALgAAAAAALgAAAAADLgAAAAABLgAAAAABLgAAAAABLgAAAAABLgAAAAAALgAAAAACLgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALgAAAAADLgAAAAAALgAAAAAALgAAAAABLgAAAAABLgAAAAAALgAAAAAALgAAAAACLgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAARAAAAAAARAAAAAAARAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAARAAAAAAAIwAAAAAAIwAAAAAAIwAAAAAARAAAAAAAIQAAAAAAIQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAARAAAAAAAIgAAAAAAIgAAAAAAIgAAAAAARAAAAAAAIQAAAAAAIQAAAAAAIwAAAAAAIQAAAAAAIQAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAIQAAAAAAIQAAAAAAIwAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAegAAAAAAegAAAAAA + version: 6 + -1,-2: + ind: -1,-2 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAA + version: 6 + - type: Broadphase + - type: Physics + bodyStatus: InAir + angularDamping: 999999 + linearDamping: 999999 + fixedRotation: False + bodyType: Dynamic + - type: Fixtures + fixtures: {} + - type: OccluderTree + - type: SpreaderGrid + - type: Shuttle + angularDamping: 999999 + linearDamping: 999999 + - type: GridPathfinding + - type: Gravity + gravityShakeSound: !type:SoundPathSpecifier + path: /Audio/Effects/alert.ogg + - type: DecalGrid + chunkCollection: + version: 2 + nodes: + - node: + color: '#DE3A3AFF' + id: ArrowsGreyscale + decals: + 69: 3,-19 + 70: 4,-19 + 71: 5,-19 + - node: + color: '#DE3A3AFF' + id: BotRightGreyscale + decals: + 72: 3,-19 + 73: 4,-19 + 74: 5,-19 + - node: + color: '#DE3A3AFF' + id: BrickTileDarkBox + decals: + 63: 15,8 + - node: + color: '#DE3A3AFF' + id: BrickTileDarkCornerNe + decals: + 14: 14,-10 + 15: 13,-9 + 16: 12,-8 + 27: 12,5 + 28: 11,6 + - node: + color: '#DE3A3AFF' + id: BrickTileDarkCornerNw + decals: + 4: 13,-14 + 5: 14,-13 + 10: 8,-10 + 17: 9,-9 + 18: 10,-8 + 29: 18,5 + 30: 19,6 + - node: + color: '#DE3A3AFF' + id: BrickTileDarkCornerSe + decals: + 31: 11,10 + 32: 12,11 + - node: + color: '#DE3A3AFF' + id: BrickTileDarkCornerSw + decals: + 11: 8,-12 + 12: 9,-13 + 13: 10,-14 + 33: 18,11 + 34: 19,10 + - node: + color: '#DE3A3AFF' + id: BrickTileDarkInnerNe + decals: + 23: 13,-10 + 24: 14,-11 + 25: 12,-9 + 52: 12,4 + 53: 11,5 + 54: 10,6 + - node: + color: '#DE3A3AFF' + id: BrickTileDarkInnerNw + decals: + 6: 15,-13 + 7: 14,-14 + 8: 13,-15 + 19: 9,-10 + 26: 10,-9 + 49: 20,6 + 50: 19,5 + 51: 18,4 + - node: + color: '#DE3A3AFF' + id: BrickTileDarkInnerSe + decals: + 60: 10,10 + 61: 11,11 + 62: 12,12 + - node: + color: '#DE3A3AFF' + id: BrickTileDarkInnerSw + decals: + 20: 9,-12 + 21: 10,-13 + 22: 11,-14 + 46: 18,12 + 47: 19,11 + 48: 20,10 + - node: + color: '#DE3A3AFF' + id: BrickTileDarkLineE + decals: + 38: 10,9 + 39: 10,8 + 40: 10,7 + - node: + color: '#DE3A3AFF' + id: BrickTileDarkLineN + decals: + 2: 11,-15 + 3: 12,-15 + 55: 13,4 + 56: 14,4 + 57: 15,4 + 58: 16,4 + 59: 17,4 + - node: + color: '#DE3A3AFF' + id: BrickTileDarkLineS + decals: + 41: 13,12 + 42: 14,12 + 43: 15,12 + 44: 16,12 + 45: 17,12 + 64: 13,14 + 65: 14,14 + 66: 15,14 + 67: 16,14 + 68: 17,14 + - node: + color: '#DE3A3AFF' + id: BrickTileDarkLineW + decals: + 0: 15,-11 + 1: 15,-12 + 9: 8,-11 + 35: 20,9 + 36: 20,8 + 37: 20,7 + - type: GridAtmosphere + version: 2 + data: + tiles: + 0,0: + 0: 14335 + 1: 51200 + 0,-1: + 1: 2247 + 0: 63280 + 0,1: + 1: 7 + 2: 13104 + 0,2: + 2: 51 + 1: 63232 + 0,3: + 1: 4095 + 1,0: + 1: 273 + 1,2: + 2: 256 + 1: 64512 + 1,3: + 1: 4095 + 2: 4096 + 2,1: + 1: 65534 + 2,2: + 1: 65535 + 2,3: + 1: 3071 + 2,0: + 1: 60416 + 3,0: + 1: 65520 + 3,1: + 1: 65535 + 3,2: + 1: 65535 + 3,3: + 1: 65535 + 0,-4: + 1: 7 + 2: 29488 + 0,-3: + 2: 3311 + 1,-4: + 2: 1 + 1: 32780 + 1,-3: + 2: 1904 + 1: 34952 + 1,-1: + 1: 4352 + 2,-4: + 1: 65519 + 2,-3: + 1: 65535 + 2,-2: + 1: 49391 + 2: 2048 + 3,-4: + 1: 65535 + 3,-3: + 1: 65535 + 3,-2: + 1: 12343 + -4,0: + 1: 2184 + -3,0: + 1: 65535 + -3,1: + 1: 61183 + -3,2: + 1: 140 + -2,0: + 2: 255 + 1: 4352 + -2,1: + 1: 65395 + -2,2: + 1: 61439 + -2,3: + 1: 12 + -1,0: + 1: 25361 + 0: 36078 + -1,1: + 1: 4108 + -1,2: + 1: 65523 + -1,3: + 1: 2303 + -4,-1: + 2: 64 + 1: 34952 + -4,-2: + 1: 34952 + -3,-3: + 1: 65534 + -3,-2: + 1: 65535 + -3,-1: + 1: 63351 + 2: 128 + -3,-4: + 1: 60544 + -2,-4: + 1: 65535 + -2,-3: + 1: 4991 + -2,-2: + 1: 1 + -1,-4: + 1: 5119 + -1,-1: + 1: 4972 + 0: 60544 + 4,0: + 1: 65534 + 4,1: + 1: 65535 + 4,2: + 1: 65535 + 4,3: + 1: 32767 + 5,0: + 1: 4915 + 5,1: + 1: 30579 + 5,2: + 1: 30583 + 5,3: + 1: 307 + 4,-4: + 1: 63281 + 4,-3: + 1: 65535 + 4,-2: + 1: 61167 + 4,-1: + 2: 32 + 1: 60620 + 5,-3: + 1: 4368 + 5,-2: + 1: 13107 + 5,-1: + 1: 13107 + 2: 64 + 0,-6: + 2: 65504 + 0,-5: + 1: 65535 + 1,-6: + 2: 65520 + 1,-5: + 1: 65535 + 2,-6: + 2: 4352 + 2,-5: + 1: 65523 + 3,-5: + 1: 63248 + -2,-5: + 1: 60416 + -1,-5: + 1: 65528 + 2,-1: + 1: 52974 + 3,-1: + 1: 4915 + uniqueMixes: + - volume: 2500 + temperature: 235 + moles: + - 21.824879 + - 82.10312 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + temperature: 293.15 + moles: + - 21.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: 919 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,-3.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 +- proto: AirCanister + entities: + - uid: 581 + components: + - type: Transform + anchored: True + pos: 12.5,-2.5 + parent: 1 + - type: Physics + bodyType: Static + - type: AtmosDevice + joinedGrid: 1 + - uid: 582 + components: + - type: Transform + anchored: True + pos: 12.5,-3.5 + parent: 1 + - type: Physics + bodyType: Static + - type: AtmosDevice + joinedGrid: 1 +- proto: AirlockBloodCult + entities: + - uid: 2 + components: + - type: Transform + pos: 6.5,-18.5 + parent: 1 + - uid: 187 + components: + - type: Transform + pos: 5.5,-19.5 + parent: 1 + - uid: 188 + components: + - type: Transform + pos: -3.5,1.5 + parent: 1 + - uid: 289 + components: + - type: Transform + pos: 1.5,-15.5 + parent: 1 + - uid: 290 + components: + - type: Transform + pos: 6.5,-17.5 + parent: 1 + - uid: 292 + components: + - type: Transform + pos: 0.5,-15.5 + parent: 1 + - uid: 293 + components: + - type: Transform + pos: 3.5,-19.5 + parent: 1 + - uid: 294 + components: + - type: Transform + pos: 4.5,-19.5 + parent: 1 + - uid: 295 + components: + - type: Transform + pos: 2.5,-18.5 + parent: 1 + - uid: 296 + components: + - type: Transform + pos: 2.5,-17.5 + parent: 1 + - uid: 297 + components: + - type: Transform + pos: 19.5,-7.5 + parent: 1 + - uid: 298 + components: + - type: Transform + pos: 18.5,-7.5 + parent: 1 + - uid: 299 + components: + - type: Transform + pos: 2.5,12.5 + parent: 1 + - uid: 300 + components: + - type: Transform + pos: 2.5,13.5 + parent: 1 + - uid: 301 + components: + - type: Transform + pos: -10.5,-0.5 + parent: 1 + - uid: 302 + components: + - type: Transform + pos: -11.5,-0.5 + parent: 1 + - uid: 303 + components: + - type: Transform + pos: -0.5,12.5 + parent: 1 + - uid: 304 + components: + - type: Transform + pos: -0.5,11.5 + parent: 1 + - uid: 305 + components: + - type: Transform + pos: -8.5,1.5 + parent: 1 + - uid: 307 + components: + - type: Transform + pos: -3.5,0.5 + parent: 1 + - uid: 308 + components: + - type: Transform + pos: 7.5,-10.5 + parent: 1 + - uid: 309 + components: + - type: Transform + pos: 0.5,4.5 + parent: 1 + - uid: 310 + components: + - type: Transform + pos: 1.5,4.5 + parent: 1 + - uid: 311 + components: + - type: Transform + pos: -10.5,2.5 + parent: 1 + - uid: 312 + components: + - type: Transform + pos: -9.5,2.5 + parent: 1 + - uid: 313 + components: + - type: Transform + pos: -10.5,-7.5 + parent: 1 + - uid: 314 + components: + - type: Transform + pos: -8.5,0.5 + parent: 1 + - uid: 315 + components: + - type: Transform + pos: 7.5,-9.5 + parent: 1 + - uid: 316 + components: + - type: Transform + pos: 19.5,2.5 + parent: 1 + - uid: 317 + components: + - type: Transform + pos: 18.5,2.5 + parent: 1 + - uid: 318 + components: + - type: Transform + pos: 9.5,11.5 + parent: 1 + - uid: 319 + components: + - type: Transform + pos: 9.5,12.5 + parent: 1 + - uid: 320 + components: + - type: Transform + pos: 1.5,10.5 + parent: 1 + - uid: 321 + components: + - type: Transform + pos: 0.5,10.5 + parent: 1 + - uid: 322 + components: + - type: Transform + pos: -9.5,-7.5 + parent: 1 + - uid: 1256 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-16.5 + parent: 1 + - uid: 1257 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-17.5 + parent: 1 +- proto: APCBasic + entities: + - uid: 576 + components: + - type: Transform + pos: 12.5,-1.5 + parent: 1 +- proto: AtmosDeviceFanTiny + entities: + - uid: 306 + components: + - type: Transform + pos: 0.5,-15.5 + parent: 1 + - uid: 395 + components: + - type: Transform + pos: -8.5,1.5 + parent: 1 + - uid: 396 + components: + - type: Transform + pos: -8.5,0.5 + parent: 1 + - uid: 397 + components: + - type: Transform + pos: 7.5,-9.5 + parent: 1 + - uid: 398 + components: + - type: Transform + pos: 7.5,-10.5 + parent: 1 + - uid: 399 + components: + - type: Transform + pos: 0.5,4.5 + parent: 1 + - uid: 400 + components: + - type: Transform + pos: -3.5,0.5 + parent: 1 + - uid: 401 + components: + - type: Transform + pos: 3.5,-19.5 + parent: 1 + - uid: 402 + components: + - type: Transform + pos: 4.5,-19.5 + parent: 1 + - uid: 403 + components: + - type: Transform + pos: 5.5,-19.5 + parent: 1 + - uid: 404 + components: + - type: Transform + pos: 1.5,-15.5 + parent: 1 + - uid: 405 + components: + - type: Transform + pos: -3.5,1.5 + parent: 1 + - uid: 406 + components: + - type: Transform + pos: 1.5,4.5 + parent: 1 + - uid: 408 + components: + - type: Transform + pos: 0.5,10.5 + parent: 1 + - uid: 409 + components: + - type: Transform + pos: 1.5,10.5 + parent: 1 +- proto: AtmosFixBlockerMarker + entities: + - uid: 323 + components: + - type: Transform + pos: 8.5,-20.5 + parent: 1 + - uid: 324 + components: + - type: Transform + pos: 8.5,-21.5 + parent: 1 + - uid: 325 + components: + - type: Transform + pos: 7.5,-20.5 + parent: 1 + - uid: 326 + components: + - type: Transform + pos: 7.5,-21.5 + parent: 1 + - uid: 327 + components: + - type: Transform + pos: 6.5,-20.5 + parent: 1 + - uid: 328 + components: + - type: Transform + pos: 6.5,-21.5 + parent: 1 + - uid: 329 + components: + - type: Transform + pos: 5.5,-20.5 + parent: 1 + - uid: 330 + components: + - type: Transform + pos: 5.5,-21.5 + parent: 1 + - uid: 331 + components: + - type: Transform + pos: 4.5,-20.5 + parent: 1 + - uid: 332 + components: + - type: Transform + pos: 4.5,-21.5 + parent: 1 + - uid: 333 + components: + - type: Transform + pos: 3.5,-20.5 + parent: 1 + - uid: 334 + components: + - type: Transform + pos: 3.5,-21.5 + parent: 1 + - uid: 335 + components: + - type: Transform + pos: 2.5,-20.5 + parent: 1 + - uid: 336 + components: + - type: Transform + pos: 2.5,-21.5 + parent: 1 + - uid: 337 + components: + - type: Transform + pos: 1.5,-20.5 + parent: 1 + - uid: 338 + components: + - type: Transform + pos: 1.5,-21.5 + parent: 1 + - uid: 339 + components: + - type: Transform + pos: 0.5,-20.5 + parent: 1 + - uid: 340 + components: + - type: Transform + pos: 0.5,-21.5 + parent: 1 + - uid: 341 + components: + - type: Transform + pos: 1.5,-22.5 + parent: 1 + - uid: 342 + components: + - type: Transform + pos: 2.5,-22.5 + parent: 1 + - uid: 343 + components: + - type: Transform + pos: 3.5,-22.5 + parent: 1 + - uid: 344 + components: + - type: Transform + pos: 4.5,-22.5 + parent: 1 + - uid: 345 + components: + - type: Transform + pos: 5.5,-22.5 + parent: 1 + - uid: 346 + components: + - type: Transform + pos: 6.5,-22.5 + parent: 1 + - uid: 347 + components: + - type: Transform + pos: 7.5,-22.5 + parent: 1 + - uid: 348 + components: + - type: Transform + pos: 4.5,-15.5 + parent: 1 + - uid: 349 + components: + - type: Transform + pos: 0.5,-14.5 + parent: 1 + - uid: 350 + components: + - type: Transform + pos: 0.5,-13.5 + parent: 1 + - uid: 351 + components: + - type: Transform + pos: 0.5,-12.5 + parent: 1 + - uid: 352 + components: + - type: Transform + pos: 0.5,-11.5 + parent: 1 + - uid: 353 + components: + - type: Transform + pos: 1.5,-14.5 + parent: 1 + - uid: 354 + components: + - type: Transform + pos: 1.5,-13.5 + parent: 1 + - uid: 355 + components: + - type: Transform + pos: 1.5,-12.5 + parent: 1 + - uid: 356 + components: + - type: Transform + pos: 1.5,-11.5 + parent: 1 + - uid: 357 + components: + - type: Transform + pos: 2.5,-12.5 + parent: 1 + - uid: 358 + components: + - type: Transform + pos: 2.5,-11.5 + parent: 1 + - uid: 359 + components: + - type: Transform + pos: 2.5,-10.5 + parent: 1 + - uid: 360 + components: + - type: Transform + pos: 1.5,-10.5 + parent: 1 + - uid: 361 + components: + - type: Transform + pos: 3.5,-11.5 + parent: 1 + - uid: 362 + components: + - type: Transform + pos: 3.5,-10.5 + parent: 1 + - uid: 363 + components: + - type: Transform + pos: 3.5,-9.5 + parent: 1 + - uid: 364 + components: + - type: Transform + pos: 2.5,-9.5 + parent: 1 + - uid: 365 + components: + - type: Transform + pos: 4.5,-9.5 + parent: 1 + - uid: 366 + components: + - type: Transform + pos: 4.5,-10.5 + parent: 1 + - uid: 367 + components: + - type: Transform + pos: 5.5,-9.5 + parent: 1 + - uid: 368 + components: + - type: Transform + pos: 5.5,-10.5 + parent: 1 + - uid: 369 + components: + - type: Transform + pos: 6.5,-9.5 + parent: 1 + - uid: 370 + components: + - type: Transform + pos: 6.5,-10.5 + parent: 1 + - uid: 371 + components: + - type: Transform + pos: -13.5,-2.5 + parent: 1 + - uid: 372 + components: + - type: Transform + pos: -8.5,-2.5 + parent: 1 + - uid: 373 + components: + - type: Transform + pos: -7.5,0.5 + parent: 1 + - uid: 374 + components: + - type: Transform + pos: -7.5,1.5 + parent: 1 + - uid: 375 + components: + - type: Transform + pos: -6.5,0.5 + parent: 1 + - uid: 376 + components: + - type: Transform + pos: -6.5,1.5 + parent: 1 + - uid: 377 + components: + - type: Transform + pos: -5.5,0.5 + parent: 1 + - uid: 378 + components: + - type: Transform + pos: -5.5,1.5 + parent: 1 + - uid: 379 + components: + - type: Transform + pos: -4.5,0.5 + parent: 1 + - uid: 380 + components: + - type: Transform + pos: -4.5,1.5 + parent: 1 + - uid: 381 + components: + - type: Transform + pos: 0.5,9.5 + parent: 1 + - uid: 382 + components: + - type: Transform + pos: 0.5,8.5 + parent: 1 + - uid: 383 + components: + - type: Transform + pos: 0.5,7.5 + parent: 1 + - uid: 384 + components: + - type: Transform + pos: 0.5,6.5 + parent: 1 + - uid: 385 + components: + - type: Transform + pos: 0.5,5.5 + parent: 1 + - uid: 386 + components: + - type: Transform + pos: 1.5,9.5 + parent: 1 + - uid: 387 + components: + - type: Transform + pos: 1.5,8.5 + parent: 1 + - uid: 388 + components: + - type: Transform + pos: 1.5,7.5 + parent: 1 + - uid: 389 + components: + - type: Transform + pos: 1.5,6.5 + parent: 1 + - uid: 390 + components: + - type: Transform + pos: 1.5,5.5 + parent: 1 + - uid: 391 + components: + - type: Transform + pos: 4.5,10.5 + parent: 1 + - uid: 392 + components: + - type: Transform + pos: 4.5,15.5 + parent: 1 + - uid: 393 + components: + - type: Transform + pos: 22.5,-2.5 + parent: 1 + - uid: 394 + components: + - type: Transform + pos: 17.5,-2.5 + parent: 1 + - uid: 797 + components: + - type: Transform + pos: 11.5,-5.5 + parent: 1 +- proto: AtmosFixFreezerMarker + entities: + - uid: 1100 + components: + - type: Transform + pos: -0.5,3.5 + parent: 1 + - uid: 1101 + components: + - type: Transform + pos: -0.5,2.5 + parent: 1 + - uid: 1102 + components: + - type: Transform + pos: -0.5,1.5 + parent: 1 + - uid: 1103 + components: + - type: Transform + pos: -0.5,0.5 + parent: 1 + - uid: 1104 + components: + - type: Transform + pos: -0.5,-0.5 + parent: 1 + - uid: 1105 + components: + - type: Transform + pos: -0.5,-1.5 + parent: 1 + - uid: 1106 + components: + - type: Transform + pos: -0.5,-2.5 + parent: 1 + - uid: 1107 + components: + - type: Transform + pos: 0.5,3.5 + parent: 1 + - uid: 1108 + components: + - type: Transform + pos: 0.5,2.5 + parent: 1 + - uid: 1109 + components: + - type: Transform + pos: 0.5,1.5 + parent: 1 + - uid: 1110 + components: + - type: Transform + pos: 0.5,0.5 + parent: 1 + - uid: 1111 + components: + - type: Transform + pos: 0.5,-0.5 + parent: 1 + - uid: 1112 + components: + - type: Transform + pos: 0.5,-1.5 + parent: 1 + - uid: 1113 + components: + - type: Transform + pos: 0.5,-2.5 + parent: 1 + - uid: 1114 + components: + - type: Transform + pos: 1.5,3.5 + parent: 1 + - uid: 1115 + components: + - type: Transform + pos: 1.5,2.5 + parent: 1 + - uid: 1116 + components: + - type: Transform + pos: 1.5,1.5 + parent: 1 + - uid: 1117 + components: + - type: Transform + pos: 1.5,0.5 + parent: 1 + - uid: 1118 + components: + - type: Transform + pos: 1.5,-0.5 + parent: 1 + - uid: 1119 + components: + - type: Transform + pos: 1.5,-1.5 + parent: 1 + - uid: 1120 + components: + - type: Transform + pos: 1.5,-2.5 + parent: 1 + - uid: 1121 + components: + - type: Transform + pos: -2.5,1.5 + parent: 1 + - uid: 1122 + components: + - type: Transform + pos: -2.5,0.5 + parent: 1 + - uid: 1123 + components: + - type: Transform + pos: -2.5,-0.5 + parent: 1 + - uid: 1124 + components: + - type: Transform + pos: -1.5,1.5 + parent: 1 + - uid: 1125 + components: + - type: Transform + pos: -1.5,0.5 + parent: 1 + - uid: 1126 + components: + - type: Transform + pos: -1.5,-0.5 + parent: 1 + - uid: 1127 + components: + - type: Transform + pos: -1.5,-1.5 + parent: 1 + - uid: 1128 + components: + - type: Transform + pos: -1.5,2.5 + parent: 1 + - uid: 1129 + components: + - type: Transform + pos: 2.5,1.5 + parent: 1 + - uid: 1130 + components: + - type: Transform + pos: 2.5,0.5 + parent: 1 + - uid: 1131 + components: + - type: Transform + pos: 2.5,-0.5 + parent: 1 + - uid: 1132 + components: + - type: Transform + pos: 3.5,1.5 + parent: 1 + - uid: 1133 + components: + - type: Transform + pos: 3.5,0.5 + parent: 1 + - uid: 1134 + components: + - type: Transform + pos: 3.5,-0.5 + parent: 1 + - uid: 1135 + components: + - type: Transform + pos: 2.5,-1.5 + parent: 1 + - uid: 1136 + components: + - type: Transform + pos: 2.5,2.5 + parent: 1 +- proto: BeachBall + entities: + - uid: 1270 + components: + - type: Transform + pos: 18.490425,10.588631 + parent: 1 +- proto: Bed + entities: + - uid: 1216 + components: + - type: Transform + pos: 18.5,-11.5 + parent: 1 + - uid: 1218 + components: + - type: Transform + pos: 16.5,-13.5 + parent: 1 + - uid: 1220 + components: + - type: Transform + pos: 17.5,-12.5 + parent: 1 + - uid: 1221 + components: + - type: Transform + pos: 14.5,-15.5 + parent: 1 + - uid: 1232 + components: + - type: Transform + pos: 15.5,-14.5 + parent: 1 + - uid: 1233 + components: + - type: Transform + pos: 13.5,-16.5 + parent: 1 + - uid: 1253 + components: + - type: Transform + pos: 12.5,-16.5 + parent: 1 +- proto: BedsheetCult + entities: + - uid: 1234 + components: + - type: Transform + pos: 13.5,-16.5 + parent: 1 + - uid: 1235 + components: + - type: Transform + pos: 14.5,-15.5 + parent: 1 + - uid: 1236 + components: + - type: Transform + pos: 15.5,-14.5 + parent: 1 + - uid: 1237 + components: + - type: Transform + pos: 16.5,-13.5 + parent: 1 + - uid: 1238 + components: + - type: Transform + pos: 17.5,-12.5 + parent: 1 + - uid: 1239 + components: + - type: Transform + pos: 18.5,-11.5 + parent: 1 + - uid: 1255 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,-16.5 + parent: 1 +- proto: BenchSofaLeft + entities: + - uid: 1078 + components: + - type: Transform + pos: 11.5,-7.5 + parent: 1 + - type: Physics + bodyType: Static +- proto: BenchSofaRight + entities: + - uid: 1079 + components: + - type: Transform + pos: 10.5,-7.5 + parent: 1 + - type: Physics + bodyType: Static +- proto: BloodCollector + entities: + - uid: 1137 + components: + - type: Transform + pos: -2.5,-0.5 + parent: 1 + - uid: 1138 + components: + - type: Transform + pos: -0.5,-2.5 + parent: 1 + - uid: 1139 + components: + - type: Transform + pos: -0.5,-1.5 + parent: 1 + - uid: 1140 + components: + - type: Transform + pos: -0.5,-0.5 + parent: 1 + - uid: 1141 + components: + - type: Transform + pos: 1.5,-2.5 + parent: 1 + - uid: 1142 + components: + - type: Transform + pos: 1.5,-1.5 + parent: 1 + - uid: 1143 + components: + - type: Transform + pos: 1.5,-0.5 + parent: 1 + - uid: 1147 + components: + - type: Transform + pos: -1.5,2.5 + parent: 1 + - uid: 1148 + components: + - type: Transform + pos: -0.5,3.5 + parent: 1 + - uid: 1149 + components: + - type: Transform + pos: -0.5,2.5 + parent: 1 + - uid: 1150 + components: + - type: Transform + pos: 2.5,2.5 + parent: 1 + - uid: 1162 + components: + - type: Transform + pos: -6.5,9.5 + parent: 1 + - uid: 1163 + components: + - type: Transform + pos: 11.5,3.5 + parent: 1 + - uid: 1164 + components: + - type: Transform + pos: 10.5,4.5 + parent: 1 + - uid: 1165 + components: + - type: Transform + pos: 20.5,12.5 + parent: 1 + - uid: 1166 + components: + - type: Transform + pos: 13.5,2.5 + parent: 1 + - uid: 1167 + components: + - type: Transform + pos: 8.5,-11.5 + parent: 1 +- proto: BloodCultAlwaysPoweredLight + entities: + - uid: 505 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-17.5 + parent: 1 + - uid: 506 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -0.5,3.5 + parent: 1 + - uid: 507 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-2.5 + parent: 1 + - uid: 508 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 4.5,-17.5 + parent: 1 + - uid: 510 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,-14.5 + parent: 1 + - uid: 511 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,-17.5 + parent: 1 + - uid: 512 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,-3.5 + parent: 1 + - uid: 513 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 18.5,-5.5 + parent: 1 + - uid: 514 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -5.5,-12.5 + parent: 1 + - uid: 515 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,-8.5 + parent: 1 + - uid: 516 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -8.5,7.5 + parent: 1 + - uid: 518 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,11.5 + parent: 1 + - uid: 519 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 1.5,13.5 + parent: 1 + - uid: 520 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 7.5,-20.5 + parent: 1 + - uid: 521 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 1.5,-20.5 + parent: 1 + - uid: 522 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,1.5 + parent: 1 + - uid: 523 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,-2.5 + parent: 1 + - uid: 524 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,3.5 + parent: 1 + - uid: 526 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,10.5 + parent: 1 + - uid: 527 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 18.5,13.5 + parent: 1 + - uid: 528 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,8.5 + parent: 1 + - uid: 1083 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 11.5,-7.5 + parent: 1 +- proto: BloodCultGlowingFloor + entities: + - uid: 517 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,8.5 + parent: 1 + - uid: 525 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-14.5 + parent: 1 + - uid: 529 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-13.5 + parent: 1 + - uid: 530 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-12.5 + parent: 1 + - uid: 531 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-11.5 + parent: 1 + - uid: 532 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-11.5 + parent: 1 + - uid: 533 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-10.5 + parent: 1 + - uid: 534 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-10.5 + parent: 1 + - uid: 535 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-9.5 + parent: 1 + - uid: 536 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-9.5 + parent: 1 + - uid: 537 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-10.5 + parent: 1 + - uid: 538 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,9.5 + parent: 1 + - uid: 539 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,8.5 + parent: 1 + - uid: 540 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,7.5 + parent: 1 + - uid: 541 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,6.5 + parent: 1 + - uid: 542 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,5.5 + parent: 1 + - uid: 543 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,1.5 + parent: 1 + - uid: 544 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,0.5 + parent: 1 + - uid: 545 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,0.5 + parent: 1 + - uid: 546 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,1.5 + parent: 1 + - uid: 547 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,1.5 + parent: 1 + - uid: 548 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,0.5 + parent: 1 + - uid: 549 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,5.5 + parent: 1 + - uid: 550 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-15.5 + parent: 1 + - uid: 551 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-21.5 + parent: 1 + - uid: 552 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-21.5 + parent: 1 + - uid: 553 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-20.5 + parent: 1 + - uid: 554 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-21.5 + parent: 1 + - uid: 555 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-21.5 + parent: 1 + - uid: 556 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,-2.5 + parent: 1 + - uid: 557 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-2.5 + parent: 1 + - uid: 558 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,10.5 + parent: 1 + - uid: 559 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,15.5 + parent: 1 + - uid: 560 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,-2.5 + parent: 1 + - uid: 561 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,-2.5 + parent: 1 + - uid: 562 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-20.5 + parent: 1 + - uid: 563 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-21.5 + parent: 1 + - uid: 564 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-22.5 + parent: 1 + - uid: 565 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-22.5 + parent: 1 + - uid: 566 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-21.5 + parent: 1 + - uid: 567 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-20.5 + parent: 1 +- proto: BloodCultGravityGeneratorMini + entities: + - uid: 410 + components: + - type: Transform + pos: 15.5,8.5 + parent: 1 + - type: PointLight + radius: 2.5 +- proto: BloodCultHoleFloor + entities: + - uid: 1178 + components: + - type: Transform + pos: 21.5,6.5 + parent: 1 + - uid: 1222 + components: + - type: Transform + pos: -7.5,-13.5 + parent: 1 + - uid: 1271 + components: + - type: Transform + pos: 18.5,-5.5 + parent: 1 + - uid: 1272 + components: + - type: Transform + pos: 20.5,-2.5 + parent: 1 + - uid: 1273 + components: + - type: Transform + pos: 19.5,0.5 + parent: 1 + - uid: 1274 + components: + - type: Transform + pos: 13.5,-12.5 + parent: 1 + - uid: 1275 + components: + - type: Transform + pos: 5.5,-17.5 + parent: 1 + - uid: 1276 + components: + - type: Transform + pos: -8.5,3.5 + parent: 1 + - uid: 1277 + components: + - type: Transform + pos: -4.5,10.5 + parent: 1 + - uid: 1278 + components: + - type: Transform + pos: 6.5,12.5 + parent: 1 + - uid: 1279 + components: + - type: Transform + pos: 15.5,13.5 + parent: 1 +- proto: BloodCultProp01 + entities: + - uid: 1168 + components: + - type: Transform + pos: 13.5,8.5 + parent: 1 + - uid: 1169 + components: + - type: Transform + pos: 17.5,8.5 + parent: 1 + - uid: 1219 + components: + - type: Transform + pos: -11.5,1.5 + parent: 1 +- proto: BloodCultProp02 + entities: + - uid: 1179 + components: + - type: Transform + pos: -4.5,11.5 + parent: 1 + - uid: 1180 + components: + - type: Transform + pos: -9.5,6.5 + parent: 1 +- proto: BloodCultProp03 + entities: + - uid: 476 + components: + - type: Transform + pos: 10.5,-15.5 + parent: 1 + - uid: 1170 + components: + - type: Transform + pos: 9.5,9.5 + parent: 1 + - uid: 1172 + components: + - type: Transform + pos: 9.5,7.5 + parent: 1 + - uid: 1173 + components: + - type: Transform + pos: 21.5,10.5 + parent: 1 + - uid: 1174 + components: + - type: Transform + pos: 21.5,8.5 + parent: 1 + - uid: 1194 + components: + - type: Transform + pos: -9.5,-11.5 + parent: 1 + - uid: 1201 + components: + - type: Transform + pos: -9.5,-5.5 + parent: 1 + - uid: 1202 + components: + - type: Transform + pos: -6.5,-14.5 + parent: 1 + - uid: 1203 + components: + - type: Transform + pos: -4.5,-16.5 + parent: 1 +- proto: BloodCultProp04 + entities: + - uid: 1159 + components: + - type: Transform + pos: 16.5,-9.5 + parent: 1 + - uid: 1209 + components: + - type: Transform + pos: -5.5,-12.5 + parent: 1 + - uid: 1226 + components: + - type: Transform + pos: 16.5,2.5 + parent: 1 +- proto: BloodCultProp05 + entities: + - uid: 1200 + components: + - type: Transform + pos: 10.5,-12.5 + parent: 1 +- proto: BloodCultProp07 + entities: + - uid: 1193 + components: + - type: Transform + pos: 2.5,1.5 + parent: 1 + - uid: 1214 + components: + - type: Transform + pos: 11.5,-10.5 + parent: 1 +- proto: BloodCultTurret + entities: + - uid: 470 + components: + - type: Transform + pos: 8.5,13.5 + parent: 1 + - uid: 472 + components: + - type: Transform + pos: 20.5,1.5 + parent: 1 + - uid: 1044 + components: + - type: Transform + pos: 12.5,-7.5 + parent: 1 +- proto: BookNames + entities: + - uid: 1268 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.506048,10.494881 + parent: 1 +- proto: BookRandom + entities: + - uid: 1261 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.46716,-9.395261 + parent: 1 + - uid: 1267 + components: + - type: Transform + pos: 17.521675,6.607325 + parent: 1 +- proto: Bookshelf + entities: + - uid: 1081 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 13.5,-8.5 + parent: 1 + - uid: 1206 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -1.5,-15.5 + parent: 1 + - uid: 1207 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -7.5,-10.5 + parent: 1 + - uid: 1208 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -6.5,-11.5 + parent: 1 + - uid: 1223 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 19.5,13.5 + parent: 1 + - uid: 1225 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 12.5,13.5 + parent: 1 +- proto: BoxCardboard + entities: + - uid: 494 + components: + - type: MetaData + flags: InContainer + name: cardboard box (Steve's) + - type: Transform + parent: 492 + - type: Storage + storedItems: + 495: + position: 0,0 + _rotation: South + 496: + position: 1,0 + _rotation: South + 497: + position: 2,0 + _rotation: South + 498: + position: 0,1 + _rotation: South + 499: + position: 1,1 + _rotation: South + 500: + position: 2,1 + _rotation: South + 501: + position: 0,2 + _rotation: South + 502: + position: 2,2 + _rotation: South + - type: ContainerContainer + containers: + storagebase: !type:Container + showEnts: False + occludes: True + ents: + - 495 + - 496 + - 497 + - 498 + - 499 + - 500 + - 501 + - 502 + - type: Physics + canCollide: False + - type: Label + originalName: cardboard box + currentLabel: Steve's + - type: InsideEntityStorage +- proto: CableApcExtension + entities: + - uid: 461 + components: + - type: Transform + pos: 11.5,-16.5 + parent: 1 + - uid: 592 + components: + - type: Transform + pos: 12.5,-1.5 + parent: 1 + - uid: 593 + components: + - type: Transform + pos: 11.5,-1.5 + parent: 1 + - uid: 594 + components: + - type: Transform + pos: 11.5,-17.5 + parent: 1 + - uid: 595 + components: + - type: Transform + pos: 10.5,-17.5 + parent: 1 + - uid: 596 + components: + - type: Transform + pos: 9.5,-17.5 + parent: 1 + - uid: 597 + components: + - type: Transform + pos: 8.5,-17.5 + parent: 1 + - uid: 598 + components: + - type: Transform + pos: 7.5,-17.5 + parent: 1 + - uid: 599 + components: + - type: Transform + pos: 6.5,-17.5 + parent: 1 + - uid: 600 + components: + - type: Transform + pos: 5.5,-17.5 + parent: 1 + - uid: 601 + components: + - type: Transform + pos: 4.5,-17.5 + parent: 1 + - uid: 602 + components: + - type: Transform + pos: 3.5,-17.5 + parent: 1 + - uid: 603 + components: + - type: Transform + pos: 2.5,-17.5 + parent: 1 + - uid: 604 + components: + - type: Transform + pos: 1.5,-17.5 + parent: 1 + - uid: 605 + components: + - type: Transform + pos: 0.5,-17.5 + parent: 1 + - uid: 606 + components: + - type: Transform + pos: -0.5,-17.5 + parent: 1 + - uid: 607 + components: + - type: Transform + pos: -1.5,-17.5 + parent: 1 + - uid: 608 + components: + - type: Transform + pos: -2.5,-17.5 + parent: 1 + - uid: 609 + components: + - type: Transform + pos: 11.5,-15.5 + parent: 1 + - uid: 610 + components: + - type: Transform + pos: 11.5,-14.5 + parent: 1 + - uid: 611 + components: + - type: Transform + pos: 11.5,-13.5 + parent: 1 + - uid: 612 + components: + - type: Transform + pos: 11.5,-12.5 + parent: 1 + - uid: 613 + components: + - type: Transform + pos: 11.5,-11.5 + parent: 1 + - uid: 614 + components: + - type: Transform + pos: 11.5,-10.5 + parent: 1 + - uid: 615 + components: + - type: Transform + pos: 11.5,-9.5 + parent: 1 + - uid: 616 + components: + - type: Transform + pos: 11.5,-8.5 + parent: 1 + - uid: 617 + components: + - type: Transform + pos: 11.5,-7.5 + parent: 1 + - uid: 618 + components: + - type: Transform + pos: 11.5,-6.5 + parent: 1 + - uid: 619 + components: + - type: Transform + pos: 11.5,-5.5 + parent: 1 + - uid: 620 + components: + - type: Transform + pos: 11.5,-4.5 + parent: 1 + - uid: 621 + components: + - type: Transform + pos: 11.5,-3.5 + parent: 1 + - uid: 622 + components: + - type: Transform + pos: 11.5,-2.5 + parent: 1 + - uid: 623 + components: + - type: Transform + pos: -9.5,-11.5 + parent: 1 + - uid: 624 + components: + - type: Transform + pos: 18.5,-10.5 + parent: 1 + - uid: 625 + components: + - type: Transform + pos: 17.5,-10.5 + parent: 1 + - uid: 626 + components: + - type: Transform + pos: 16.5,-10.5 + parent: 1 + - uid: 627 + components: + - type: Transform + pos: 15.5,-10.5 + parent: 1 + - uid: 628 + components: + - type: Transform + pos: 14.5,-10.5 + parent: 1 + - uid: 629 + components: + - type: Transform + pos: 13.5,-10.5 + parent: 1 + - uid: 630 + components: + - type: Transform + pos: 12.5,-10.5 + parent: 1 + - uid: 631 + components: + - type: Transform + pos: 18.5,-9.5 + parent: 1 + - uid: 632 + components: + - type: Transform + pos: 18.5,-8.5 + parent: 1 + - uid: 633 + components: + - type: Transform + pos: 18.5,-7.5 + parent: 1 + - uid: 634 + components: + - type: Transform + pos: 18.5,-6.5 + parent: 1 + - uid: 635 + components: + - type: Transform + pos: 18.5,-5.5 + parent: 1 + - uid: 636 + components: + - type: Transform + pos: 19.5,-5.5 + parent: 1 + - uid: 637 + components: + - type: Transform + pos: 19.5,-4.5 + parent: 1 + - uid: 638 + components: + - type: Transform + pos: 19.5,-3.5 + parent: 1 + - uid: 639 + components: + - type: Transform + pos: 19.5,-2.5 + parent: 1 + - uid: 640 + components: + - type: Transform + pos: 19.5,-1.5 + parent: 1 + - uid: 641 + components: + - type: Transform + pos: 19.5,-0.5 + parent: 1 + - uid: 642 + components: + - type: Transform + pos: 19.5,0.5 + parent: 1 + - uid: 643 + components: + - type: Transform + pos: 19.5,1.5 + parent: 1 + - uid: 644 + components: + - type: Transform + pos: 19.5,2.5 + parent: 1 + - uid: 645 + components: + - type: Transform + pos: 19.5,3.5 + parent: 1 + - uid: 646 + components: + - type: Transform + pos: 19.5,4.5 + parent: 1 + - uid: 647 + components: + - type: Transform + pos: 19.5,5.5 + parent: 1 + - uid: 648 + components: + - type: Transform + pos: 19.5,6.5 + parent: 1 + - uid: 649 + components: + - type: Transform + pos: 19.5,7.5 + parent: 1 + - uid: 650 + components: + - type: Transform + pos: 19.5,8.5 + parent: 1 + - uid: 651 + components: + - type: Transform + pos: 19.5,9.5 + parent: 1 + - uid: 652 + components: + - type: Transform + pos: 19.5,10.5 + parent: 1 + - uid: 653 + components: + - type: Transform + pos: 19.5,11.5 + parent: 1 + - uid: 654 + components: + - type: Transform + pos: 19.5,12.5 + parent: 1 + - uid: 655 + components: + - type: Transform + pos: 18.5,12.5 + parent: 1 + - uid: 656 + components: + - type: Transform + pos: 17.5,12.5 + parent: 1 + - uid: 657 + components: + - type: Transform + pos: 16.5,12.5 + parent: 1 + - uid: 658 + components: + - type: Transform + pos: 15.5,12.5 + parent: 1 + - uid: 659 + components: + - type: Transform + pos: 14.5,12.5 + parent: 1 + - uid: 660 + components: + - type: Transform + pos: 13.5,12.5 + parent: 1 + - uid: 661 + components: + - type: Transform + pos: 12.5,12.5 + parent: 1 + - uid: 662 + components: + - type: Transform + pos: 11.5,12.5 + parent: 1 + - uid: 663 + components: + - type: Transform + pos: 10.5,12.5 + parent: 1 + - uid: 664 + components: + - type: Transform + pos: 9.5,12.5 + parent: 1 + - uid: 665 + components: + - type: Transform + pos: 8.5,12.5 + parent: 1 + - uid: 666 + components: + - type: Transform + pos: 7.5,12.5 + parent: 1 + - uid: 667 + components: + - type: Transform + pos: 6.5,12.5 + parent: 1 + - uid: 668 + components: + - type: Transform + pos: 5.5,12.5 + parent: 1 + - uid: 669 + components: + - type: Transform + pos: 4.5,12.5 + parent: 1 + - uid: 670 + components: + - type: Transform + pos: 3.5,12.5 + parent: 1 + - uid: 671 + components: + - type: Transform + pos: 2.5,12.5 + parent: 1 + - uid: 672 + components: + - type: Transform + pos: 1.5,12.5 + parent: 1 + - uid: 673 + components: + - type: Transform + pos: 0.5,12.5 + parent: 1 + - uid: 674 + components: + - type: Transform + pos: -0.5,12.5 + parent: 1 + - uid: 675 + components: + - type: Transform + pos: -1.5,12.5 + parent: 1 + - uid: 676 + components: + - type: Transform + pos: -2.5,12.5 + parent: 1 + - uid: 677 + components: + - type: Transform + pos: 15.5,10.5 + parent: 1 + - uid: 678 + components: + - type: Transform + pos: 17.5,8.5 + parent: 1 + - uid: 679 + components: + - type: Transform + pos: 18.5,8.5 + parent: 1 + - uid: 680 + components: + - type: Transform + pos: 15.5,11.5 + parent: 1 + - uid: 681 + components: + - type: Transform + pos: 18.5,4.5 + parent: 1 + - uid: 682 + components: + - type: Transform + pos: 17.5,4.5 + parent: 1 + - uid: 683 + components: + - type: Transform + pos: 16.5,4.5 + parent: 1 + - uid: 684 + components: + - type: Transform + pos: 15.5,4.5 + parent: 1 + - uid: 685 + components: + - type: Transform + pos: 14.5,4.5 + parent: 1 + - uid: 686 + components: + - type: Transform + pos: 13.5,4.5 + parent: 1 + - uid: 687 + components: + - type: Transform + pos: 12.5,4.5 + parent: 1 + - uid: 688 + components: + - type: Transform + pos: 11.5,4.5 + parent: 1 + - uid: 689 + components: + - type: Transform + pos: 9.5,-9.5 + parent: 1 + - uid: 690 + components: + - type: Transform + pos: 10.5,-9.5 + parent: 1 + - uid: 691 + components: + - type: Transform + pos: -2.5,-16.5 + parent: 1 + - uid: 692 + components: + - type: Transform + pos: -2.5,-15.5 + parent: 1 + - uid: 693 + components: + - type: Transform + pos: -3.5,-15.5 + parent: 1 + - uid: 694 + components: + - type: Transform + pos: -4.5,-15.5 + parent: 1 + - uid: 695 + components: + - type: Transform + pos: -5.5,-15.5 + parent: 1 + - uid: 696 + components: + - type: Transform + pos: -5.5,-14.5 + parent: 1 + - uid: 697 + components: + - type: Transform + pos: -5.5,-13.5 + parent: 1 + - uid: 698 + components: + - type: Transform + pos: -5.5,-12.5 + parent: 1 + - uid: 699 + components: + - type: Transform + pos: -6.5,-12.5 + parent: 1 + - uid: 700 + components: + - type: Transform + pos: -7.5,-12.5 + parent: 1 + - uid: 701 + components: + - type: Transform + pos: -8.5,-12.5 + parent: 1 + - uid: 702 + components: + - type: Transform + pos: -8.5,-11.5 + parent: 1 + - uid: 703 + components: + - type: Transform + pos: -9.5,-10.5 + parent: 1 + - uid: 704 + components: + - type: Transform + pos: -9.5,-9.5 + parent: 1 + - uid: 705 + components: + - type: Transform + pos: -10.5,-9.5 + parent: 1 + - uid: 706 + components: + - type: Transform + pos: -10.5,-8.5 + parent: 1 + - uid: 707 + components: + - type: Transform + pos: -10.5,-7.5 + parent: 1 + - uid: 708 + components: + - type: Transform + pos: -10.5,-6.5 + parent: 1 + - uid: 709 + components: + - type: Transform + pos: -10.5,-5.5 + parent: 1 + - uid: 710 + components: + - type: Transform + pos: -10.5,-4.5 + parent: 1 + - uid: 711 + components: + - type: Transform + pos: -10.5,-3.5 + parent: 1 + - uid: 712 + components: + - type: Transform + pos: -10.5,-2.5 + parent: 1 + - uid: 713 + components: + - type: Transform + pos: -10.5,-1.5 + parent: 1 + - uid: 714 + components: + - type: Transform + pos: -10.5,-0.5 + parent: 1 + - uid: 715 + components: + - type: Transform + pos: -10.5,0.5 + parent: 1 + - uid: 716 + components: + - type: Transform + pos: -10.5,1.5 + parent: 1 + - uid: 717 + components: + - type: Transform + pos: -10.5,2.5 + parent: 1 + - uid: 718 + components: + - type: Transform + pos: -10.5,3.5 + parent: 1 + - uid: 719 + components: + - type: Transform + pos: -10.5,4.5 + parent: 1 + - uid: 721 + components: + - type: Transform + pos: -9.5,1.5 + parent: 1 + - uid: 722 + components: + - type: Transform + pos: -8.5,1.5 + parent: 1 + - uid: 723 + components: + - type: Transform + pos: -7.5,1.5 + parent: 1 + - uid: 724 + components: + - type: Transform + pos: -6.5,1.5 + parent: 1 + - uid: 725 + components: + - type: Transform + pos: -5.5,1.5 + parent: 1 + - uid: 726 + components: + - type: Transform + pos: -4.5,1.5 + parent: 1 + - uid: 727 + components: + - type: Transform + pos: -3.5,1.5 + parent: 1 + - uid: 728 + components: + - type: Transform + pos: -2.5,1.5 + parent: 1 + - uid: 729 + components: + - type: Transform + pos: -1.5,1.5 + parent: 1 + - uid: 730 + components: + - type: Transform + pos: -0.5,1.5 + parent: 1 + - uid: 731 + components: + - type: Transform + pos: -9.5,4.5 + parent: 1 + - uid: 732 + components: + - type: Transform + pos: -8.5,4.5 + parent: 1 + - uid: 733 + components: + - type: Transform + pos: -8.5,5.5 + parent: 1 + - uid: 734 + components: + - type: Transform + pos: -8.5,6.5 + parent: 1 + - uid: 735 + components: + - type: Transform + pos: -8.5,7.5 + parent: 1 + - uid: 736 + components: + - type: Transform + pos: -7.5,7.5 + parent: 1 + - uid: 737 + components: + - type: Transform + pos: -6.5,7.5 + parent: 1 + - uid: 738 + components: + - type: Transform + pos: -5.5,7.5 + parent: 1 + - uid: 740 + components: + - type: Transform + pos: -5.5,8.5 + parent: 1 + - uid: 741 + components: + - type: Transform + pos: -5.5,9.5 + parent: 1 + - uid: 742 + components: + - type: Transform + pos: -5.5,10.5 + parent: 1 + - uid: 743 + components: + - type: Transform + pos: -4.5,10.5 + parent: 1 + - uid: 744 + components: + - type: Transform + pos: -3.5,10.5 + parent: 1 + - uid: 745 + components: + - type: Transform + pos: -2.5,10.5 + parent: 1 + - uid: 746 + components: + - type: Transform + pos: -2.5,11.5 + parent: 1 + - uid: 747 + components: + - type: Transform + pos: 1.5,11.5 + parent: 1 + - uid: 748 + components: + - type: Transform + pos: 1.5,10.5 + parent: 1 + - uid: 749 + components: + - type: Transform + pos: 1.5,9.5 + parent: 1 + - uid: 750 + components: + - type: Transform + pos: 1.5,8.5 + parent: 1 + - uid: 751 + components: + - type: Transform + pos: 1.5,7.5 + parent: 1 + - uid: 752 + components: + - type: Transform + pos: 1.5,6.5 + parent: 1 + - uid: 753 + components: + - type: Transform + pos: 1.5,5.5 + parent: 1 + - uid: 754 + components: + - type: Transform + pos: 1.5,4.5 + parent: 1 + - uid: 755 + components: + - type: Transform + pos: 1.5,3.5 + parent: 1 + - uid: 756 + components: + - type: Transform + pos: 1.5,2.5 + parent: 1 + - uid: 757 + components: + - type: Transform + pos: -0.5,0.5 + parent: 1 + - uid: 758 + components: + - type: Transform + pos: -0.5,-0.5 + parent: 1 + - uid: 759 + components: + - type: Transform + pos: 1.5,1.5 + parent: 1 + - uid: 760 + components: + - type: Transform + pos: 2.5,1.5 + parent: 1 + - uid: 761 + components: + - type: Transform + pos: -0.5,-1.5 + parent: 1 + - uid: 762 + components: + - type: Transform + pos: 3.5,1.5 + parent: 1 + - uid: 763 + components: + - type: Transform + pos: 12.5,-14.5 + parent: 1 + - uid: 765 + components: + - type: Transform + pos: 13.5,-14.5 + parent: 1 + - uid: 766 + components: + - type: Transform + pos: 14.5,-14.5 + parent: 1 + - uid: 1076 + components: + - type: Transform + pos: 4.5,13.5 + parent: 1 +- proto: CableHV + entities: + - uid: 585 + components: + - type: Transform + pos: 11.5,-1.5 + parent: 1 + - uid: 586 + components: + - type: Transform + pos: 11.5,-2.5 + parent: 1 + - uid: 587 + components: + - type: Transform + pos: 10.5,-2.5 + parent: 1 +- proto: CableMV + entities: + - uid: 588 + components: + - type: Transform + pos: 10.5,-2.5 + parent: 1 + - uid: 589 + components: + - type: Transform + pos: 11.5,-2.5 + parent: 1 + - uid: 590 + components: + - type: Transform + pos: 11.5,-1.5 + parent: 1 + - uid: 591 + components: + - type: Transform + pos: 12.5,-1.5 + parent: 1 +- proto: CarpetBlack + entities: + - uid: 1084 + components: + - type: Transform + pos: 10.5,-7.5 + parent: 1 + - uid: 1085 + components: + - type: Transform + pos: 10.5,-8.5 + parent: 1 + - uid: 1086 + components: + - type: Transform + pos: 11.5,-7.5 + parent: 1 + - uid: 1087 + components: + - type: Transform + pos: 11.5,-8.5 + parent: 1 + - uid: 1088 + components: + - type: Transform + pos: 12.5,-7.5 + parent: 1 + - uid: 1089 + components: + - type: Transform + pos: 12.5,-8.5 + parent: 1 +- proto: ChairWood + entities: + - uid: 413 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,7.5 + parent: 1 + - uid: 423 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,10.5 + parent: 1 + - uid: 426 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,8.5 + parent: 1 + - uid: 428 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,9.5 + parent: 1 + - uid: 429 + components: + - type: Transform + pos: 13.5,11.5 + parent: 1 + - uid: 430 + components: + - type: Transform + pos: 17.5,11.5 + parent: 1 + - uid: 431 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,9.5 + parent: 1 + - uid: 434 + components: + - type: Transform + pos: 14.5,11.5 + parent: 1 + - uid: 435 + components: + - type: Transform + pos: 16.5,11.5 + parent: 1 + - uid: 438 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,8.5 + parent: 1 + - uid: 439 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,7.5 + parent: 1 + - uid: 440 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,5.5 + parent: 1 + - uid: 441 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,5.5 + parent: 1 + - uid: 442 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,6.5 + parent: 1 + - uid: 443 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,5.5 + parent: 1 + - uid: 444 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,5.5 + parent: 1 + - uid: 445 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,10.5 + parent: 1 + - uid: 446 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,6.5 + parent: 1 + - uid: 1093 + components: + - type: Transform + pos: 10.5,-11.5 + parent: 1 + - uid: 1097 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,-12.5 + parent: 1 + - uid: 1098 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-12.5 + parent: 1 + - uid: 1099 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-13.5 + parent: 1 + - uid: 1154 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-9.5 + parent: 1 + - uid: 1171 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,8.5 + parent: 1 + - uid: 1175 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,6.5 + parent: 1 + - uid: 1176 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,9.5 + parent: 1 + - uid: 1177 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,7.5 + parent: 1 + - uid: 1210 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-16.5 + parent: 1 + - uid: 1211 + components: + - type: Transform + pos: -9.5,-10.5 + parent: 1 + - uid: 1212 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,-12.5 + parent: 1 + - uid: 1227 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,2.5 + parent: 1 +- proto: ClothingHeadHelmetBone + entities: + - uid: 1199 + components: + - type: Transform + pos: -8.527203,7.6776237 + parent: 1 +- proto: ClothingOuterArmorBone + entities: + - uid: 1195 + components: + - type: Transform + pos: -8.589703,7.7244987 + parent: 1 +- proto: ComfyChair + entities: + - uid: 1082 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,-8.5 + parent: 1 + - uid: 1155 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,-9.5 + parent: 1 + - uid: 1156 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,-10.5 + parent: 1 +- proto: Dresser + entities: + - uid: 1204 + components: + - type: Transform + pos: -4.5,-13.5 + parent: 1 + - uid: 1205 + components: + - type: Transform + pos: -3.5,-14.5 + parent: 1 +- proto: DrinkMugDog + entities: + - uid: 466 + components: + - type: Transform + pos: 15.982802,14.467746 + parent: 1 +- proto: DrinkMugOne + entities: + - uid: 469 + components: + - type: Transform + pos: 15.071344,14.717746 + parent: 1 +- proto: DrinkMugRainbow + entities: + - uid: 484 + components: + - type: Transform + pos: 15.461969,14.436496 + parent: 1 +- proto: DrinkMugRed + entities: + - uid: 467 + components: + - type: Transform + pos: 15.118219,14.436496 + parent: 1 + - uid: 485 + components: + - type: Transform + pos: 15.680719,14.676079 + parent: 1 + - uid: 486 + components: + - type: Transform + pos: 15.961969,14.780246 + parent: 1 + - uid: 487 + components: + - type: Transform + pos: 15.441136,14.863579 + parent: 1 +- proto: DrinkScrewdriverCocktailGlass + entities: + - uid: 1269 + components: + - type: Transform + pos: 13.631049,10.651131 + parent: 1 +- proto: Fireplace + entities: + - uid: 1080 + components: + - type: Transform + pos: 9.5,-8.5 + parent: 1 +- proto: FoodBreadMoldy + entities: + - uid: 499 + components: + - type: MetaData + flags: InContainer + - type: Transform + parent: 494 + - type: Physics + canCollide: False +- proto: FoodMeatRotten + entities: + - uid: 495 + components: + - type: MetaData + flags: InContainer + - type: Transform + parent: 494 + - type: Physics + canCollide: False + - uid: 496 + components: + - type: MetaData + flags: InContainer + - type: Transform + parent: 494 + - type: Physics + canCollide: False + - uid: 497 + components: + - type: MetaData + flags: InContainer + - type: Transform + parent: 494 + - type: Physics + canCollide: False + - uid: 498 + components: + - type: MetaData + flags: InContainer + - type: Transform + parent: 494 + - type: Physics + canCollide: False +- proto: FoodPizzaMoldySlice + entities: + - uid: 500 + components: + - type: MetaData + flags: InContainer + - type: Transform + parent: 494 + - type: Physics + canCollide: False + - uid: 501 + components: + - type: MetaData + flags: InContainer + - type: Transform + parent: 494 + - type: Physics + canCollide: False + - uid: 502 + components: + - type: MetaData + flags: InContainer + - type: Transform + parent: 494 + - type: Physics + canCollide: False +- proto: GasOutletInjector + entities: + - uid: 1075 + components: + - type: Transform + pos: 4.5,15.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#990000FF' +- proto: GasPipeBend + entities: + - uid: 580 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,-2.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 779 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,-17.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 793 + components: + - type: Transform + pos: -1.5,-15.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 798 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,-15.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 801 + components: + - type: Transform + pos: -5.5,-12.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 804 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,-12.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 808 + components: + - type: Transform + pos: -8.5,-8.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 809 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,-8.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 813 + components: + - type: Transform + pos: -9.5,-5.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 819 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,-5.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 820 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 835 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,12.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 837 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 882 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,-10.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 887 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,-5.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 912 + components: + - type: Transform + pos: 19.5,12.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 935 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,-8.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 936 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,-8.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 947 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,-6.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 948 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,-6.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 950 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 957 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,-16.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 958 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-16.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 959 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-18.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 971 + components: + - type: Transform + pos: 1.5,-16.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 986 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-16.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 987 + components: + - type: Transform + pos: -4.5,-13.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 988 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-13.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 991 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,-11.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 992 + components: + - type: Transform + pos: -9.5,-9.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 993 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,-9.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 996 + components: + - type: Transform + pos: -10.5,-6.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 997 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,-6.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1005 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,1.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1017 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,1.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1041 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,13.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1045 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,11.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1046 + components: + - type: Transform + pos: 7.5,13.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1062 + components: + - type: Transform + pos: 18.5,11.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' +- proto: GasPipeFourway + entities: + - uid: 1038 + components: + - type: Transform + pos: 4.5,13.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' +- proto: GasPipeStraight + entities: + - uid: 739 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-15.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 764 + components: + - type: Transform + pos: 11.5,-4.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 767 + components: + - type: Transform + pos: 11.5,-5.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 768 + components: + - type: Transform + pos: 11.5,-6.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 770 + components: + - type: Transform + pos: 11.5,-8.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 771 + components: + - type: Transform + pos: 11.5,-9.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 773 + components: + - type: Transform + pos: 11.5,-11.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 774 + components: + - type: Transform + pos: 11.5,-12.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 775 + components: + - type: Transform + pos: 11.5,-13.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 776 + components: + - type: Transform + pos: 11.5,-14.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 777 + components: + - type: Transform + pos: 11.5,-15.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 778 + components: + - type: Transform + pos: 11.5,-16.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 780 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-17.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 781 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-17.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 782 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-17.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 784 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-17.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 785 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-17.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 786 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-17.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 787 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-17.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 788 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-17.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 789 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-17.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 790 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-17.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 791 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-17.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 794 + components: + - type: Transform + pos: -1.5,-16.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 795 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-15.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 796 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-15.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 799 + components: + - type: Transform + pos: -5.5,-14.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 800 + components: + - type: Transform + pos: -5.5,-13.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 802 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-12.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 803 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-12.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 805 + components: + - type: Transform + pos: -8.5,-11.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 807 + components: + - type: Transform + pos: -8.5,-9.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 811 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,-7.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 812 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,-6.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 815 + components: + - type: Transform + pos: -10.5,-3.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 816 + components: + - type: Transform + pos: -10.5,-2.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 817 + components: + - type: Transform + pos: -10.5,-1.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 818 + components: + - type: Transform + pos: -10.5,-0.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 821 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 822 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 823 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 824 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 825 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 826 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 828 + components: + - type: Transform + pos: -9.5,1.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 829 + components: + - type: Transform + pos: -9.5,2.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 830 + components: + - type: Transform + pos: -9.5,3.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 838 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 839 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 840 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 841 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,1.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 842 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,2.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 843 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,3.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 844 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,4.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 845 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,5.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 846 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,6.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 847 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,7.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 848 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,8.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 849 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,9.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 850 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,10.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 853 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,11.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 854 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,11.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 855 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,11.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 856 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,11.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 857 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,11.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 859 + components: + - type: Transform + pos: -9.5,4.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 860 + components: + - type: Transform + pos: -9.5,5.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 862 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,12.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 863 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,12.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 864 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,12.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 865 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,12.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 866 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,12.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 867 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,12.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 869 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,12.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 870 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,12.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 871 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,12.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 872 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,12.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 873 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,12.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 876 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,-10.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 877 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,-10.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 878 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,-10.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 879 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,-10.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 880 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,-10.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 881 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,-10.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 883 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,-9.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 884 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,-8.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 885 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,-7.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 886 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,-6.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 889 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,-4.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 890 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,-3.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 891 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,-2.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 892 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,-1.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 893 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,-0.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 894 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 895 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,1.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 896 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,2.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 897 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,3.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 898 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,4.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 899 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,5.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 901 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,7.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 902 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,8.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 903 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,9.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 904 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,10.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 905 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,11.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 907 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,13.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 908 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,12.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 909 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,12.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 910 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,12.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 911 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,12.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 913 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,6.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 914 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,6.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 915 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,6.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 916 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,6.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 917 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,6.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 921 + components: + - type: Transform + pos: 12.5,-8.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 922 + components: + - type: Transform + pos: 12.5,-9.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 923 + components: + - type: Transform + pos: 12.5,-10.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 925 + components: + - type: Transform + pos: 12.5,-12.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 926 + components: + - type: Transform + pos: 12.5,-13.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 927 + components: + - type: Transform + pos: 12.5,-14.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 928 + components: + - type: Transform + pos: 12.5,-15.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 930 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,-11.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 931 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,-11.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 932 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,-11.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 933 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,-11.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 937 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,-10.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 938 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,-9.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 939 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,-8.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 940 + components: + - type: Transform + pos: 19.5,-7.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 941 + components: + - type: Transform + pos: 20.5,-5.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 942 + components: + - type: Transform + pos: 20.5,-4.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 943 + components: + - type: Transform + pos: 20.5,-3.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 944 + components: + - type: Transform + pos: 20.5,-2.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 945 + components: + - type: Transform + pos: 20.5,-1.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 946 + components: + - type: Transform + pos: 20.5,-0.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 951 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 952 + components: + - type: Transform + pos: 18.5,1.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 953 + components: + - type: Transform + pos: 18.5,2.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 954 + components: + - type: Transform + pos: 18.5,3.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 960 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,-16.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 961 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-16.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 962 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-16.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 963 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-17.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 964 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,-18.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 965 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,-18.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 966 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-18.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 967 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-18.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 968 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-18.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 969 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-18.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 972 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-17.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 973 + components: + - type: Transform + pos: -4.5,-15.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 974 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-16.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 975 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-16.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 976 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-16.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 977 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-16.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 978 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-16.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 979 + components: + - type: Transform + pos: -4.5,-14.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 980 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-13.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 981 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-13.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 982 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,-11.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 983 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-12.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 984 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,-10.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 985 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,-5.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 994 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,-8.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 995 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,-7.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 998 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,-4.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 999 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,-3.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1001 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,-1.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1002 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,-0.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1003 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1007 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,1.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1008 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,1.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1009 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,1.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1010 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,1.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1011 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,1.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1012 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,1.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1013 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,1.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1014 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,1.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1016 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,1.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1018 + components: + - type: Transform + pos: -10.5,2.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1021 + components: + - type: Transform + pos: -10.5,3.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1025 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,2.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1026 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,3.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1027 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,4.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1028 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,5.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1029 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,6.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1030 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,7.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1031 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,8.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1032 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,9.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1033 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,10.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1034 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,11.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1035 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,13.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1036 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,13.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1037 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,13.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1039 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,13.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1040 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,13.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1042 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,12.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1043 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,12.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1048 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,12.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1049 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,11.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1050 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,11.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1051 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,11.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1052 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,11.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1054 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,11.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1055 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,11.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1056 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,11.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1058 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,11.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1060 + components: + - type: Transform + pos: 16.5,12.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1061 + components: + - type: Transform + pos: 16.5,13.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1063 + components: + - type: Transform + pos: 12.5,10.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1064 + components: + - type: Transform + pos: 12.5,9.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1065 + components: + - type: Transform + pos: 12.5,8.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1067 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,4.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1068 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,5.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1069 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,6.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1070 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,7.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1071 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,8.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1072 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,9.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1073 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,10.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1074 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,14.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' +- proto: GasPipeTJunction + entities: + - uid: 579 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,-3.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 769 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,-7.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 772 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,-10.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 792 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-17.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 806 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-10.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 810 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 814 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,-4.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 827 + components: + - type: Transform + pos: -2.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 833 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-17.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 851 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,11.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 868 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,12.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 888 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,-5.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 900 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,6.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 906 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,12.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 924 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,-11.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 929 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,-11.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 949 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 970 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-18.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 989 + components: + - type: Transform + pos: -7.5,-11.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1000 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,-2.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1006 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,1.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1015 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,1.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1024 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,12.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1053 + components: + - type: Transform + pos: 12.5,11.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1057 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,11.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' +- proto: GasPort + entities: + - uid: 577 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,-2.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 578 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,-3.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#0055CCFF' +- proto: GasVentPump + entities: + - uid: 783 + components: + - type: Transform + pos: 7.5,-16.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 831 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-10.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 832 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,-7.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 834 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-17.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 836 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-0.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 858 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,11.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 861 + components: + - type: Transform + pos: -9.5,6.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 874 + components: + - type: Transform + pos: 8.5,13.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 875 + components: + - type: Transform + pos: 14.5,14.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 918 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,6.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 955 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,-5.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1004 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,-4.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#0055CCFF' +- proto: GasVentScrubber + entities: + - uid: 852 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-18.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 920 + components: + - type: Transform + pos: 12.5,-7.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 934 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,-12.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 956 + components: + - type: Transform + pos: 20.5,1.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 990 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-11.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1019 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,-2.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1020 + components: + - type: Transform + pos: -1.5,2.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1022 + components: + - type: Transform + pos: -10.5,4.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1023 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,12.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1047 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,12.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1059 + components: + - type: Transform + pos: 16.5,14.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1066 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,7.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#990000FF' +- proto: GeneratorBasic15kW + entities: + - uid: 180 + components: + - type: Transform + pos: 11.5,-1.5 + parent: 1 +- proto: HappyHonkNukie + entities: + - uid: 1262 + components: + - type: Transform + pos: 18.677008,13.668269 + parent: 1 + - uid: 1263 + components: + - type: Transform + pos: 12.505133,9.291049 + parent: 1 + - uid: 1264 + components: + - type: Transform + pos: 18.630133,7.7597985 + parent: 1 +- proto: HospitalCurtainsOpen + entities: + - uid: 1240 + components: + - type: Transform + pos: 13.5,-16.5 + parent: 1 + - uid: 1241 + components: + - type: Transform + pos: 14.5,-15.5 + parent: 1 + - uid: 1242 + components: + - type: Transform + pos: 15.5,-14.5 + parent: 1 + - uid: 1243 + components: + - type: Transform + pos: 16.5,-13.5 + parent: 1 + - uid: 1244 + components: + - type: Transform + pos: 17.5,-12.5 + parent: 1 + - uid: 1245 + components: + - type: Transform + pos: 18.5,-11.5 + parent: 1 + - uid: 1252 + components: + - type: Transform + pos: 12.5,-16.5 + parent: 1 +- proto: KitchenMicrowave + entities: + - uid: 504 + components: + - type: Transform + pos: 16.5,14.5 + parent: 1 +- proto: KitchenSpike + entities: + - uid: 1144 + components: + - type: Transform + pos: 3.5,-0.5 + parent: 1 + - uid: 1145 + components: + - type: Transform + pos: 3.5,0.5 + parent: 1 + - uid: 1146 + components: + - type: Transform + pos: 3.5,1.5 + parent: 1 + - uid: 1151 + components: + - type: Transform + pos: 2.5,-1.5 + parent: 1 + - uid: 1152 + components: + - type: Transform + pos: 0.5,-2.5 + parent: 1 + - uid: 1153 + components: + - type: Transform + pos: -1.5,-1.5 + parent: 1 + - uid: 1231 + components: + - type: Transform + pos: 17.5,-8.5 + parent: 1 +- proto: LockerFreezer + entities: + - uid: 492 + components: + - type: Transform + pos: 17.5,14.5 + parent: 1 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 494 + - 493 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: MaterialBones + entities: + - uid: 1191 + components: + - type: Transform + pos: -9.59404,5.5593805 + parent: 1 + - uid: 1196 + components: + - type: Transform + pos: -9.28154,5.4968805 + parent: 1 +- proto: Paper + entities: + - uid: 493 + components: + - type: MetaData + flags: InContainer + - type: Transform + parent: 492 + - type: Paper + content: >- + Steve, please, for Nar'Sie sake, DON'T PUT YOUR FOOD IN COOMON FREEZER! Its abhorent smell makes it hard to concentrate on the rituals - hard to read from The Book when your eyes watering this bad. Last ritual was botched beacuse of this and Viktor's bones decided that they no longer contempt with being inside him and just took off. Poor Vik, we have to feed him through the tube now. And I still can hear his bones rattling in the vents from time to time. + + - Russ + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: PlasmaReinforcedWindowDirectional + entities: + - uid: 1246 + components: + - type: Transform + pos: 13.5,-15.5 + parent: 1 + - uid: 1247 + components: + - type: Transform + pos: 14.5,-14.5 + parent: 1 + - uid: 1248 + components: + - type: Transform + pos: 15.5,-13.5 + parent: 1 + - uid: 1249 + components: + - type: Transform + pos: 16.5,-12.5 + parent: 1 + - uid: 1250 + components: + - type: Transform + pos: 17.5,-11.5 + parent: 1 + - uid: 1251 + components: + - type: Transform + pos: 18.5,-10.5 + parent: 1 + - uid: 1254 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,-16.5 + parent: 1 +- proto: PlasteelArmingSword + entities: + - uid: 1186 + components: + - type: MetaData + flags: InContainer + - type: Transform + parent: 1185 + - type: Physics + canCollide: False + - uid: 1188 + components: + - type: MetaData + flags: InContainer + - type: Transform + parent: 1185 + - type: Physics + canCollide: False +- proto: PottedPlantRandomPlastic + entities: + - uid: 1077 + components: + - type: Transform + pos: 0.5,-18.5 + parent: 1 + - uid: 1096 + components: + - type: Transform + pos: 7.5,-16.5 + parent: 1 + - uid: 1158 + components: + - type: Transform + pos: -10.5,4.5 + parent: 1 + - uid: 1161 + components: + - type: Transform + pos: -2.5,12.5 + parent: 1 + - uid: 1215 + components: + - type: Transform + pos: -11.5,-4.5 + parent: 1 + - uid: 1217 + components: + - type: Transform + pos: 4.5,12.5 + parent: 1 +- proto: Rack + entities: + - uid: 1181 + components: + - type: Transform + pos: -8.5,7.5 + parent: 1 + - uid: 1182 + components: + - type: Transform + pos: -9.5,5.5 + parent: 1 + - uid: 1183 + components: + - type: Transform + pos: -3.5,11.5 + parent: 1 + - uid: 1184 + components: + - type: Transform + pos: -5.5,10.5 + parent: 1 +- proto: RandomFoodMeal + entities: + - uid: 1265 + components: + - type: Transform + pos: 13.5,7.5 + parent: 1 + - uid: 1266 + components: + - type: Transform + pos: 18.5,9.5 + parent: 1 +- proto: RitualDagger + entities: + - uid: 1187 + components: + - type: MetaData + flags: InContainer + - type: Transform + parent: 1185 + - type: Physics + canCollide: False + - uid: 1189 + components: + - type: MetaData + flags: InContainer + - type: Transform + parent: 1185 + - type: Physics + canCollide: False + - uid: 1197 + components: + - type: Transform + pos: -5.3562794,10.535943 + parent: 1 + - uid: 1198 + components: + - type: Transform + pos: -5.5906544,10.660943 + parent: 1 +- proto: SheetSteel + entities: + - uid: 1192 + components: + - type: Transform + pos: -3.3875294,11.567193 + parent: 1 +- proto: soda_dispenser + entities: + - uid: 503 + components: + - type: Transform + pos: 14.5,14.5 + parent: 1 +- proto: SpawnMobBloodCultistAcolyte + entities: + - uid: 407 + components: + - type: Transform + pos: 6.5,13.5 + parent: 1 + - uid: 454 + components: + - type: Transform + pos: 12.5,6.5 + parent: 1 + - uid: 455 + components: + - type: Transform + pos: 17.5,11.5 + parent: 1 + - uid: 471 + components: + - type: Transform + pos: -5.5,9.5 + parent: 1 + - uid: 477 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,9.5 + parent: 1 + - uid: 1260 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,11.5 + parent: 1 +- proto: SpawnMobBloodCultistAscended + entities: + - uid: 447 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,9.5 + parent: 1 +- proto: SpawnMobBloodCultistCaster + entities: + - uid: 451 + components: + - type: Transform + pos: 18.5,6.5 + parent: 1 + - uid: 452 + components: + - type: Transform + pos: 19.5,9.5 + parent: 1 + - uid: 453 + components: + - type: Transform + pos: 11.5,9.5 + parent: 1 + - uid: 475 + components: + - type: Transform + pos: -11.5,-2.5 + parent: 1 + - uid: 1092 + components: + - type: Transform + pos: 12.5,-8.5 + parent: 1 + - uid: 1228 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,-17.5 + parent: 1 + - uid: 1229 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,0.5 + parent: 1 + - uid: 1230 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,7.5 + parent: 1 +- proto: SpawnMobBloodCultistPriest + entities: + - uid: 450 + components: + - type: Transform + pos: 14.5,11.5 + parent: 1 + - uid: 720 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,0.5 + parent: 1 +- proto: SpawnMobBloodCultistZealotMelee + entities: + - uid: 459 + components: + - type: Transform + pos: 14.5,5.5 + parent: 1 + - uid: 465 + components: + - type: Transform + pos: 9.5,-12.5 + parent: 1 + - uid: 473 + components: + - type: Transform + pos: -8.5,-8.5 + parent: 1 + - uid: 478 + components: + - type: Transform + pos: 20.5,-4.5 + parent: 1 + - uid: 483 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,6.5 + parent: 1 + - uid: 1160 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,-6.5 + parent: 1 + - uid: 1259 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,-15.5 + parent: 1 +- proto: SpawnMobBloodCultistZealotRanged + entities: + - uid: 464 + components: + - type: Transform + pos: -4.5,-14.5 + parent: 1 +- proto: SpawnMobBloodCultLeech + entities: + - uid: 462 + components: + - type: Transform + pos: 0.5,-16.5 + parent: 1 + - uid: 463 + components: + - type: Transform + pos: -2.5,-17.5 + parent: 1 + - uid: 479 + components: + - type: Transform + pos: 15.5,-13.5 + parent: 1 + - uid: 480 + components: + - type: Transform + pos: 19.5,-3.5 + parent: 1 + - uid: 481 + components: + - type: Transform + pos: 0.5,-1.5 + parent: 1 + - uid: 482 + components: + - type: Transform + pos: 1.5,2.5 + parent: 1 + - uid: 1090 + components: + - type: Transform + pos: 10.5,-7.5 + parent: 1 + - uid: 1091 + components: + - type: Transform + pos: 11.5,-7.5 + parent: 1 + - uid: 1213 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-10.5 + parent: 1 + - uid: 1258 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,-11.5 + parent: 1 +- proto: SpearBone + entities: + - uid: 1190 + components: + - type: MetaData + flags: InContainer + - type: Transform + parent: 1185 + - type: Physics + canCollide: False +- proto: SubstationBasic + entities: + - uid: 575 + components: + - type: Transform + pos: 10.5,-2.5 + parent: 1 +- proto: TableCarpet + entities: + - uid: 1094 + components: + - type: Transform + pos: 12.5,-7.5 + parent: 1 + - uid: 1095 + components: + - type: Transform + pos: 10.5,-12.5 + parent: 1 + - uid: 1157 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,-9.5 + parent: 1 + - uid: 1224 + components: + - type: Transform + pos: 18.5,13.5 + parent: 1 +- proto: TableWood + entities: + - uid: 411 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,6.5 + parent: 1 + - uid: 412 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,8.5 + parent: 1 + - uid: 414 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,10.5 + parent: 1 + - uid: 415 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,10.5 + parent: 1 + - uid: 416 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,10.5 + parent: 1 + - uid: 417 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,6.5 + parent: 1 + - uid: 418 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,6.5 + parent: 1 + - uid: 419 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,7.5 + parent: 1 + - uid: 420 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,7.5 + parent: 1 + - uid: 421 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,8.5 + parent: 1 + - uid: 422 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,10.5 + parent: 1 + - uid: 424 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,7.5 + parent: 1 + - uid: 425 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,6.5 + parent: 1 + - uid: 427 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,9.5 + parent: 1 + - uid: 432 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,9.5 + parent: 1 + - uid: 433 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,9.5 + parent: 1 + - uid: 436 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,9.5 + parent: 1 + - uid: 437 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,7.5 + parent: 1 + - uid: 489 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,14.5 + parent: 1 + - uid: 490 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,14.5 + parent: 1 + - uid: 491 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,14.5 + parent: 1 +- proto: VendingMachineDrGibb + entities: + - uid: 488 + components: + - type: Transform + pos: 13.5,14.5 + parent: 1 +- proto: WallCultIndestructible + entities: + - uid: 3 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 2.5,4.5 + parent: 1 + - uid: 4 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 2.5,3.5 + parent: 1 + - uid: 5 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 3.5,3.5 + parent: 1 + - uid: 6 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 3.5,2.5 + parent: 1 + - uid: 7 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 4.5,2.5 + parent: 1 + - uid: 8 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 4.5,1.5 + parent: 1 + - uid: 9 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 4.5,0.5 + parent: 1 + - uid: 10 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 4.5,-0.5 + parent: 1 + - uid: 11 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 4.5,-1.5 + parent: 1 + - uid: 12 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 3.5,-1.5 + parent: 1 + - uid: 13 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 3.5,-2.5 + parent: 1 + - uid: 14 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 2.5,-2.5 + parent: 1 + - uid: 15 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 2.5,-3.5 + parent: 1 + - uid: 16 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 1.5,-3.5 + parent: 1 + - uid: 17 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 0.5,-3.5 + parent: 1 + - uid: 18 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -0.5,-3.5 + parent: 1 + - uid: 19 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -1.5,-3.5 + parent: 1 + - uid: 20 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -1.5,-2.5 + parent: 1 + - uid: 21 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -2.5,-2.5 + parent: 1 + - uid: 22 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -2.5,-1.5 + parent: 1 + - uid: 23 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -3.5,-1.5 + parent: 1 + - uid: 24 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -3.5,-0.5 + parent: 1 + - uid: 25 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -12.5,-0.5 + parent: 1 + - uid: 26 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -12.5,0.5 + parent: 1 + - uid: 27 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -3.5,2.5 + parent: 1 + - uid: 28 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -2.5,2.5 + parent: 1 + - uid: 29 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -2.5,3.5 + parent: 1 + - uid: 30 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -1.5,3.5 + parent: 1 + - uid: 31 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -1.5,4.5 + parent: 1 + - uid: 32 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -0.5,4.5 + parent: 1 + - uid: 33 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -12.5,1.5 + parent: 1 + - uid: 34 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -12.5,2.5 + parent: 1 + - uid: 35 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -11.5,2.5 + parent: 1 + - uid: 36 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -11.5,3.5 + parent: 1 + - uid: 37 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -11.5,4.5 + parent: 1 + - uid: 38 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -11.5,5.5 + parent: 1 + - uid: 39 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -10.5,5.5 + parent: 1 + - uid: 40 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -10.5,6.5 + parent: 1 + - uid: 41 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -10.5,7.5 + parent: 1 + - uid: 42 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -9.5,7.5 + parent: 1 + - uid: 43 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -9.5,8.5 + parent: 1 + - uid: 44 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -8.5,8.5 + parent: 1 + - uid: 45 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -8.5,9.5 + parent: 1 + - uid: 46 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -7.5,9.5 + parent: 1 + - uid: 47 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -7.5,10.5 + parent: 1 + - uid: 48 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -6.5,10.5 + parent: 1 + - uid: 49 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -6.5,11.5 + parent: 1 + - uid: 50 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -5.5,11.5 + parent: 1 + - uid: 51 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -5.5,12.5 + parent: 1 + - uid: 52 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -4.5,12.5 + parent: 1 + - uid: 53 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -3.5,12.5 + parent: 1 + - uid: 54 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -3.5,13.5 + parent: 1 + - uid: 55 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -2.5,13.5 + parent: 1 + - uid: 56 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -1.5,13.5 + parent: 1 + - uid: 57 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -0.5,13.5 + parent: 1 + - uid: 58 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -0.5,14.5 + parent: 1 + - uid: 59 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 0.5,14.5 + parent: 1 + - uid: 60 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 1.5,14.5 + parent: 1 + - uid: 61 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 2.5,14.5 + parent: 1 + - uid: 62 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -8.5,2.5 + parent: 1 + - uid: 63 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -7.5,2.5 + parent: 1 + - uid: 64 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -9.5,-0.5 + parent: 1 + - uid: 65 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -8.5,-0.5 + parent: 1 + - uid: 66 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -7.5,3.5 + parent: 1 + - uid: 67 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -7.5,4.5 + parent: 1 + - uid: 68 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -6.5,4.5 + parent: 1 + - uid: 69 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -6.5,5.5 + parent: 1 + - uid: 70 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -5.5,5.5 + parent: 1 + - uid: 71 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -5.5,6.5 + parent: 1 + - uid: 72 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -4.5,6.5 + parent: 1 + - uid: 73 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -4.5,7.5 + parent: 1 + - uid: 74 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -3.5,7.5 + parent: 1 + - uid: 75 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -3.5,8.5 + parent: 1 + - uid: 76 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -2.5,8.5 + parent: 1 + - uid: 77 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -2.5,9.5 + parent: 1 + - uid: 78 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -1.5,9.5 + parent: 1 + - uid: 79 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -0.5,9.5 + parent: 1 + - uid: 80 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -0.5,10.5 + parent: 1 + - uid: 81 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 2.5,10.5 + parent: 1 + - uid: 82 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 2.5,11.5 + parent: 1 + - uid: 83 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 3.5,14.5 + parent: 1 + - uid: 84 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 4.5,14.5 + parent: 1 + - uid: 85 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 5.5,14.5 + parent: 1 + - uid: 86 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 6.5,14.5 + parent: 1 + - uid: 87 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 7.5,14.5 + parent: 1 + - uid: 88 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 8.5,14.5 + parent: 1 + - uid: 89 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 9.5,14.5 + parent: 1 + - uid: 90 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 9.5,13.5 + parent: 1 + - uid: 91 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 3.5,11.5 + parent: 1 + - uid: 92 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 4.5,11.5 + parent: 1 + - uid: 93 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 5.5,11.5 + parent: 1 + - uid: 94 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 6.5,11.5 + parent: 1 + - uid: 95 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 6.5,10.5 + parent: 1 + - uid: 96 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 7.5,10.5 + parent: 1 + - uid: 97 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 8.5,10.5 + parent: 1 + - uid: 98 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 9.5,10.5 + parent: 1 + - uid: 99 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 10.5,13.5 + parent: 1 + - uid: 100 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 11.5,13.5 + parent: 1 + - uid: 101 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 11.5,14.5 + parent: 1 + - uid: 102 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 12.5,14.5 + parent: 1 + - uid: 103 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 12.5,15.5 + parent: 1 + - uid: 104 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 13.5,15.5 + parent: 1 + - uid: 105 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 14.5,15.5 + parent: 1 + - uid: 106 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 15.5,15.5 + parent: 1 + - uid: 107 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 16.5,15.5 + parent: 1 + - uid: 108 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 17.5,15.5 + parent: 1 + - uid: 109 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 18.5,15.5 + parent: 1 + - uid: 110 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 18.5,14.5 + parent: 1 + - uid: 111 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 19.5,14.5 + parent: 1 + - uid: 112 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 20.5,14.5 + parent: 1 + - uid: 113 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 20.5,13.5 + parent: 1 + - uid: 114 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 21.5,13.5 + parent: 1 + - uid: 115 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 21.5,12.5 + parent: 1 + - uid: 116 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 21.5,11.5 + parent: 1 + - uid: 117 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 22.5,11.5 + parent: 1 + - uid: 118 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 22.5,10.5 + parent: 1 + - uid: 119 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 22.5,9.5 + parent: 1 + - uid: 120 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 22.5,8.5 + parent: 1 + - uid: 121 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 22.5,7.5 + parent: 1 + - uid: 122 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 22.5,6.5 + parent: 1 + - uid: 123 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 22.5,5.5 + parent: 1 + - uid: 124 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 21.5,5.5 + parent: 1 + - uid: 125 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 21.5,4.5 + parent: 1 + - uid: 126 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 20.5,4.5 + parent: 1 + - uid: 127 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 20.5,3.5 + parent: 1 + - uid: 128 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 20.5,2.5 + parent: 1 + - uid: 129 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 21.5,2.5 + parent: 1 + - uid: 130 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 21.5,1.5 + parent: 1 + - uid: 131 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 17.5,2.5 + parent: 1 + - uid: 132 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 17.5,1.5 + parent: 1 + - uid: 133 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 16.5,1.5 + parent: 1 + - uid: 134 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 15.5,1.5 + parent: 1 + - uid: 135 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 14.5,1.5 + parent: 1 + - uid: 136 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 13.5,1.5 + parent: 1 + - uid: 137 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 12.5,1.5 + parent: 1 + - uid: 138 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 12.5,2.5 + parent: 1 + - uid: 139 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 11.5,2.5 + parent: 1 + - uid: 140 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 10.5,2.5 + parent: 1 + - uid: 141 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 10.5,3.5 + parent: 1 + - uid: 142 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 9.5,3.5 + parent: 1 + - uid: 143 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 9.5,4.5 + parent: 1 + - uid: 144 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 9.5,5.5 + parent: 1 + - uid: 145 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 8.5,5.5 + parent: 1 + - uid: 146 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 8.5,6.5 + parent: 1 + - uid: 147 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 8.5,7.5 + parent: 1 + - uid: 148 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 8.5,8.5 + parent: 1 + - uid: 149 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 8.5,9.5 + parent: 1 + - uid: 150 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 21.5,0.5 + parent: 1 + - uid: 151 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 21.5,-0.5 + parent: 1 + - uid: 152 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 21.5,-1.5 + parent: 1 + - uid: 153 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 21.5,-2.5 + parent: 1 + - uid: 154 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 21.5,-3.5 + parent: 1 + - uid: 155 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 21.5,-4.5 + parent: 1 + - uid: 156 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 21.5,-5.5 + parent: 1 + - uid: 157 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 21.5,-6.5 + parent: 1 + - uid: 158 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 21.5,-7.5 + parent: 1 + - uid: 159 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 20.5,-7.5 + parent: 1 + - uid: 160 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 17.5,0.5 + parent: 1 + - uid: 161 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 17.5,-0.5 + parent: 1 + - uid: 162 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 18.5,-0.5 + parent: 1 + - uid: 163 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 18.5,-1.5 + parent: 1 + - uid: 164 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 18.5,-2.5 + parent: 1 + - uid: 165 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 18.5,-3.5 + parent: 1 + - uid: 166 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 18.5,-4.5 + parent: 1 + - uid: 167 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 17.5,-4.5 + parent: 1 + - uid: 168 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 17.5,-5.5 + parent: 1 + - uid: 169 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 17.5,-6.5 + parent: 1 + - uid: 170 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 17.5,-7.5 + parent: 1 + - uid: 171 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 16.5,-7.5 + parent: 1 + - uid: 172 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 16.5,-8.5 + parent: 1 + - uid: 173 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 15.5,-8.5 + parent: 1 + - uid: 174 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 15.5,-9.5 + parent: 1 + - uid: 175 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 14.5,-8.5 + parent: 1 + - uid: 176 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 14.5,-7.5 + parent: 1 + - uid: 177 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 13.5,-7.5 + parent: 1 + - uid: 178 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 13.5,-6.5 + parent: 1 + - uid: 179 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 12.5,-6.5 + parent: 1 + - uid: 181 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 10.5,-6.5 + parent: 1 + - uid: 182 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 9.5,-6.5 + parent: 1 + - uid: 183 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 9.5,-7.5 + parent: 1 + - uid: 184 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 8.5,-7.5 + parent: 1 + - uid: 185 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 8.5,-8.5 + parent: 1 + - uid: 186 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 7.5,-8.5 + parent: 1 + - uid: 189 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 7.5,-11.5 + parent: 1 + - uid: 190 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 7.5,-12.5 + parent: 1 + - uid: 191 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 8.5,-12.5 + parent: 1 + - uid: 192 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 8.5,-13.5 + parent: 1 + - uid: 193 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 9.5,-13.5 + parent: 1 + - uid: 194 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 9.5,-14.5 + parent: 1 + - uid: 195 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 10.5,-14.5 + parent: 1 + - uid: 196 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 20.5,-8.5 + parent: 1 + - uid: 197 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 20.5,-9.5 + parent: 1 + - uid: 198 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 20.5,-10.5 + parent: 1 + - uid: 199 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 19.5,-10.5 + parent: 1 + - uid: 200 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 19.5,-11.5 + parent: 1 + - uid: 201 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 19.5,-12.5 + parent: 1 + - uid: 202 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 18.5,-12.5 + parent: 1 + - uid: 203 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 18.5,-13.5 + parent: 1 + - uid: 204 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 17.5,-13.5 + parent: 1 + - uid: 205 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 17.5,-14.5 + parent: 1 + - uid: 206 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 16.5,-14.5 + parent: 1 + - uid: 207 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 16.5,-15.5 + parent: 1 + - uid: 208 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 15.5,-15.5 + parent: 1 + - uid: 209 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 15.5,-16.5 + parent: 1 + - uid: 210 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 14.5,-16.5 + parent: 1 + - uid: 211 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 14.5,-17.5 + parent: 1 + - uid: 212 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 13.5,-17.5 + parent: 1 + - uid: 213 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 12.5,-17.5 + parent: 1 + - uid: 214 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 12.5,-18.5 + parent: 1 + - uid: 215 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 11.5,-18.5 + parent: 1 + - uid: 216 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 10.5,-18.5 + parent: 1 + - uid: 217 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 9.5,-18.5 + parent: 1 + - uid: 218 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 9.5,-19.5 + parent: 1 + - uid: 219 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 8.5,-19.5 + parent: 1 + - uid: 220 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 7.5,-19.5 + parent: 1 + - uid: 221 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 6.5,-19.5 + parent: 1 + - uid: 222 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 6.5,-16.5 + parent: 1 + - uid: 223 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 6.5,-15.5 + parent: 1 + - uid: 224 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 7.5,-15.5 + parent: 1 + - uid: 225 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 8.5,-15.5 + parent: 1 + - uid: 226 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 9.5,-15.5 + parent: 1 + - uid: 227 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 2.5,-16.5 + parent: 1 + - uid: 228 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 3.5,-16.5 + parent: 1 + - uid: 229 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 4.5,-16.5 + parent: 1 + - uid: 230 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 5.5,-16.5 + parent: 1 + - uid: 231 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 2.5,-19.5 + parent: 1 + - uid: 232 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 1.5,-19.5 + parent: 1 + - uid: 233 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 0.5,-19.5 + parent: 1 + - uid: 234 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -0.5,-19.5 + parent: 1 + - uid: 235 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -0.5,-18.5 + parent: 1 + - uid: 236 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -1.5,-18.5 + parent: 1 + - uid: 237 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -2.5,-18.5 + parent: 1 + - uid: 238 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -3.5,-18.5 + parent: 1 + - uid: 239 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -3.5,-17.5 + parent: 1 + - uid: 240 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -4.5,-17.5 + parent: 1 + - uid: 241 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -5.5,-17.5 + parent: 1 + - uid: 242 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -5.5,-16.5 + parent: 1 + - uid: 243 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -6.5,-16.5 + parent: 1 + - uid: 244 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -6.5,-15.5 + parent: 1 + - uid: 245 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -7.5,-15.5 + parent: 1 + - uid: 246 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -7.5,-14.5 + parent: 1 + - uid: 247 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -8.5,-14.5 + parent: 1 + - uid: 248 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -8.5,-13.5 + parent: 1 + - uid: 249 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -9.5,-13.5 + parent: 1 + - uid: 250 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -9.5,-12.5 + parent: 1 + - uid: 251 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -10.5,-12.5 + parent: 1 + - uid: 252 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -10.5,-11.5 + parent: 1 + - uid: 253 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -10.5,-10.5 + parent: 1 + - uid: 254 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -11.5,-10.5 + parent: 1 + - uid: 255 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -11.5,-9.5 + parent: 1 + - uid: 256 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -11.5,-8.5 + parent: 1 + - uid: 257 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -11.5,-7.5 + parent: 1 + - uid: 258 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -12.5,-7.5 + parent: 1 + - uid: 259 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -12.5,-6.5 + parent: 1 + - uid: 260 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -12.5,-5.5 + parent: 1 + - uid: 261 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -12.5,-4.5 + parent: 1 + - uid: 262 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -12.5,-3.5 + parent: 1 + - uid: 263 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -12.5,-2.5 + parent: 1 + - uid: 264 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -12.5,-1.5 + parent: 1 + - uid: 265 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -9.5,-1.5 + parent: 1 + - uid: 266 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -9.5,-2.5 + parent: 1 + - uid: 267 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -9.5,-3.5 + parent: 1 + - uid: 268 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -9.5,-4.5 + parent: 1 + - uid: 269 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -8.5,-4.5 + parent: 1 + - uid: 270 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -8.5,-5.5 + parent: 1 + - uid: 271 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -8.5,-6.5 + parent: 1 + - uid: 272 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -8.5,-7.5 + parent: 1 + - uid: 273 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -7.5,-7.5 + parent: 1 + - uid: 274 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -7.5,-8.5 + parent: 1 + - uid: 275 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -7.5,-9.5 + parent: 1 + - uid: 276 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -6.5,-9.5 + parent: 1 + - uid: 277 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -6.5,-10.5 + parent: 1 + - uid: 278 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -5.5,-10.5 + parent: 1 + - uid: 279 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -5.5,-11.5 + parent: 1 + - uid: 280 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -4.5,-11.5 + parent: 1 + - uid: 281 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -4.5,-12.5 + parent: 1 + - uid: 282 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -3.5,-12.5 + parent: 1 + - uid: 283 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -3.5,-13.5 + parent: 1 + - uid: 284 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -2.5,-13.5 + parent: 1 + - uid: 285 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -2.5,-14.5 + parent: 1 + - uid: 286 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -1.5,-14.5 + parent: 1 + - uid: 287 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -0.5,-14.5 + parent: 1 + - uid: 288 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -0.5,-15.5 + parent: 1 + - uid: 291 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 2.5,-15.5 + parent: 1 + - uid: 448 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 13.5,-1.5 + parent: 1 + - uid: 449 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 13.5,-4.5 + parent: 1 + - uid: 456 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 12.5,-0.5 + parent: 1 + - uid: 457 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 13.5,-2.5 + parent: 1 + - uid: 458 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 12.5,-1.5 + parent: 1 + - uid: 460 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 13.5,-3.5 + parent: 1 + - uid: 474 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 11.5,-0.5 + parent: 1 + - uid: 509 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 10.5,-0.5 + parent: 1 + - uid: 568 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 10.5,-1.5 + parent: 1 + - uid: 569 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 9.5,-1.5 + parent: 1 + - uid: 570 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 9.5,-2.5 + parent: 1 + - uid: 571 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 9.5,-3.5 + parent: 1 + - uid: 572 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 10.5,-3.5 + parent: 1 + - uid: 573 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 10.5,-4.5 + parent: 1 + - uid: 574 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 12.5,-4.5 + parent: 1 + - uid: 583 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,-6.5 + parent: 1 + - uid: 584 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,-4.5 + parent: 1 +- proto: WarpPointShip + entities: + - uid: 468 + components: + - type: MetaData + name: Blood Moon + - type: Transform + pos: 4.5,-17.5 + parent: 1 +- proto: WeaponRackMeleeBase + entities: + - uid: 1185 + components: + - type: Transform + pos: -7.5,8.5 + parent: 1 + - type: ContainerContainer + containers: + storagebase: !type:Container + showEnts: False + occludes: True + ents: [] + weapon1_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: 1186 + weapon2_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: 1187 + weapon3_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: 1190 + weapon4_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: 1189 + weapon5_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: 1188 + weapon6_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +... diff --git a/Resources/Maps/_NF/Bluespace/syndieftlintercept.yml b/Resources/Maps/_NF/Bluespace/syndieftlintercept.yml new file mode 100644 index 00000000000..93655a1a9cd --- /dev/null +++ b/Resources/Maps/_NF/Bluespace/syndieftlintercept.yml @@ -0,0 +1,6398 @@ +meta: + format: 6 + postmapinit: false +tilemap: + 0: Space + 30: FloorDark + 33: FloorDarkHerringbone + 35: FloorDarkMono + 39: FloorDarkPlastic + 45: FloorFreezer + 46: FloorGlass + 77: FloorRGlass + 105: FloorTechMaint + 109: FloorWhite + 114: FloorWhiteMono + 118: FloorWhitePlastic + 121: Lattice + 122: Plating +entities: +- proto: "" + entities: + - uid: 1 + components: + - type: MetaData + name: Intercepted Syndicate Vessel + - type: Transform + pos: -0.484375,-0.49998474 + parent: invalid + - type: MapGrid + chunks: + 0,0: + ind: 0,0 + tiles: JwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAegAAAAAAegAAAAAAegAAAAAATQAAAAAATQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAaQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAegAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIQAAAAAAIQAAAAAAJwAAAAAAJwAAAAAAegAAAAAATQAAAAAATQAAAAAATQAAAAAAegAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIQAAAAAAIQAAAAAAJwAAAAAAJwAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIQAAAAAAIQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,0: + ind: -1,0 + tiles: bQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAegAAAAAAegAAAAAAcgAAAAAAcgAAAAAAegAAAAAAcgAAAAAAcgAAAAAAegAAAAAAegAAAAAAJwAAAAAAJwAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAJwAAAAAAJwAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAJwAAAAAAJwAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAALQAAAAAALQAAAAAAaQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 0,-1: + ind: 0,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAegAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAaQAAAAAAaQAAAAAAegAAAAAAaQAAAAAAaQAAAAAAegAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAHgAAAAAAHgAAAAAAaQAAAAAAegAAAAAAegAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAHgAAAAAAegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAegAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaQAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaQAAAAAAegAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAaQAAAAAAIwAAAAAAIwAAAAAAaQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAJwAAAAAAJwAAAAAATQAAAAAATQAAAAAAJwAAAAAAegAAAAAAaQAAAAAAIwAAAAAAaQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAaQAAAAAAIwAAAAAAIwAAAAAAaQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,-1: + ind: -1,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAALgAAAAAALgAAAAAAegAAAAAALgAAAAAALgAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAALgAAAAAALgAAAAAAegAAAAAALgAAAAAALgAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAegAAAAAAJwAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAegAAAAAAJwAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAHgAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAaQAAAAAAJwAAAAAAegAAAAAAHgAAAAAAegAAAAAAHgAAAAAAegAAAAAAHgAAAAAAegAAAAAAegAAAAAAaQAAAAAAHgAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAdgAAAAAAegAAAAAAegAAAAAAcgAAAAAAcgAAAAAAegAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAegAAAAAAJwAAAAAAJwAAAAAA + version: 6 + -2,0: + ind: -2,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -2,-1: + ind: -2,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAegAAAAAA + version: 6 + - type: Broadphase + - type: Physics + bodyStatus: InAir + angularDamping: 999999 + linearDamping: 999999 + fixedRotation: False + bodyType: Dynamic + - type: Fixtures + fixtures: {} + - type: OccluderTree + - type: SpreaderGrid + - type: Shuttle + angularDamping: 999999 + linearDamping: 999999 + - type: GridPathfinding + - type: Gravity + gravityShakeSound: !type:SoundPathSpecifier + path: /Audio/Effects/alert.ogg + - type: DecalGrid + chunkCollection: + version: 2 + nodes: + - node: + color: '#DE3A3AFF' + id: Bot + decals: + 56: 8,-2 + 57: 0,-3 + 58: 0,-4 + 59: -11,-6 + - node: + color: '#1D1D21A1' + id: BrickTileDarkInnerNe + decals: + 79: 3,-3 + - node: + color: '#1D1D21A1' + id: BrickTileDarkInnerNw + decals: + 80: 6,-3 + - node: + color: '#1D1D21A1' + id: BrickTileDarkInnerSe + decals: + 77: 3,-1 + - node: + color: '#1D1D21A1' + id: BrickTileDarkInnerSw + decals: + 78: 6,-1 + - node: + color: '#1D1D21A1' + id: BrickTileDarkLineE + decals: + 75: 3,-2 + - node: + color: '#1D1D21A1' + id: BrickTileDarkLineN + decals: + 71: 4,-3 + 72: 5,-3 + - node: + color: '#1D1D21A1' + id: BrickTileDarkLineS + decals: + 73: 4,-1 + 74: 5,-1 + - node: + color: '#1D1D21A1' + id: BrickTileDarkLineW + decals: + 76: 6,-2 + - node: + color: '#DE3A3AFF' + id: BrickTileSteelBox + decals: + 61: -7,-3 + - node: + color: '#FF0000FF' + id: BrickTileSteelCornerNe + decals: + 18: -12,0 + - node: + color: '#FF0000FF' + id: BrickTileSteelCornerNw + decals: + 19: -16,0 + - node: + color: '#FF0000FF' + id: BrickTileSteelCornerSe + decals: + 20: -12,-1 + 21: -13,-5 + - node: + color: '#FF0000FF' + id: BrickTileSteelCornerSw + decals: + 22: -16,-5 + - node: + color: '#FF0000FF' + id: BrickTileSteelInnerSe + decals: + 32: -13,-1 + - node: + color: '#FF0000FF' + id: BrickTileSteelLineE + decals: + 23: -13,-4 + 24: -13,-2 + - node: + color: '#FF0000FF' + id: BrickTileSteelLineN + decals: + 25: -13,0 + 26: -14,0 + 27: -15,0 + - node: + color: '#FF0000FF' + id: BrickTileSteelLineS + decals: + 33: -15,-5 + 34: -14,-5 + - node: + color: '#FF0000FF' + id: BrickTileSteelLineW + decals: + 28: -16,-1 + 29: -16,-2 + 30: -16,-3 + 31: -16,-4 + - node: + color: '#C74EBD33' + id: MonoOverlay + decals: + 36: 5,2 + 37: 6,2 + 38: 7,2 + 39: 7,1 + 40: 7,3 + 41: 6,3 + 42: 5,3 + 43: 5,4 + 44: 6,4 + 45: 7,4 + 46: 8,3 + 47: 8,2 + 48: 8,1 + 49: 4,-2 + 50: 5,-2 + - node: + color: '#FFFFFFFF' + id: MonoOverlay + decals: + 0: -4.870145,-1.118727 + 1: -5.838895,-1.118727 + 2: -4.94827,-0.21247697 + 3: -4.932645,0.67814803 + 4: -5.85452,-0.21247697 + 5: -5.88577,0.67814803 + 6: -6.620145,0.17814803 + 7: -6.54202,-0.74372697 + 8: -6.526395,-1.024977 + 9: -7.88577,-1.040602 + 10: -7.932645,-0.11872697 + 11: -7.963895,0.31877303 + 12: -8.91702,0.22502303 + 13: -9.16702,0.22502303 + 14: -9.182645,-0.61872697 + 15: -8.63577,-0.63435197 + 16: -8.60452,-1.384352 + 17: -9.35452,-1.353102 + - node: + color: '#DE3A3AFF' + id: WarnCornerGreyscaleNE + decals: + 68: 3,2 + - node: + color: '#DE3A3AFF' + id: WarnLineGreyscaleE + decals: + 52: 9,-1 + 53: 9,-3 + 63: 9,-2 + 64: 6,-1 + 65: 6,-3 + - node: + color: '#FF0000FF' + id: WarnLineGreyscaleE + decals: + 35: -13,-3 + - node: + color: '#DE3A3AFF' + id: WarnLineGreyscaleN + decals: + 51: 2,2 + 66: -1,-3 + 70: 2,-5 + - node: + color: '#DE3A3AFF' + id: WarnLineGreyscaleS + decals: + 62: -1,-1 + 69: 2,-3 + - node: + color: '#DE3A3AFF' + id: WarnLineGreyscaleW + decals: + 54: 8,-1 + 55: 8,-3 + 60: -11,-3 + 67: -2,2 + - type: GridAtmosphere + version: 2 + data: + tiles: + 0,0: + 0: 65535 + -1,0: + 0: 65535 + 0,-1: + 0: 65535 + -1,-1: + 0: 65535 + 0,1: + 0: 65535 + 1,0: + 0: 65535 + 1,1: + 0: 4607 + 2,0: + 0: 13111 + 2,1: + 0: 51 + 1: 4 + -4,0: + 0: 65535 + -4,1: + 0: 2188 + 1: 32768 + -3,0: + 0: 65535 + -3,1: + 1: 255 + -2,0: + 0: 65535 + -2,1: + 0: 51711 + -1,1: + 0: 65535 + 0,-2: + 1: 272 + 0: 65262 + 1,-2: + 0: 65535 + 1,-1: + 0: 65535 + 1,-3: + 0: 61440 + 1: 256 + 2,-3: + 0: 29696 + 1: 32768 + 2,-2: + 1: 13107 + 2,-1: + 0: 30583 + -4,-2: + 0: 65280 + -4,-1: + 0: 65535 + -3,-2: + 0: 65532 + 1: 2 + -3,-1: + 0: 65535 + -2,-2: + 0: 65535 + -2,-1: + 0: 65535 + -1,-2: + 0: 61713 + 1: 3808 + -5,0: + 0: 61320 + 1: 102 + -5,-2: + 0: 64512 + 1: 128 + -5,-1: + 1: 26214 + 0: 34952 + -2,2: + 1: 8 + 0,-3: + 0: 32768 + 1,2: + 1: 1 + -1,-3: + 1: 4096 + -6,0: + 1: 2048 + -6,-2: + 1: 32768 + 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: 396 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-5.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - uid: 519 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,-3.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - uid: 666 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,1.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - uid: 667 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,5.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - uid: 668 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,1.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - uid: 669 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,-4.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 +- proto: AirlockExternalSyndicateLocked + entities: + - uid: 79 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -9.5,3.5 + parent: 1 + - uid: 230 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,2.5 + parent: 1 + - uid: 234 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-4.5 + parent: 1 + - uid: 421 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-5.5 + parent: 1 + - uid: 435 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,-2.5 + parent: 1 + - uid: 436 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,-0.5 + parent: 1 +- proto: AirlockMaint + entities: + - uid: 232 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,2.5 + parent: 1 +- proto: AirlockServiceLocked + entities: + - uid: 278 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -4.5,4.5 + parent: 1 +- proto: AirlockShuttleSyndicate + entities: + - uid: 431 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,-2.5 + parent: 1 + - uid: 432 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,-1.5 + parent: 1 + - uid: 434 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,-0.5 + parent: 1 +- proto: AirlockSyndicate + entities: + - uid: 41 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -11.5,-2.5 + parent: 1 + - type: DeviceLinkSource + linkedPorts: + 35: + - DoorStatus: InputA + 881: + - DoorStatus: InputB + 109: + - DoorStatus: DoorBolt + - uid: 109 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -2.5,-3.5 + parent: 1 + - type: DeviceLinkSink + links: + - 41 + - type: DeviceLinkSource + linkedPorts: + 881: + - DoorStatus: InputA + - uid: 280 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-1.5 + parent: 1 + - uid: 325 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,3.5 + parent: 1 + - uid: 326 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,3.5 + parent: 1 + - uid: 353 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,2.5 + parent: 1 + - uid: 459 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-3.5 + parent: 1 +- proto: APCBasic + entities: + - uid: 240 + components: + - type: Transform + pos: -15.5,3.5 + parent: 1 + - uid: 249 + components: + - type: Transform + pos: -10.5,-1.5 + parent: 1 + - uid: 270 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-4.5 + parent: 1 + - uid: 428 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-6.5 + parent: 1 + - uid: 681 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,3.5 + parent: 1 + - uid: 684 + components: + - type: Transform + pos: -1.5,3.5 + parent: 1 +- proto: AtmosDeviceFanTiny + entities: + - uid: 231 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,2.5 + parent: 1 + - uid: 237 + components: + - type: Transform + pos: -1.5,-4.5 + parent: 1 + - uid: 342 + components: + - type: Transform + pos: -9.5,3.5 + parent: 1 + - uid: 398 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,-1.5 + parent: 1 + - uid: 404 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-2.5 + parent: 1 + - uid: 405 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-0.5 + parent: 1 + - uid: 414 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-5.5 + parent: 1 +- proto: AtmosFixBlockerMarker + entities: + - uid: 408 + components: + - type: Transform + pos: -11.5,5.5 + parent: 1 + - uid: 788 + components: + - type: Transform + pos: -18.5,1.5 + parent: 1 + - uid: 789 + components: + - type: Transform + pos: -18.5,-3.5 + parent: 1 + - uid: 790 + components: + - type: Transform + pos: -18.5,-0.5 + parent: 1 + - uid: 791 + components: + - type: Transform + pos: -18.5,0.5 + parent: 1 + - uid: 796 + components: + - type: Transform + pos: 8.5,-4.5 + parent: 1 + - uid: 797 + components: + - type: Transform + pos: 8.5,-5.5 + parent: 1 + - uid: 798 + components: + - type: Transform + pos: 8.5,-6.5 + parent: 1 + - uid: 799 + components: + - type: Transform + pos: 8.5,-7.5 + parent: 1 + - uid: 800 + components: + - type: Transform + pos: 9.5,-4.5 + parent: 1 + - uid: 801 + components: + - type: Transform + pos: 9.5,-5.5 + parent: 1 + - uid: 802 + components: + - type: Transform + pos: -18.5,-1.5 + parent: 1 + - uid: 803 + components: + - type: Transform + pos: 9.5,-7.5 + parent: 1 + - uid: 804 + components: + - type: Transform + pos: -18.5,-2.5 + parent: 1 + - uid: 805 + components: + - type: Transform + pos: -8.5,4.5 + parent: 1 + - uid: 806 + components: + - type: Transform + pos: -2.5,-6.5 + parent: 1 + - uid: 807 + components: + - type: Transform + pos: -9.5,4.5 + parent: 1 + - uid: 808 + components: + - type: Transform + pos: -0.5,-6.5 + parent: 1 + - uid: 809 + components: + - type: Transform + pos: -10.5,4.5 + parent: 1 + - uid: 810 + components: + - type: Transform + pos: -1.5,-6.5 + parent: 1 + - uid: 811 + components: + - type: Transform + pos: -11.5,4.5 + parent: 1 + - uid: 812 + components: + - type: Transform + pos: 0.5,-6.5 + parent: 1 + - uid: 813 + components: + - type: Transform + pos: -9.5,5.5 + parent: 1 + - uid: 814 + components: + - type: Transform + pos: -10.5,5.5 + parent: 1 + - uid: 815 + components: + - type: Transform + pos: -8.5,5.5 + parent: 1 + - uid: 818 + components: + - type: Transform + pos: -17.5,1.5 + parent: 1 + - uid: 819 + components: + - type: Transform + pos: -17.5,0.5 + parent: 1 + - uid: 820 + components: + - type: Transform + pos: -17.5,-0.5 + parent: 1 + - uid: 821 + components: + - type: Transform + pos: -17.5,-1.5 + parent: 1 + - uid: 822 + components: + - type: Transform + pos: -17.5,-2.5 + parent: 1 + - uid: 823 + components: + - type: Transform + pos: -17.5,-3.5 + parent: 1 + - uid: 825 + components: + - type: Transform + pos: -2.5,-5.5 + parent: 1 + - uid: 826 + components: + - type: Transform + pos: 9.5,-6.5 + parent: 1 + - uid: 827 + components: + - type: Transform + pos: -1.5,-5.5 + parent: 1 + - uid: 829 + components: + - type: Transform + pos: -0.5,-5.5 + parent: 1 + - uid: 831 + components: + - type: Transform + pos: 0.5,-5.5 + parent: 1 + - uid: 850 + components: + - type: Transform + pos: -3.5,-8.5 + parent: 1 + - uid: 851 + components: + - type: Transform + pos: -20.5,2.5 + parent: 1 + - uid: 855 + components: + - type: Transform + pos: -12.5,7.5 + parent: 1 + - uid: 856 + components: + - type: Transform + pos: 11.5,-8.5 + parent: 1 + - uid: 861 + components: + - type: Transform + pos: -10.5,-7.5 + parent: 1 + - uid: 867 + components: + - type: Transform + pos: 4.5,-9.5 + parent: 1 + - uid: 868 + components: + - type: Transform + pos: -20.5,-4.5 + parent: 1 + - uid: 886 + components: + - type: Transform + pos: -4.5,8.5 + parent: 1 + - uid: 887 + components: + - type: Transform + pos: 10.5,4.5 + parent: 1 + - uid: 890 + components: + - type: Transform + pos: 4.5,8.5 + parent: 1 + - uid: 893 + components: + - type: Transform + pos: -16.5,-6.5 + parent: 1 +- proto: BannerSyndicate + entities: + - uid: 282 + components: + - type: Transform + pos: -6.5,-2.5 + parent: 1 + - uid: 771 + components: + - type: Transform + pos: 6.5,-1.5 + parent: 1 +- proto: Barricade + entities: + - uid: 168 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,2.5 + parent: 1 + - uid: 179 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,2.5 + parent: 1 +- proto: BarricadeDirectional + entities: + - uid: 143 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,-2.5 + parent: 1 + - uid: 167 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,2.5 + parent: 1 + - uid: 348 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,4.5 + parent: 1 +- proto: Bed + entities: + - uid: 44 + components: + - type: Transform + pos: 0.5,6.5 + parent: 1 + - uid: 296 + components: + - type: Transform + pos: -1.5,6.5 + parent: 1 + - uid: 306 + components: + - type: Transform + pos: -2.5,4.5 + parent: 1 + - uid: 309 + components: + - type: Transform + pos: -3.5,6.5 + parent: 1 + - uid: 316 + components: + - type: Transform + pos: -0.5,4.5 + parent: 1 +- proto: BedsheetSyndie + entities: + - uid: 535 + components: + - type: Transform + pos: -3.5,6.5 + parent: 1 + - uid: 536 + components: + - type: Transform + pos: -1.5,6.5 + parent: 1 + - uid: 537 + components: + - type: Transform + pos: 0.5,6.5 + parent: 1 + - uid: 538 + components: + - type: Transform + pos: -2.5,4.5 + parent: 1 + - uid: 539 + components: + - type: Transform + pos: -0.5,4.5 + parent: 1 +- proto: BenchSteelLeft + entities: + - uid: 524 + components: + - type: Transform + pos: -0.5,2.5 + parent: 1 + - type: Physics + bodyType: Static +- proto: BenchSteelMiddle + entities: + - uid: 522 + components: + - type: Transform + pos: 0.5,2.5 + parent: 1 + - type: Physics + bodyType: Static +- proto: BenchSteelRight + entities: + - uid: 523 + components: + - type: Transform + pos: 1.5,2.5 + parent: 1 + - type: Physics + bodyType: Static +- proto: Bloodpack10Lingering + entities: + - uid: 82 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.531651,-0.63730955 + parent: 1 +- proto: BoxFolderRed + entities: + - uid: 773 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.376236,-4.3159266 + parent: 1 + - uid: 832 + components: + - type: Transform + pos: 8.700711,3.3962235 + parent: 1 +- proto: CableApcExtension + entities: + - uid: 241 + components: + - type: Transform + pos: -15.5,3.5 + parent: 1 + - uid: 242 + components: + - type: Transform + pos: -15.5,2.5 + parent: 1 + - uid: 243 + components: + - type: Transform + pos: -16.5,2.5 + parent: 1 + - uid: 245 + components: + - type: Transform + pos: -17.5,1.5 + parent: 1 + - uid: 246 + components: + - type: Transform + pos: -17.5,0.5 + parent: 1 + - uid: 247 + components: + - type: Transform + pos: -17.5,-0.5 + parent: 1 + - uid: 248 + components: + - type: Transform + pos: -17.5,-1.5 + parent: 1 + - uid: 250 + components: + - type: Transform + pos: -10.5,-1.5 + parent: 1 + - uid: 251 + components: + - type: Transform + pos: -10.5,-2.5 + parent: 1 + - uid: 252 + components: + - type: Transform + pos: -11.5,-2.5 + parent: 1 + - uid: 253 + components: + - type: Transform + pos: -12.5,-2.5 + parent: 1 + - uid: 254 + components: + - type: Transform + pos: -13.5,-2.5 + parent: 1 + - uid: 255 + components: + - type: Transform + pos: -14.5,-2.5 + parent: 1 + - uid: 256 + components: + - type: Transform + pos: -9.5,-2.5 + parent: 1 + - uid: 257 + components: + - type: Transform + pos: -8.5,-2.5 + parent: 1 + - uid: 258 + components: + - type: Transform + pos: -7.5,-2.5 + parent: 1 + - uid: 259 + components: + - type: Transform + pos: -6.5,-2.5 + parent: 1 + - uid: 260 + components: + - type: Transform + pos: -5.5,-2.5 + parent: 1 + - uid: 261 + components: + - type: Transform + pos: -4.5,-2.5 + parent: 1 + - uid: 271 + components: + - type: Transform + pos: -0.5,-4.5 + parent: 1 + - uid: 272 + components: + - type: Transform + pos: -0.5,-5.5 + parent: 1 + - uid: 273 + components: + - type: Transform + pos: -1.5,-5.5 + parent: 1 + - uid: 334 + components: + - type: Transform + pos: -14.5,2.5 + parent: 1 + - uid: 335 + components: + - type: Transform + pos: -13.5,2.5 + parent: 1 + - uid: 336 + components: + - type: Transform + pos: -12.5,2.5 + parent: 1 + - uid: 337 + components: + - type: Transform + pos: -11.5,2.5 + parent: 1 + - uid: 338 + components: + - type: Transform + pos: -10.5,2.5 + parent: 1 + - uid: 339 + components: + - type: Transform + pos: -9.5,2.5 + parent: 1 + - uid: 340 + components: + - type: Transform + pos: -9.5,3.5 + parent: 1 + - uid: 341 + components: + - type: Transform + pos: -9.5,4.5 + parent: 1 + - uid: 415 + components: + - type: Transform + pos: 7.5,-6.5 + parent: 1 + - uid: 429 + components: + - type: Transform + pos: 8.5,-5.5 + parent: 1 + - uid: 430 + components: + - type: Transform + pos: 8.5,-6.5 + parent: 1 + - uid: 717 + components: + - type: Transform + pos: 4.5,3.5 + parent: 1 + - uid: 718 + components: + - type: Transform + pos: 5.5,3.5 + parent: 1 + - uid: 719 + components: + - type: Transform + pos: 6.5,3.5 + parent: 1 + - uid: 720 + components: + - type: Transform + pos: 7.5,3.5 + parent: 1 + - uid: 721 + components: + - type: Transform + pos: 7.5,2.5 + parent: 1 + - uid: 722 + components: + - type: Transform + pos: -1.5,3.5 + parent: 1 + - uid: 723 + components: + - type: Transform + pos: -1.5,2.5 + parent: 1 + - uid: 724 + components: + - type: Transform + pos: -1.5,1.5 + parent: 1 + - uid: 725 + components: + - type: Transform + pos: -1.5,0.5 + parent: 1 + - uid: 726 + components: + - type: Transform + pos: -0.5,0.5 + parent: 1 + - uid: 727 + components: + - type: Transform + pos: 0.5,0.5 + parent: 1 + - uid: 728 + components: + - type: Transform + pos: 1.5,0.5 + parent: 1 + - uid: 729 + components: + - type: Transform + pos: 2.5,0.5 + parent: 1 + - uid: 730 + components: + - type: Transform + pos: 2.5,1.5 + parent: 1 + - uid: 731 + components: + - type: Transform + pos: 2.5,2.5 + parent: 1 + - uid: 732 + components: + - type: Transform + pos: 2.5,3.5 + parent: 1 + - uid: 733 + components: + - type: Transform + pos: 2.5,4.5 + parent: 1 + - uid: 734 + components: + - type: Transform + pos: 2.5,5.5 + parent: 1 + - uid: 735 + components: + - type: Transform + pos: 1.5,5.5 + parent: 1 + - uid: 736 + components: + - type: Transform + pos: 0.5,5.5 + parent: 1 + - uid: 737 + components: + - type: Transform + pos: -0.5,5.5 + parent: 1 + - uid: 738 + components: + - type: Transform + pos: -1.5,5.5 + parent: 1 + - uid: 739 + components: + - type: Transform + pos: -2.5,5.5 + parent: 1 + - uid: 740 + components: + - type: Transform + pos: -3.5,5.5 + parent: 1 + - uid: 742 + components: + - type: Transform + pos: 6.5,-6.5 + parent: 1 + - uid: 743 + components: + - type: Transform + pos: 6.5,-5.5 + parent: 1 + - uid: 744 + components: + - type: Transform + pos: 5.5,-5.5 + parent: 1 + - uid: 745 + components: + - type: Transform + pos: 4.5,-5.5 + parent: 1 + - uid: 746 + components: + - type: Transform + pos: 3.5,-5.5 + parent: 1 + - uid: 747 + components: + - type: Transform + pos: 2.5,-5.5 + parent: 1 + - uid: 748 + components: + - type: Transform + pos: 2.5,-4.5 + parent: 1 + - uid: 749 + components: + - type: Transform + pos: 2.5,-3.5 + parent: 1 + - uid: 750 + components: + - type: Transform + pos: 2.5,-2.5 + parent: 1 + - uid: 751 + components: + - type: Transform + pos: 3.5,-2.5 + parent: 1 + - uid: 752 + components: + - type: Transform + pos: 4.5,-2.5 + parent: 1 + - uid: 753 + components: + - type: Transform + pos: 5.5,-2.5 + parent: 1 + - uid: 754 + components: + - type: Transform + pos: 6.5,-2.5 + parent: 1 + - uid: 755 + components: + - type: Transform + pos: 7.5,-2.5 + parent: 1 + - uid: 756 + components: + - type: Transform + pos: 8.5,-2.5 + parent: 1 + - uid: 757 + components: + - type: Transform + pos: 9.5,-2.5 + parent: 1 +- proto: CableApcStack1 + entities: + - uid: 885 + components: + - type: Transform + pos: -17.51392,2.4785938 + parent: 1 +- proto: CableHV + entities: + - uid: 4 + components: + - type: Transform + pos: -2.5,-3.5 + parent: 1 + - uid: 6 + components: + - type: Transform + pos: -9.5,-2.5 + parent: 1 + - uid: 31 + components: + - type: Transform + pos: -4.5,-3.5 + parent: 1 + - uid: 76 + components: + - type: Transform + pos: -3.5,-3.5 + parent: 1 + - uid: 161 + components: + - type: Transform + pos: -7.5,-1.5 + parent: 1 + - uid: 162 + components: + - type: Transform + pos: -7.5,-4.5 + parent: 1 + - uid: 163 + components: + - type: Transform + pos: -5.5,-1.5 + parent: 1 + - uid: 164 + components: + - type: Transform + pos: -6.5,-3.5 + parent: 1 + - uid: 169 + components: + - type: Transform + pos: -5.5,-3.5 + parent: 1 + - uid: 170 + components: + - type: Transform + pos: -5.5,-4.5 + parent: 1 + - uid: 171 + components: + - type: Transform + pos: -7.5,-3.5 + parent: 1 + - uid: 172 + components: + - type: Transform + pos: -7.5,-2.5 + parent: 1 + - uid: 173 + components: + - type: Transform + pos: -8.5,-3.5 + parent: 1 + - uid: 174 + components: + - type: Transform + pos: -9.5,-3.5 + parent: 1 + - uid: 178 + components: + - type: Transform + pos: -1.5,-3.5 + parent: 1 + - uid: 181 + components: + - type: Transform + pos: -5.5,-2.5 + parent: 1 + - uid: 283 + components: + - type: Transform + pos: -3.5,-2.5 + parent: 1 + - uid: 290 + components: + - type: Transform + pos: -1.5,-2.5 + parent: 1 + - uid: 426 + components: + - type: Transform + pos: 6.5,-5.5 + parent: 1 + - uid: 442 + components: + - type: Transform + pos: 4.5,-4.5 + parent: 1 + - uid: 443 + components: + - type: Transform + pos: 6.5,-6.5 + parent: 1 + - uid: 451 + components: + - type: Transform + pos: 5.5,-4.5 + parent: 1 + - uid: 452 + components: + - type: Transform + pos: 6.5,-7.5 + parent: 1 + - uid: 453 + components: + - type: Transform + pos: 6.5,-4.5 + parent: 1 + - uid: 456 + components: + - type: Transform + pos: 5.5,-6.5 + parent: 1 + - uid: 457 + components: + - type: Transform + pos: 5.5,-5.5 + parent: 1 + - uid: 460 + components: + - type: Transform + pos: 3.5,-4.5 + parent: 1 + - uid: 461 + components: + - type: Transform + pos: 2.5,-4.5 + parent: 1 + - uid: 462 + components: + - type: Transform + pos: 2.5,-3.5 + parent: 1 + - uid: 463 + components: + - type: Transform + pos: 2.5,-2.5 + parent: 1 + - uid: 464 + components: + - type: Transform + pos: 2.5,-1.5 + parent: 1 + - uid: 465 + components: + - type: Transform + pos: 2.5,-0.5 + parent: 1 + - uid: 466 + components: + - type: Transform + pos: 1.5,-0.5 + parent: 1 + - uid: 467 + components: + - type: Transform + pos: 0.5,-0.5 + parent: 1 + - uid: 468 + components: + - type: Transform + pos: -0.5,-0.5 + parent: 1 + - uid: 469 + components: + - type: Transform + pos: -1.5,-0.5 + parent: 1 +- proto: CableMV + entities: + - uid: 446 + components: + - type: Transform + pos: 3.5,-4.5 + parent: 1 + - uid: 470 + components: + - type: Transform + pos: -1.5,-0.5 + parent: 1 + - uid: 471 + components: + - type: Transform + pos: -0.5,-0.5 + parent: 1 + - uid: 472 + components: + - type: Transform + pos: -0.5,-1.5 + parent: 1 + - uid: 473 + components: + - type: Transform + pos: -0.5,-2.5 + parent: 1 + - uid: 474 + components: + - type: Transform + pos: -0.5,-3.5 + parent: 1 + - uid: 475 + components: + - type: Transform + pos: -0.5,-4.5 + parent: 1 + - uid: 476 + components: + - type: Transform + pos: -1.5,-3.5 + parent: 1 + - uid: 477 + components: + - type: Transform + pos: -2.5,-3.5 + parent: 1 + - uid: 478 + components: + - type: Transform + pos: -3.5,-3.5 + parent: 1 + - uid: 479 + components: + - type: Transform + pos: -4.5,-3.5 + parent: 1 + - uid: 480 + components: + - type: Transform + pos: -5.5,-3.5 + parent: 1 + - uid: 481 + components: + - type: Transform + pos: -6.5,-3.5 + parent: 1 + - uid: 482 + components: + - type: Transform + pos: -7.5,-3.5 + parent: 1 + - uid: 483 + components: + - type: Transform + pos: -8.5,-3.5 + parent: 1 + - uid: 484 + components: + - type: Transform + pos: -9.5,-3.5 + parent: 1 + - uid: 485 + components: + - type: Transform + pos: -10.5,-3.5 + parent: 1 + - uid: 486 + components: + - type: Transform + pos: -10.5,-2.5 + parent: 1 + - uid: 487 + components: + - type: Transform + pos: -10.5,-1.5 + parent: 1 + - uid: 489 + components: + - type: Transform + pos: 4.5,-5.5 + parent: 1 + - uid: 490 + components: + - type: Transform + pos: 5.5,-5.5 + parent: 1 + - uid: 491 + components: + - type: Transform + pos: 6.5,-5.5 + parent: 1 + - uid: 492 + components: + - type: Transform + pos: 6.5,-6.5 + parent: 1 + - uid: 493 + components: + - type: Transform + pos: 7.5,-6.5 + parent: 1 + - uid: 514 + components: + - type: Transform + pos: 3.5,-5.5 + parent: 1 + - uid: 685 + components: + - type: Transform + pos: 2.5,-4.5 + parent: 1 + - uid: 686 + components: + - type: Transform + pos: 2.5,-3.5 + parent: 1 + - uid: 687 + components: + - type: Transform + pos: 2.5,-2.5 + parent: 1 + - uid: 688 + components: + - type: Transform + pos: 2.5,-1.5 + parent: 1 + - uid: 689 + components: + - type: Transform + pos: 2.5,-0.5 + parent: 1 + - uid: 690 + components: + - type: Transform + pos: 2.5,0.5 + parent: 1 + - uid: 691 + components: + - type: Transform + pos: 2.5,1.5 + parent: 1 + - uid: 692 + components: + - type: Transform + pos: 2.5,2.5 + parent: 1 + - uid: 693 + components: + - type: Transform + pos: 2.5,2.5 + parent: 1 + - uid: 694 + components: + - type: Transform + pos: 1.5,2.5 + parent: 1 + - uid: 695 + components: + - type: Transform + pos: 0.5,2.5 + parent: 1 + - uid: 696 + components: + - type: Transform + pos: -0.5,2.5 + parent: 1 + - uid: 697 + components: + - type: Transform + pos: -1.5,2.5 + parent: 1 + - uid: 698 + components: + - type: Transform + pos: -1.5,3.5 + parent: 1 + - uid: 699 + components: + - type: Transform + pos: 3.5,2.5 + parent: 1 + - uid: 700 + components: + - type: Transform + pos: 4.5,2.5 + parent: 1 + - uid: 701 + components: + - type: Transform + pos: 4.5,3.5 + parent: 1 + - uid: 702 + components: + - type: Transform + pos: -2.5,2.5 + parent: 1 + - uid: 703 + components: + - type: Transform + pos: -3.5,2.5 + parent: 1 + - uid: 704 + components: + - type: Transform + pos: -4.5,2.5 + parent: 1 + - uid: 705 + components: + - type: Transform + pos: -5.5,2.5 + parent: 1 + - uid: 706 + components: + - type: Transform + pos: -6.5,2.5 + parent: 1 + - uid: 707 + components: + - type: Transform + pos: -7.5,2.5 + parent: 1 + - uid: 708 + components: + - type: Transform + pos: -8.5,2.5 + parent: 1 + - uid: 709 + components: + - type: Transform + pos: -9.5,2.5 + parent: 1 + - uid: 710 + components: + - type: Transform + pos: -10.5,2.5 + parent: 1 + - uid: 711 + components: + - type: Transform + pos: -11.5,2.5 + parent: 1 + - uid: 712 + components: + - type: Transform + pos: -12.5,2.5 + parent: 1 + - uid: 713 + components: + - type: Transform + pos: -13.5,2.5 + parent: 1 + - uid: 714 + components: + - type: Transform + pos: -14.5,2.5 + parent: 1 + - uid: 715 + components: + - type: Transform + pos: -15.5,2.5 + parent: 1 + - uid: 716 + components: + - type: Transform + pos: -15.5,3.5 + parent: 1 +- proto: CableTerminal + entities: + - uid: 289 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-5.5 + parent: 1 + - uid: 438 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-5.5 + parent: 1 +- proto: Catwalk + entities: + - uid: 32 + components: + - type: Transform + pos: -7.5,-2.5 + parent: 1 + - uid: 33 + components: + - type: Transform + pos: -7.5,-1.5 + parent: 1 + - uid: 34 + components: + - type: Transform + pos: -7.5,-4.5 + parent: 1 + - uid: 42 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,-2.5 + parent: 1 + - uid: 51 + components: + - type: Transform + pos: -8.5,-3.5 + parent: 1 + - uid: 53 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,-3.5 + parent: 1 + - uid: 61 + components: + - type: Transform + pos: -7.5,-3.5 + parent: 1 + - uid: 62 + components: + - type: Transform + pos: -6.5,-3.5 + parent: 1 + - uid: 92 + components: + - type: Transform + pos: -5.5,-4.5 + parent: 1 + - uid: 124 + components: + - type: Transform + pos: -5.5,-1.5 + parent: 1 + - uid: 125 + components: + - type: Transform + pos: -5.5,-2.5 + parent: 1 + - uid: 218 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,1.5 + parent: 1 + - uid: 219 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,0.5 + parent: 1 + - uid: 220 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,-0.5 + parent: 1 + - uid: 221 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,-1.5 + parent: 1 + - uid: 222 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,-2.5 + parent: 1 + - uid: 223 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,-3.5 + parent: 1 + - uid: 224 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,2.5 + parent: 1 + - uid: 225 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,2.5 + parent: 1 + - uid: 226 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,2.5 + parent: 1 + - uid: 227 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,2.5 + parent: 1 + - uid: 228 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,2.5 + parent: 1 + - uid: 229 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,2.5 + parent: 1 + - uid: 266 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-5.5 + parent: 1 + - uid: 267 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-5.5 + parent: 1 + - uid: 268 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-5.5 + parent: 1 + - uid: 269 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-5.5 + parent: 1 + - uid: 284 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-3.5 + parent: 1 + - uid: 285 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-3.5 + parent: 1 + - uid: 286 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-3.5 + parent: 1 + - uid: 287 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-2.5 + parent: 1 + - uid: 291 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-3.5 + parent: 1 + - uid: 292 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-3.5 + parent: 1 + - uid: 344 + components: + - type: Transform + pos: -11.5,4.5 + parent: 1 + - uid: 345 + components: + - type: Transform + pos: -10.5,4.5 + parent: 1 + - uid: 346 + components: + - type: Transform + pos: -9.5,4.5 + parent: 1 + - uid: 347 + components: + - type: Transform + pos: -8.5,4.5 + parent: 1 + - uid: 422 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-4.5 + parent: 1 + - uid: 423 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-5.5 + parent: 1 + - uid: 424 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-6.5 + parent: 1 + - uid: 425 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-7.5 + parent: 1 + - uid: 495 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-5.5 + parent: 1 + - uid: 496 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-5.5 + parent: 1 +- proto: Chair + entities: + - uid: 550 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,1.5 + parent: 1 + - uid: 551 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,1.5 + parent: 1 +- proto: ChairFolding + entities: + - uid: 81 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,-0.5 + parent: 1 + - uid: 83 + components: + - type: Transform + pos: -14.5,-3.5 + parent: 1 +- proto: ChairPilotSeat + entities: + - uid: 378 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,3.5 + parent: 1 + - uid: 379 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,2.5 + parent: 1 +- proto: ClothingOuterHardsuitSyndie + entities: + - uid: 23 + components: + - type: MetaData + flags: InContainer + - type: Transform + parent: 21 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingShoesBootsMagSyndie + entities: + - uid: 22 + components: + - type: MetaData + flags: InContainer + - type: Transform + parent: 21 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ComputerCrewMonitoring + entities: + - uid: 29 + components: + - type: Transform + pos: -11.5,0.5 + parent: 1 +- proto: ComputerSurveillanceCameraMonitor + entities: + - uid: 78 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,-4.5 + parent: 1 +- proto: ComputerTabletopAlert + entities: + - uid: 394 + components: + - type: Transform + pos: 7.5,3.5 + parent: 1 +- proto: ComputerTabletopCrewMonitoring + entities: + - uid: 670 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,1.5 + parent: 1 +- proto: ComputerTabletopShuttleSyndie + entities: + - uid: 383 + components: + - type: Transform + pos: 6.5,4.5 + parent: 1 +- proto: ComputerTabletopSurveillanceCameraMonitor + entities: + - uid: 391 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,2.5 + parent: 1 +- proto: CrateSurgery + entities: + - uid: 19 + components: + - type: Transform + pos: -13.5,-4.5 + parent: 1 +- proto: CrayonBlue + entities: + - uid: 160 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.807645,-0.69685197 + parent: 1 +- proto: CrayonRed + entities: + - uid: 159 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.370145,-0.71247697 + parent: 1 +- proto: Crowbar + entities: + - uid: 77 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.476197,0.5087105 + parent: 1 +- proto: DefibrillatorCabinetOpen + entities: + - uid: 70 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,-1.5 + parent: 1 +- proto: DefibrillatorEmpty + entities: + - uid: 16 + components: + - type: Transform + pos: -12.616822,-4.5850396 + parent: 1 +- proto: DisposalUnit + entities: + - uid: 191 + components: + - type: Transform + pos: -12.5,-4.5 + parent: 1 +- proto: DrinkClownBloodGlass + entities: + - uid: 197 + components: + - type: Transform + pos: -15.164893,0.33536708 + parent: 1 +- proto: DrinkMugMetal + entities: + - uid: 530 + components: + - type: Transform + pos: 1.4035671,-0.32198423 + parent: 1 + - uid: 531 + components: + - type: Transform + pos: 1.5285671,-0.5407343 + parent: 1 + - uid: 532 + components: + - type: Transform + pos: 1.7316921,-0.29073423 + parent: 1 + - uid: 533 + components: + - type: Transform + pos: 1.8723171,-0.5719843 + parent: 1 + - uid: 534 + components: + - type: Transform + pos: 1.9973171,-0.32198423 + parent: 1 +- proto: EmergencyRollerBedSpawnFolded + entities: + - uid: 774 + components: + - type: Transform + pos: -12.370616,-3.7563806 + parent: 1 + - uid: 775 + components: + - type: Transform + pos: -12.573741,-3.3501306 + parent: 1 +- proto: FaxMachineSyndie + entities: + - uid: 382 + components: + - type: Transform + pos: 7.5,4.5 + parent: 1 +- proto: FenceMetalCorner + entities: + - uid: 853 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-2.5 + parent: 1 +- proto: FenceMetalGate + entities: + - uid: 121 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-3.5 + parent: 1 + - uid: 122 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,-3.5 + parent: 1 + - uid: 207 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,-2.5 + parent: 1 +- proto: Firelock + entities: + - uid: 406 + components: + - type: Transform + pos: -2.5,2.5 + parent: 1 + - uid: 407 + components: + - type: Transform + pos: 2.5,3.5 + parent: 1 + - uid: 828 + components: + - type: Transform + pos: 3.5,3.5 + parent: 1 + - uid: 830 + components: + - type: Transform + pos: 4.5,2.5 + parent: 1 + - uid: 834 + components: + - type: Transform + pos: 7.5,-0.5 + parent: 1 + - uid: 835 + components: + - type: Transform + pos: 7.5,-2.5 + parent: 1 + - uid: 836 + components: + - type: Transform + pos: 2.5,-3.5 + parent: 1 + - uid: 837 + components: + - type: Transform + pos: 4.5,-5.5 + parent: 1 + - uid: 838 + components: + - type: Transform + pos: -0.5,-1.5 + parent: 1 + - uid: 839 + components: + - type: Transform + pos: -2.5,-3.5 + parent: 1 + - uid: 840 + components: + - type: Transform + pos: -11.5,-2.5 + parent: 1 + - uid: 841 + components: + - type: Transform + pos: -9.5,3.5 + parent: 1 + - uid: 842 + components: + - type: Transform + pos: -16.5,2.5 + parent: 1 + - uid: 843 + components: + - type: Transform + pos: -1.5,-4.5 + parent: 1 + - uid: 844 + components: + - type: Transform + pos: 7.5,-5.5 + parent: 1 +- proto: FirelockEdge + entities: + - uid: 389 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,5.5 + parent: 1 + - uid: 390 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,4.5 + parent: 1 +- proto: FoodCondimentSqueezeBottleKetchup + entities: + - uid: 52 + components: + - type: Transform + pos: -15.618385,0.50493973 + parent: 1 +- proto: FoodCondimentSqueezeBottleMustard + entities: + - uid: 63 + components: + - type: Transform + pos: -15.352761,0.53618973 + parent: 1 +- proto: FoodSnackSyndi + entities: + - uid: 540 + components: + - type: Transform + pos: 2.4867,-1.0348451 + parent: 1 + - uid: 541 + components: + - type: Transform + pos: 2.64295,-1.4567201 + parent: 1 +- proto: GasMixer + entities: + - uid: 501 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-5.5 + parent: 1 + - type: GasMixer + inletTwoConcentration: 0.79 + inletOneConcentration: 0.21 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#03FCD3FF' +- proto: GasOutletInjector + entities: + - uid: 5 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-6.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#990000FF' +- proto: GasPipeBend + entities: + - uid: 502 + components: + - type: Transform + pos: 3.5,-5.5 + parent: 1 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 566 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,2.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 571 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,2.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 577 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-3.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 613 + components: + - type: Transform + pos: 3.5,5.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 620 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 626 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-2.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 627 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 659 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-6.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' +- proto: GasPipeFourway + entities: + - uid: 558 + components: + - type: Transform + pos: 2.5,2.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 579 + components: + - type: Transform + pos: -5.5,-3.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 580 + components: + - type: Transform + pos: -7.5,-3.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 630 + components: + - type: Transform + pos: -4.5,-2.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 631 + components: + - type: Transform + pos: -8.5,-2.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' +- proto: GasPipeStraight + entities: + - uid: 9 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-6.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 542 + components: + - type: Transform + pos: -7.5,-2.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 552 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-3.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 553 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-2.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 555 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-0.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 556 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 557 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,1.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 559 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,3.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 561 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,4.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 562 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,4.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 563 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,4.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 564 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,4.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 565 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,4.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 567 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,2.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 568 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,2.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 569 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,2.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 570 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,2.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 572 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,1.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 573 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 574 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-0.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 575 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-1.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 576 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-2.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 578 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-2.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 581 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,-3.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 582 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-3.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 583 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-3.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 584 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-3.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 585 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-3.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 586 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,-3.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 587 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,-3.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 588 + components: + - type: Transform + pos: -7.5,-4.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 589 + components: + - type: Transform + pos: -5.5,-4.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 590 + components: + - type: Transform + pos: -5.5,-1.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 591 + components: + - type: Transform + pos: -7.5,-1.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 601 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-3.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 602 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-3.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 607 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,5.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 608 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,5.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 609 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,5.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 610 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,5.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 611 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,5.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 614 + components: + - type: Transform + pos: 3.5,4.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 615 + components: + - type: Transform + pos: 3.5,3.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 616 + components: + - type: Transform + pos: 3.5,2.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 617 + components: + - type: Transform + pos: 3.5,1.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 619 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 621 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 623 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,1.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 624 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,2.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 625 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,3.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 628 + components: + - type: Transform + pos: 0.5,-0.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 629 + components: + - type: Transform + pos: 0.5,-1.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 632 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,-2.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 633 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,-2.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 634 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,-2.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 635 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-2.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 636 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-2.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 637 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-2.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 638 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-2.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 639 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-2.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 640 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-2.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 641 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-2.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 642 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-1.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 643 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,-1.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 644 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,-3.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 645 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,-4.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 646 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-4.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 647 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-3.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 653 + components: + - type: Transform + pos: 5.5,-0.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 654 + components: + - type: Transform + pos: 5.5,-1.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 655 + components: + - type: Transform + pos: 5.5,-2.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 656 + components: + - type: Transform + pos: 5.5,-3.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 657 + components: + - type: Transform + pos: 5.5,-4.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 661 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,-6.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 665 + components: + - type: Transform + pos: -5.5,-2.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' +- proto: GasPipeTJunction + entities: + - uid: 554 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-1.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 560 + components: + - type: Transform + pos: 2.5,4.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 606 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 612 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,5.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 618 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 622 + components: + - type: Transform + pos: 5.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 658 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-5.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' +- proto: GasPort + entities: + - uid: 499 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-6.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 500 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-6.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#03FCD3FF' +- proto: GasPressurePump + entities: + - uid: 503 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-4.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#0055CCFF' +- proto: GasVentPump + entities: + - uid: 592 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-1.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 593 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,4.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 594 + components: + - type: Transform + pos: 5.5,3.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 595 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,4.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 596 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,-5.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 597 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-5.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 598 + components: + - type: Transform + pos: -7.5,-0.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 599 + components: + - type: Transform + pos: -5.5,-0.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 600 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,-3.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#0055CCFF' +- proto: GasVentScrubber + entities: + - uid: 494 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-5.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 603 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,5.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 604 + components: + - type: Transform + pos: 6.5,4.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 605 + components: + - type: Transform + pos: 1.5,1.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 648 + components: + - type: Transform + pos: -4.5,-0.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 649 + components: + - type: Transform + pos: -8.5,-0.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 650 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,-5.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 651 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-5.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 652 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,-2.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 664 + components: + - type: Transform + pos: 2.5,6.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#990000FF' +- proto: GeneratorBasic15kW + entities: + - uid: 60 + components: + - type: Transform + pos: 5.5,-6.5 + parent: 1 + - uid: 90 + components: + - type: Transform + pos: 6.5,-7.5 + parent: 1 + - uid: 126 + components: + - type: Transform + pos: 6.5,-6.5 + parent: 1 +- proto: GravityGeneratorMini + entities: + - uid: 680 + components: + - type: Transform + pos: 5.5,-7.5 + parent: 1 +- proto: Grille + entities: + - uid: 359 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,5.5 + parent: 1 + - uid: 360 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,5.5 + parent: 1 + - uid: 361 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,5.5 + parent: 1 + - uid: 362 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,3.5 + parent: 1 + - uid: 363 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,2.5 + parent: 1 + - uid: 364 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,1.5 + parent: 1 + - uid: 515 + components: + - type: Transform + pos: 4.5,-4.5 + parent: 1 +- proto: Gyroscope + entities: + - uid: 663 + components: + - type: Transform + pos: 5.5,4.5 + parent: 1 +- proto: HospitalCurtainsOpen + entities: + - uid: 294 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,6.5 + parent: 1 + - uid: 307 + components: + - type: Transform + pos: -0.5,4.5 + parent: 1 + - uid: 314 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,6.5 + parent: 1 + - uid: 315 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,6.5 + parent: 1 + - uid: 387 + components: + - type: Transform + pos: -2.5,4.5 + parent: 1 +- proto: Igniter + entities: + - uid: 898 + components: + - type: Transform + pos: 0.89551896,-2.250243 + parent: 1 + - type: DeviceLinkSink + links: + - 881 +- proto: InflatableWall + entities: + - uid: 180 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,2.5 + parent: 1 + - uid: 244 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,2.5 + parent: 1 +- proto: KitchenMicrowave + entities: + - uid: 528 + components: + - type: Transform + pos: 2.5,-0.5 + parent: 1 +- proto: KitchenReagentGrinder + entities: + - uid: 72 + components: + - type: Transform + pos: -15.5,-0.5 + parent: 1 +- proto: LockerMedicalFilled + entities: + - uid: 43 + components: + - type: Transform + pos: -15.5,-2.5 + parent: 1 +- proto: LockerSyndicatePersonal + entities: + - uid: 317 + components: + - type: Transform + pos: -1.5,4.5 + parent: 1 + - uid: 386 + components: + - type: Transform + pos: 1.5,6.5 + parent: 1 + - uid: 388 + components: + - type: Transform + pos: 0.5,4.5 + parent: 1 +- proto: LockerSyndicatePersonalFilled + entities: + - uid: 2 + components: + - type: Transform + pos: -15.5,-3.5 + parent: 1 + - uid: 384 + components: + - type: Transform + pos: -2.5,6.5 + parent: 1 +- proto: LogicGate + entities: + - uid: 35 + components: + - type: Transform + anchored: True + pos: -10.5,-5.5 + parent: 1 + - type: DeviceLinkSink + links: + - 41 + - type: DeviceLinkSource + linkedPorts: + 166: + - Output: Open + 157: + - Output: Open + 158: + - Output: Open + 165: + - Output: Open + 155: + - Output: Open + - type: Physics + canCollide: False + bodyType: Static + - uid: 881 + components: + - type: Transform + anchored: True + pos: 0.5,-3.5 + parent: 1 + - type: DeviceLinkSink + links: + - 109 + - 41 + - type: DeviceLinkSource + linkedPorts: + 898: + - Output: Trigger + - type: Physics + canCollide: False + bodyType: Static +- proto: Mattress + entities: + - uid: 117 + components: + - type: Transform + pos: -4.5,-0.5 + parent: 1 + - uid: 118 + components: + - type: Transform + pos: -8.5,-0.5 + parent: 1 +- proto: N14ContrabandCrateSpawner + entities: + - uid: 10 + components: + - type: Transform + pos: -0.5,6.5 + parent: 1 + - uid: 30 + components: + - type: Transform + pos: 6.5,-5.5 + parent: 1 + - uid: 784 + components: + - type: Transform + pos: -6.5,4.5 + parent: 1 + - uid: 785 + components: + - type: Transform + pos: -4.5,2.5 + parent: 1 +- proto: NitrogenCanister + entities: + - uid: 505 + components: + - type: Transform + anchored: True + pos: 3.5,-6.5 + parent: 1 + - type: Physics + bodyType: Static + - type: AtmosDevice + joinedGrid: 1 +- proto: OperatingTable + entities: + - uid: 7 + components: + - type: Transform + pos: -13.5,-1.5 + parent: 1 +- proto: OrganHumanBrain + entities: + - uid: 104 + components: + - type: Transform + pos: -13.309703,-4.647928 + parent: 1 + - uid: 106 + components: + - type: Transform + pos: -12.762828,-4.569803 + parent: 1 + - uid: 107 + components: + - type: Transform + pos: -12.528453,-4.257303 + parent: 1 + - uid: 112 + components: + - type: Transform + pos: -12.965953,-4.772928 + parent: 1 + - uid: 113 + components: + - type: Transform + pos: -12.981578,-4.522928 + parent: 1 +- proto: OxygenCanister + entities: + - uid: 504 + components: + - type: Transform + anchored: True + pos: 2.5,-6.5 + parent: 1 + - type: Physics + bodyType: Static + - type: AtmosDevice + joinedGrid: 1 +- proto: PlasmaCanister + entities: + - uid: 135 + components: + - type: Transform + pos: 0.5,-2.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 +- proto: PlastitaniumWindowIndestructible + entities: + - uid: 45 + components: + - type: Transform + pos: 9.5,1.5 + parent: 1 + - uid: 54 + components: + - type: Transform + pos: 9.5,2.5 + parent: 1 + - uid: 55 + components: + - type: Transform + pos: 9.5,3.5 + parent: 1 + - uid: 56 + components: + - type: Transform + pos: 7.5,5.5 + parent: 1 + - uid: 59 + components: + - type: Transform + pos: 6.5,5.5 + parent: 1 + - uid: 80 + components: + - type: Transform + pos: 5.5,5.5 + parent: 1 +- proto: PortableGeneratorPacman + entities: + - uid: 439 + components: + - type: Transform + anchored: True + pos: -1.5,-2.5 + parent: 1 + - type: MaterialStorage + storage: + Plasma: 3000 + - type: Physics + bodyType: Static + - type: InsertingMaterialStorage +- proto: PowerCellRecharger + entities: + - uid: 38 + components: + - type: Transform + pos: 8.5,3.5 + parent: 1 +- proto: PoweredlightColoredBlack + entities: + - uid: 184 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -0.5,-5.5 + parent: 1 + - uid: 349 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-6.5 + parent: 1 + - uid: 371 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -6.5,2.5 + parent: 1 + - uid: 375 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -12.5,2.5 + parent: 1 + - uid: 393 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,-1.5 + parent: 1 + - uid: 441 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,4.5 + parent: 1 + - uid: 678 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,-1.5 + parent: 1 + - uid: 682 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,5.5 + parent: 1 + - uid: 683 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,5.5 + parent: 1 + - uid: 741 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,4.5 + parent: 1 +- proto: PoweredlightColoredRed + entities: + - uid: 671 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,2.5 + parent: 1 + - uid: 672 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-1.5 + parent: 1 + - uid: 673 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,0.5 + parent: 1 + - uid: 674 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-2.5 + parent: 1 + - uid: 675 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-5.5 + parent: 1 + - uid: 676 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-3.5 + parent: 1 + - uid: 677 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,-3.5 + parent: 1 +- proto: PoweredlightLED + entities: + - uid: 133 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-0.5 + parent: 1 + - uid: 142 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,-0.5 + parent: 1 +- proto: RailingCorner + entities: + - uid: 862 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,-7.5 + parent: 1 +- proto: RailingRound + entities: + - uid: 847 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,-4.5 + parent: 1 + - uid: 848 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,-8.5 + parent: 1 + - uid: 849 + components: + - type: Transform + pos: 4.5,-9.5 + parent: 1 + - uid: 854 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,7.5 + parent: 1 + - uid: 858 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,8.5 + parent: 1 + - uid: 859 + components: + - type: Transform + pos: -3.5,-8.5 + parent: 1 + - uid: 863 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,2.5 + parent: 1 + - uid: 869 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,4.5 + parent: 1 + - uid: 888 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,8.5 + parent: 1 + - uid: 891 + components: + - type: Transform + pos: -16.5,-6.5 + parent: 1 +- proto: RandomFoodMeal + entities: + - uid: 766 + components: + - type: Transform + pos: 1.5,1.5 + parent: 1 + - uid: 767 + components: + - type: Transform + pos: 0.5,1.5 + parent: 1 + - uid: 768 + components: + - type: Transform + pos: -0.5,1.5 + parent: 1 + - uid: 769 + components: + - type: Transform + pos: 2.5,-1.5 + parent: 1 +- proto: RandomPosterContraband + entities: + - uid: 507 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,7.5 + parent: 1 + - uid: 760 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,7.5 + parent: 1 + - uid: 761 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,3.5 + parent: 1 + - uid: 762 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-1.5 + parent: 1 + - uid: 763 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-4.5 + parent: 1 + - uid: 764 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,-2.5 + parent: 1 + - uid: 765 + components: + - type: Transform + pos: -13.5,1.5 + parent: 1 +- proto: RandomSecurityCorpseSpawner + entities: + - uid: 795 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,-1.5 + parent: 1 +- proto: ReinforcedPlasmaWindow + entities: + - uid: 516 + components: + - type: Transform + pos: 4.5,-4.5 + parent: 1 +- proto: Retractor + entities: + - uid: 66 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.694208,0.54949987 + parent: 1 + - uid: 73 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.459833,0.51824987 + parent: 1 +- proto: Saw + entities: + - uid: 185 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.856578,0.5551965 + parent: 1 +- proto: SawAdvanced + entities: + - uid: 794 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.422024,0.56149024 + parent: 1 +- proto: SawImprov + entities: + - uid: 48 + components: + - type: Transform + pos: -13.577937,0.4629314 + parent: 1 +- proto: Scalpel + entities: + - uid: 39 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.225458,0.53387487 + parent: 1 +- proto: Screwdriver + entities: + - uid: 74 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.210572,0.5087105 + parent: 1 +- proto: ShuttersNormal + entities: + - uid: 11 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,1.5 + parent: 1 + - type: DeviceLinkSink + links: + - 27 + - uid: 12 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,2.5 + parent: 1 + - type: DeviceLinkSink + links: + - 27 + - uid: 13 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,3.5 + parent: 1 + - type: DeviceLinkSink + links: + - 27 + - uid: 14 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,5.5 + parent: 1 + - type: DeviceLinkSink + links: + - 27 + - uid: 15 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,5.5 + parent: 1 + - type: DeviceLinkSink + links: + - 27 + - uid: 18 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,5.5 + parent: 1 + - type: DeviceLinkSink + links: + - 27 + - uid: 155 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -10.5,-4.5 + parent: 1 + - type: DeviceLinkSink + links: + - 35 + - uid: 157 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -5.5,-1.5 + parent: 1 + - type: DeviceLinkSink + links: + - 71 + - 101 + - 35 + - uid: 158 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -7.5,-4.5 + parent: 1 + - type: DeviceLinkSink + links: + - 71 + - 101 + - 35 + - uid: 165 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -5.5,-4.5 + parent: 1 + - type: DeviceLinkSink + links: + - 71 + - 101 + - 35 + - uid: 166 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -7.5,-1.5 + parent: 1 + - type: DeviceLinkSink + links: + - 71 + - 101 + - 35 +- proto: ShuttersRadiationOpen + entities: + - uid: 488 + components: + - type: Transform + pos: 4.5,-5.5 + parent: 1 + - type: DeviceLinkSink + links: + - 759 +- proto: SignalButton + entities: + - uid: 27 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,1.5 + parent: 1 + - type: DeviceLinkSource + linkedPorts: + 18: + - Pressed: Toggle + 15: + - Pressed: Toggle + 14: + - Pressed: Toggle + 13: + - Pressed: Toggle + 12: + - Pressed: Toggle + 11: + - Pressed: Toggle + - uid: 69 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-4.5 + parent: 1 + - uid: 71 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,-4.5 + parent: 1 + - type: DeviceLinkSource + linkedPorts: + 158: + - Pressed: Toggle + 165: + - Pressed: Toggle + 157: + - Pressed: Toggle + 166: + - Pressed: Toggle + - uid: 101 + components: + - type: Transform + pos: -8.5,-1.5 + parent: 1 + - type: DeviceLinkSource + linkedPorts: + 166: + - Pressed: Toggle + 157: + - Pressed: Toggle + 158: + - Pressed: Toggle + 165: + - Pressed: Toggle + - uid: 114 + components: + - type: Transform + pos: -4.5,-1.5 + parent: 1 + - uid: 759 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-4.5 + parent: 1 + - type: DeviceLinkSource + linkedPorts: + 488: + - Pressed: Toggle +- proto: SignBiohazardMed + entities: + - uid: 510 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-2.5 + parent: 1 +- proto: SignBridge + entities: + - uid: 91 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,1.5 + parent: 1 +- proto: SignDirectionalDorms + entities: + - uid: 100 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,3.5 + parent: 1 +- proto: SignDirectionalEng + entities: + - uid: 511 + components: + - type: Transform + pos: 3.5,-3.5 + parent: 1 +- proto: SignDirectionalMed + entities: + - uid: 509 + components: + - type: Transform + pos: 0.5,-1.5 + parent: 1 +- proto: SignElectricalMed + entities: + - uid: 512 + components: + - type: Transform + pos: 7.5,-4.5 + parent: 1 +- proto: SignRadiationMed + entities: + - uid: 513 + components: + - type: Transform + pos: 4.5,-6.5 + parent: 1 +- proto: SinkStemless + entities: + - uid: 311 + components: + - type: Transform + pos: -5.5,4.5 + parent: 1 +- proto: SMESBasic + entities: + - uid: 445 + components: + - type: Transform + pos: 6.5,-4.5 + parent: 1 + - uid: 454 + components: + - type: Transform + pos: 5.5,-4.5 + parent: 1 +- proto: SpaceCash10000 + entities: + - uid: 277 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.329699,-0.32579374 + parent: 1 + - uid: 343 + components: + - type: Transform + pos: -15.298449,-0.21641874 + parent: 1 + - uid: 776 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5020578,1.4059272 + parent: 1 + - uid: 871 + components: + - type: Transform + pos: 8.370866,3.1107614 + parent: 1 + - uid: 873 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5446186,6.2740526 + parent: 1 + - uid: 875 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.963622,-6.613129 + parent: 1 + - uid: 877 + components: + - type: Transform + pos: 8.323991,3.2826364 + parent: 1 + - uid: 878 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.6270578,1.6246772 + parent: 1 + - uid: 879 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.4608125,1.5170114 + parent: 1 +- proto: SpaceCash5000 + entities: + - uid: 872 + components: + - type: Transform + pos: -1.4448197,6.456311 + parent: 1 + - uid: 874 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.249184,3.093674 + parent: 1 + - uid: 876 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.0560155,-6.427967 + parent: 1 + - uid: 880 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.553066,-0.10241544 + parent: 1 +- proto: SpawnMobCleanBot + entities: + - uid: 895 + components: + - type: Transform + pos: 2.5,1.5 + parent: 1 + - uid: 896 + components: + - type: Transform + pos: -6.5,-3.5 + parent: 1 + - uid: 897 + components: + - type: Transform + pos: -13.5,-2.5 + parent: 1 +- proto: SpawnMobExperimentationVictim + entities: + - uid: 58 + components: + - type: Transform + pos: -8.5,-6.5 + parent: 1 + - uid: 67 + components: + - type: Transform + pos: -4.5,0.5 + parent: 1 + - uid: 146 + components: + - type: Transform + pos: -4.5,-6.5 + parent: 1 + - uid: 156 + components: + - type: Transform + pos: -8.5,0.5 + parent: 1 +- proto: SpawnMobSyndicateNavalCaptain + entities: + - uid: 777 + components: + - type: Transform + pos: 6.5,3.5 + parent: 1 +- proto: SpawnMobSyndicateNavalEngineer + entities: + - uid: 779 + components: + - type: Transform + pos: 5.5,-5.5 + parent: 1 +- proto: SpawnMobSyndicateNavalGrenadier + entities: + - uid: 26 + components: + - type: Transform + pos: -5.5,4.5 + parent: 1 +- proto: SpawnMobSyndicateNavalMedic + entities: + - uid: 772 + components: + - type: Transform + pos: -1.5,1.5 + parent: 1 + - uid: 792 + components: + - type: Transform + pos: -14.5,-1.5 + parent: 1 + - uid: 793 + components: + - type: Transform + pos: -12.5,-0.5 + parent: 1 +- proto: SpawnMobSyndicateNavalOperator + entities: + - uid: 28 + components: + - type: Transform + pos: 0.5,2.5 + parent: 1 + - uid: 782 + components: + - type: Transform + pos: 1.5,2.5 + parent: 1 + - uid: 787 + components: + - type: Transform + pos: -2.5,5.5 + parent: 1 +- proto: SpawnMobSyndicateNavalSaboteur + entities: + - uid: 870 + components: + - type: Transform + pos: -0.5,5.5 + parent: 1 +- proto: SpawnMobSyndicateNavalSecondOfficer + entities: + - uid: 778 + components: + - type: Transform + pos: 7.5,2.5 + parent: 1 +- proto: Spoon + entities: + - uid: 86 + components: + - type: Transform + pos: -14.006708,0.48699987 + parent: 1 +- proto: SubstationBasic + entities: + - uid: 65 + components: + - type: Transform + pos: 3.5,-4.5 + parent: 1 + - uid: 455 + components: + - type: Transform + pos: -1.5,-0.5 + parent: 1 +- proto: SuitStorageBase + entities: + - uid: 21 + components: + - type: Transform + pos: 5.5,3.5 + parent: 1 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 22 + - 23 +- proto: SuitStorageEVASyndicate + entities: + - uid: 40 + components: + - type: Transform + pos: 7.5,1.5 + parent: 1 + - uid: 319 + components: + - type: Transform + pos: 2.5,6.5 + parent: 1 + - uid: 403 + components: + - type: Transform + pos: 3.5,6.5 + parent: 1 +- proto: SurveillanceCameraMedical + entities: + - uid: 87 + components: + - type: Transform + pos: -7.5,-6.5 + parent: 1 + - uid: 147 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,0.5 + parent: 1 + - uid: 153 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,0.5 + parent: 1 + - uid: 154 + components: + - type: Transform + pos: -5.5,-6.5 + parent: 1 +- proto: SurveillanceCameraRouterMedical + entities: + - uid: 20 + components: + - type: Transform + pos: -15.5,-4.5 + parent: 1 +- proto: Table + entities: + - uid: 392 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,1.5 + parent: 1 + - uid: 520 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,1.5 + parent: 1 + - uid: 521 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,1.5 + parent: 1 +- proto: TableCounterMetal + entities: + - uid: 525 + components: + - type: Transform + pos: 1.5,-0.5 + parent: 1 + - uid: 526 + components: + - type: Transform + pos: 2.5,-0.5 + parent: 1 + - uid: 527 + components: + - type: Transform + pos: 2.5,-1.5 + parent: 1 +- proto: TableReinforced + entities: + - uid: 372 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,4.5 + parent: 1 + - uid: 373 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,4.5 + parent: 1 + - uid: 374 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,3.5 + parent: 1 + - uid: 376 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,2.5 + parent: 1 + - uid: 377 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,1.5 + parent: 1 + - uid: 679 + components: + - type: Transform + pos: 8.5,3.5 + parent: 1 +- proto: TableReinforcedGlass + entities: + - uid: 105 + components: + - type: Transform + pos: -12.5,0.5 + parent: 1 + - uid: 190 + components: + - type: Transform + pos: -14.5,0.5 + parent: 1 + - uid: 192 + components: + - type: Transform + pos: -15.5,-0.5 + parent: 1 + - uid: 193 + components: + - type: Transform + pos: -15.5,0.5 + parent: 1 + - uid: 194 + components: + - type: Transform + pos: -13.5,0.5 + parent: 1 +- proto: Thruster + entities: + - uid: 199 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-6.5 + parent: 1 + - uid: 212 + components: + - type: Transform + pos: -8.5,5.5 + parent: 1 + - uid: 213 + components: + - type: Transform + pos: -9.5,5.5 + parent: 1 + - uid: 214 + components: + - type: Transform + pos: -10.5,5.5 + parent: 1 + - uid: 215 + components: + - type: Transform + pos: -11.5,5.5 + parent: 1 + - uid: 216 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,1.5 + parent: 1 + - uid: 217 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,0.5 + parent: 1 + - uid: 262 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,-0.5 + parent: 1 + - uid: 263 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,-1.5 + parent: 1 + - uid: 264 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,-2.5 + parent: 1 + - uid: 265 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,-3.5 + parent: 1 + - uid: 331 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-6.5 + parent: 1 + - uid: 332 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-6.5 + parent: 1 + - uid: 333 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-6.5 + parent: 1 + - uid: 402 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-6.5 + parent: 1 + - uid: 816 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-7.5 + parent: 1 + - uid: 817 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-5.5 + parent: 1 + - uid: 824 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-4.5 + parent: 1 +- proto: ToiletDirtyWater + entities: + - uid: 293 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,4.5 + parent: 1 +- proto: VendingMachineMedical + entities: + - uid: 47 + components: + - type: Transform + pos: -15.5,-1.5 + parent: 1 +- proto: VendingMachineSyndieContraband + entities: + - uid: 758 + components: + - type: Transform + pos: 4.5,0.5 + parent: 1 +- proto: VendingMachineSyndieDrobe + entities: + - uid: 506 + components: + - type: Transform + pos: 5.5,0.5 + parent: 1 +- proto: WallInvisibleShip + entities: + - uid: 3 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,1.5 + parent: 1 + - uid: 24 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,1.5 + parent: 1 + - uid: 37 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,1.5 + parent: 1 +- proto: WallPlastitaniumIndestructible + entities: + - uid: 84 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -16.5,-3.5 + parent: 1 + - uid: 85 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -16.5,3.5 + parent: 1 + - uid: 88 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -17.5,3.5 + parent: 1 + - uid: 89 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -11.5,3.5 + parent: 1 + - uid: 93 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -15.5,1.5 + parent: 1 + - uid: 94 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -16.5,1.5 + parent: 1 + - uid: 95 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -12.5,1.5 + parent: 1 + - uid: 96 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -14.5,1.5 + parent: 1 + - uid: 97 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -4.5,-7.5 + parent: 1 + - uid: 98 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -3.5,-5.5 + parent: 1 + - uid: 99 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -15.5,3.5 + parent: 1 + - uid: 102 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -18.5,3.5 + parent: 1 + - uid: 103 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -18.5,2.5 + parent: 1 + - uid: 108 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -13.5,-5.5 + parent: 1 + - uid: 110 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -12.5,-5.5 + parent: 1 + - uid: 111 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -13.5,1.5 + parent: 1 + - uid: 115 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -14.5,-5.5 + parent: 1 + - uid: 116 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -11.5,1.5 + parent: 1 + - uid: 120 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -16.5,-4.5 + parent: 1 + - uid: 123 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -12.5,3.5 + parent: 1 + - uid: 129 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -14.5,3.5 + parent: 1 + - uid: 130 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -16.5,-0.5 + parent: 1 + - uid: 131 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -16.5,-2.5 + parent: 1 + - uid: 132 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -2.5,-4.5 + parent: 1 + - uid: 136 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -13.5,3.5 + parent: 1 + - uid: 137 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -16.5,-1.5 + parent: 1 + - uid: 138 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -16.5,0.5 + parent: 1 + - uid: 139 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -5.5,5.5 + parent: 1 + - uid: 140 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 4.5,-8.5 + parent: 1 + - uid: 141 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -3.5,-4.5 + parent: 1 + - uid: 145 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -6.5,-7.5 + parent: 1 + - uid: 176 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -9.5,-6.5 + parent: 1 + - uid: 177 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -9.5,-7.5 + parent: 1 + - uid: 182 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -7.5,-7.5 + parent: 1 + - uid: 183 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -8.5,-7.5 + parent: 1 + - uid: 186 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -3.5,-7.5 + parent: 1 + - uid: 187 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -3.5,-6.5 + parent: 1 + - uid: 188 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -5.5,-7.5 + parent: 1 + - uid: 189 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -7.5,5.5 + parent: 1 + - uid: 195 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -6.5,5.5 + parent: 1 + - uid: 196 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -15.5,-5.5 + parent: 1 + - uid: 198 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -16.5,-5.5 + parent: 1 + - uid: 200 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -10.5,-6.5 + parent: 1 + - uid: 201 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -11.5,-6.5 + parent: 1 + - uid: 202 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -11.5,-5.5 + parent: 1 + - uid: 203 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -10.5,1.5 + parent: 1 + - uid: 204 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -10.5,3.5 + parent: 1 + - uid: 205 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -8.5,3.5 + parent: 1 + - uid: 206 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -7.5,3.5 + parent: 1 + - uid: 208 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -17.5,-4.5 + parent: 1 + - uid: 209 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -18.5,-4.5 + parent: 1 + - uid: 210 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -19.5,2.5 + parent: 1 + - uid: 211 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -19.5,-4.5 + parent: 1 + - uid: 233 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 1.5,-5.5 + parent: 1 + - uid: 235 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 1.5,-6.5 + parent: 1 + - uid: 236 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -0.5,-4.5 + parent: 1 + - uid: 238 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 0.5,-4.5 + parent: 1 + - uid: 239 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 1.5,-4.5 + parent: 1 + - uid: 274 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -4.5,6.5 + parent: 1 + - uid: 275 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -4.5,7.5 + parent: 1 + - uid: 276 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -3.5,7.5 + parent: 1 + - uid: 281 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -2.5,7.5 + parent: 1 + - uid: 295 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -1.5,7.5 + parent: 1 + - uid: 297 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -0.5,7.5 + parent: 1 + - uid: 298 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -7.5,4.5 + parent: 1 + - uid: 299 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -4.5,5.5 + parent: 1 + - uid: 300 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 0.5,7.5 + parent: 1 + - uid: 301 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 1.5,7.5 + parent: 1 + - uid: 302 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 2.5,7.5 + parent: 1 + - uid: 303 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 4.5,6.5 + parent: 1 + - uid: 304 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 4.5,5.5 + parent: 1 + - uid: 305 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 4.5,7.5 + parent: 1 + - uid: 308 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 3.5,7.5 + parent: 1 + - uid: 310 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -12.5,4.5 + parent: 1 + - uid: 312 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -12.5,5.5 + parent: 1 + - uid: 313 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 8.5,5.5 + parent: 1 + - uid: 318 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 8.5,4.5 + parent: 1 + - uid: 320 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 9.5,4.5 + parent: 1 + - uid: 321 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 9.5,0.5 + parent: 1 + - uid: 323 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 8.5,0.5 + parent: 1 + - uid: 324 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 7.5,0.5 + parent: 1 + - uid: 327 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 10.5,0.5 + parent: 1 + - uid: 328 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 10.5,-3.5 + parent: 1 + - uid: 329 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 7.5,-1.5 + parent: 1 + - uid: 330 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 8.5,-3.5 + parent: 1 + - uid: 350 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 9.5,-3.5 + parent: 1 + - uid: 351 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 9.5,-8.5 + parent: 1 + - uid: 352 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 8.5,-8.5 + parent: 1 + - uid: 354 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 7.5,-8.5 + parent: 1 + - uid: 355 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 7.5,-7.5 + parent: 1 + - uid: 356 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 7.5,-6.5 + parent: 1 + - uid: 357 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 7.5,-3.5 + parent: 1 + - uid: 358 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 2.5,-7.5 + parent: 1 + - uid: 365 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 1.5,-7.5 + parent: 1 + - uid: 366 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 4.5,-7.5 + parent: 1 + - uid: 367 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 7.5,-4.5 + parent: 1 + - uid: 368 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 5.5,-8.5 + parent: 1 + - uid: 369 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 6.5,-8.5 + parent: 1 + - uid: 370 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 3.5,-7.5 + parent: 1 + - uid: 437 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -6.5,3.5 + parent: 1 + - uid: 440 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -5.5,3.5 + parent: 1 + - uid: 444 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -4.5,3.5 + parent: 1 + - uid: 786 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 10.5,-8.5 + parent: 1 + - uid: 833 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -7.5,6.5 + parent: 1 + - uid: 845 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -12.5,6.5 + parent: 1 +- proto: WallReinforced + entities: + - uid: 380 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -6.5,-5.5 + parent: 1 + - uid: 381 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -6.5,-4.5 + parent: 1 + - uid: 385 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -11.5,-1.5 + parent: 1 + - uid: 395 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -11.5,-3.5 + parent: 1 + - uid: 397 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -8.5,-4.5 + parent: 1 + - uid: 399 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -10.5,-1.5 + parent: 1 + - uid: 400 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -10.5,-0.5 + parent: 1 + - uid: 401 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -4.5,-4.5 + parent: 1 + - uid: 409 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -6.5,-6.5 + parent: 1 + - uid: 410 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -2.5,0.5 + parent: 1 + - uid: 411 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -2.5,1.5 + parent: 1 + - uid: 412 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -2.5,-2.5 + parent: 1 + - uid: 413 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -2.5,-1.5 + parent: 1 + - uid: 416 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -2.5,-0.5 + parent: 1 + - uid: 417 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -9.5,-5.5 + parent: 1 + - uid: 418 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-6.5 + parent: 1 + - uid: 419 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -9.5,-4.5 + parent: 1 + - uid: 420 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -11.5,-4.5 + parent: 1 + - uid: 427 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -10.5,0.5 + parent: 1 + - uid: 447 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -3.5,3.5 + parent: 1 + - uid: 448 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -2.5,3.5 + parent: 1 + - uid: 449 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 1.5,-3.5 + parent: 1 + - uid: 450 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 1.5,-2.5 + parent: 1 + - uid: 458 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 1.5,-1.5 + parent: 1 + - uid: 498 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -1.5,-1.5 + parent: 1 + - uid: 508 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 1.5,3.5 + parent: 1 + - uid: 517 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -1.5,3.5 + parent: 1 + - uid: 518 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -0.5,3.5 + parent: 1 + - uid: 543 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 0.5,3.5 + parent: 1 + - uid: 544 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 4.5,3.5 + parent: 1 + - uid: 545 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 4.5,4.5 + parent: 1 + - uid: 546 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 5.5,1.5 + parent: 1 + - uid: 547 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 4.5,1.5 + parent: 1 + - uid: 548 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 6.5,1.5 + parent: 1 + - uid: 549 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 6.5,0.5 + parent: 1 + - uid: 660 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 6.5,-3.5 + parent: 1 + - uid: 662 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 5.5,-3.5 + parent: 1 + - uid: 770 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 4.5,-3.5 + parent: 1 + - uid: 780 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 0.5,-1.5 + parent: 1 + - uid: 781 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 3.5,-3.5 + parent: 1 +- proto: WallSilver + entities: + - uid: 8 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,1.5 + parent: 1 + - uid: 25 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,0.5 + parent: 1 + - uid: 36 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,0.5 + parent: 1 + - uid: 46 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,-1.5 + parent: 1 + - uid: 49 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-1.5 + parent: 1 + - uid: 50 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,1.5 + parent: 1 + - uid: 57 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,1.5 + parent: 1 + - uid: 64 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,-0.5 + parent: 1 + - uid: 68 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-1.5 + parent: 1 + - uid: 127 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,1.5 + parent: 1 + - uid: 128 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-0.5 + parent: 1 + - uid: 134 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,1.5 + parent: 1 + - uid: 144 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,1.5 + parent: 1 + - uid: 148 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,1.5 + parent: 1 + - uid: 149 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,0.5 + parent: 1 + - uid: 150 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,-0.5 + parent: 1 + - uid: 151 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,-1.5 + parent: 1 + - uid: 152 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,-1.5 + parent: 1 +- proto: WarningN2 + entities: + - uid: 497 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-7.5 + parent: 1 +- proto: WarningO2 + entities: + - uid: 119 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-7.5 + parent: 1 +- proto: WarpPointShip + entities: + - uid: 894 + components: + - type: MetaData + name: Intercepted Syndicate Ship + - type: Transform + pos: -0.5,0.5 + parent: 1 +- proto: WaterCooler + entities: + - uid: 529 + components: + - type: Transform + pos: 0.5,-0.5 + parent: 1 +- proto: WeaponTurretSyndicate + entities: + - uid: 175 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,-5.5 + parent: 1 + - uid: 279 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-3.5 + parent: 1 + - uid: 288 + components: + - type: Transform + pos: 10.5,4.5 + parent: 1 + - uid: 433 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-1.5 + parent: 1 + - uid: 783 + components: + - type: Transform + pos: -3.5,2.5 + parent: 1 + - uid: 846 + components: + - type: Transform + pos: -3.5,-8.5 + parent: 1 + - uid: 852 + components: + - type: Transform + pos: -10.5,-7.5 + parent: 1 + - uid: 857 + components: + - type: Transform + pos: -20.5,-4.5 + parent: 1 + - uid: 860 + components: + - type: Transform + pos: 4.5,-9.5 + parent: 1 + - uid: 864 + components: + - type: Transform + pos: -4.5,8.5 + parent: 1 + - uid: 865 + components: + - type: Transform + pos: 11.5,-8.5 + parent: 1 + - uid: 866 + components: + - type: Transform + pos: -20.5,2.5 + parent: 1 + - uid: 882 + components: + - type: Transform + pos: -12.5,7.5 + parent: 1 + - uid: 889 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,8.5 + parent: 1 + - uid: 892 + components: + - type: Transform + pos: -16.5,-6.5 + parent: 1 +- proto: WindoorSecure + entities: + - uid: 883 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-5.5 + parent: 1 + - uid: 884 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-5.5 + parent: 1 +- proto: WindowReinforcedDirectional + entities: + - uid: 322 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,6.5 + parent: 1 +- proto: Wirecutter + entities: + - uid: 17 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.491822,0.5243355 + parent: 1 +- proto: Wrench + entities: + - uid: 75 + components: + - type: Transform + pos: -14.851197,0.4930855 + parent: 1 +... diff --git a/Resources/Maps/_NF/Bluespace/wizardprobealt.yml b/Resources/Maps/_NF/Bluespace/wizardprobealt.yml new file mode 100644 index 00000000000..6ded9ede7a2 --- /dev/null +++ b/Resources/Maps/_NF/Bluespace/wizardprobealt.yml @@ -0,0 +1,6282 @@ +meta: + format: 6 + postmapinit: false +tilemap: + 0: Space + 46: FloorGlass + 119: FloorWood + 120: FloorWoodTile + 122: Plating +entities: +- proto: "" + entities: + - uid: 1 + components: + - type: MetaData + name: Wizard Federation Probe + - type: Transform + pos: -0.5,-0.50708264 + parent: invalid + - type: MapGrid + chunks: + 0,0: + ind: 0,0 + tiles: eAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAegAAAAAAAAAAAAAAAAAAAAAALgAAAAAALgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAegAAAAAAegAAAAAAegAAAAAALgAAAAAALgAAAAAALgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAALgAAAAAALgAAAAAALgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALgAAAAAALgAAAAAALgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALgAAAAAALgAAAAAALgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALgAAAAAALgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALgAAAAAALgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALgAAAAAALgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,0: + ind: -1,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALgAAAAAALgAAAAAAAAAAAAAAAAAAAAAAegAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALgAAAAAALgAAAAAALgAAAAAAegAAAAAAegAAAAAAegAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALgAAAAAALgAAAAAALgAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALgAAAAAALgAAAAAALgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALgAAAAAALgAAAAAALgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALgAAAAAALgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALgAAAAAALgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,-1: + ind: -1,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALgAAAAAAegAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALgAAAAAAegAAAAAAegAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAeAAAAAAAeAAAAAAAeAAAAAAA + version: 6 + 0,-1: + ind: 0,-1 + tiles: eAAAAAAAeAAAAAAAeAAAAAAAegAAAAAAegAAAAAALgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAdwAAAAAAeAAAAAAAegAAAAAALgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAegAAAAAAegAAAAAAeAAAAAAAeAAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAegAAAAAALgAAAAAAegAAAAAAeAAAAAAAeAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAegAAAAAAAAAAAAAAegAAAAAAeAAAAAAAeAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAegAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAegAAAAAAAAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAegAAAAAAAAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAegAAAAAAAAAAAAAAAAAAAAAALgAAAAAALgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAegAAAAAAAAAAAAAAAAAAAAAALgAAAAAALgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAegAAAAAALgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAegAAAAAAegAAAAAALgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,-2: + ind: -1,-2 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALgAAAAAALgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALgAAAAAALgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALgAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALgAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAeAAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAeAAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAeAAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALgAAAAAAegAAAAAAeAAAAAAA + version: 6 + 0,-2: + ind: 0,-2 + tiles: LgAAAAAALgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALgAAAAAALgAAAAAALgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALgAAAAAALgAAAAAALgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAegAAAAAALgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAegAAAAAALgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAeAAAAAAAeAAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAeAAAAAAAeAAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAeAAAAAAAeAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAeAAAAAAAeAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAeAAAAAAAeAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAegAAAAAALgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + - type: Broadphase + - type: Physics + bodyStatus: InAir + angularDamping: 999999 + linearDamping: 999999 + fixedRotation: False + bodyType: Dynamic + - type: Fixtures + fixtures: {} + - type: OccluderTree + - type: SpreaderGrid + - type: Shuttle + angularDamping: 999999 + linearDamping: 999999 + - type: GridPathfinding + - type: Gravity + gravityShakeSound: !type:SoundPathSpecifier + path: /Audio/Effects/alert.ogg + - type: DecalGrid + chunkCollection: + version: 2 + nodes: + - node: + color: '#FFFFFFFF' + id: WoodTrimThinBox + decals: + 18: 0,-28 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinEndN + decals: + 5: -2,-23 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinEndS + decals: + 6: -2,-25 + 9: 0,-26 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinInnerNe + decals: + 15: 2,-16 + 16: 2,-23 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinInnerSe + decals: + 17: 2,-20 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinInnerSw + decals: + 14: 4,-14 + 19: 0,-17 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinLineE + decals: + 0: 2,-21 + 1: 2,-22 + 8: -2,-24 + 12: 2,-15 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinLineN + decals: + 11: -1,-19 + 20: -1,-5 + 21: 0,-5 + 22: 1,-5 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinLineS + decals: + 10: -1,-17 + 23: -1,-3 + 24: 0,-3 + 25: 1,-3 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinLineW + decals: + 2: 0,-23 + 3: 0,-24 + 4: 0,-25 + 7: -2,-24 + 13: 4,-15 + - node: + color: '#F9801DFF' + id: rune1 + decals: + 26: -3,-25 + 27: -3,-24 + 28: -3,-23 + 29: 3,-22 + 30: 3,-21 + 31: 0,-29 + 32: 0,-27 + 33: 3,-15 + - node: + color: '#3AB3DAFF' + id: rune2 + decals: + 34: -3,-1 + 35: 0,0 + - node: + color: '#9D9D97FF' + id: rune4 + decals: + 36: -3,0 + 37: -1,1 + 38: 0,1 + 39: 1,1 + 40: 1,0 + - node: + color: '#3C44AAFF' + id: rune5 + decals: + 42: 1,-23 + - node: + color: '#3C44AAFF' + id: rune6 + decals: + 43: 1,-24 + - node: + color: '#C74EBDFF' + id: rune6 + decals: + 41: 5,-14 + - type: GridAtmosphere + version: 2 + data: + tiles: + 0,0: + 0: 2047 + 1: 63488 + -1,0: + 0: 3327 + 1: 62208 + 0,1: + 1: 30719 + 0,2: + 1: 4915 + 0,3: + 1: 4369 + 1,0: + 0: 17 + 1: 5096 + 2,0: + 1: 1 + -2,0: + 1: 2275 + -1,1: + 1: 52462 + -1,2: + 1: 2184 + -1,-1: + 1: 18 + 0: 65516 + -1,-4: + 0: 52428 + -1,-3: + 0: 52428 + -1,-2: + 0: 52428 + 0,-4: + 0: 32767 + 1: 32768 + 0,-3: + 0: 30583 + 1: 2048 + 0,-2: + 0: 30583 + 0,-1: + 0: 65527 + 1: 8 + 1,-1: + 1: 16 + 0: 4352 + -1,-5: + 0: 52974 + 1: 8192 + 0,-5: + 0: 65535 + 1,-4: + 0: 65329 + 1: 66 + 1,-3: + 0: 255 + 1: 65280 + 1,-2: + 1: 1647 + 2,-3: + 1: 256 + -1,-7: + 0: 61064 + 1: 64 + -1,-6: + 0: 61166 + -1,-8: + 0: 32772 + 1: 19656 + 0,-8: + 1: 18291 + 0: 12292 + 0,-7: + 0: 65331 + 1: 64 + 0,-6: + 0: 65535 + 1,-5: + 1: 4096 + 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: BecomesStation + id: apprentice +- proto: AirAlarm + entities: + - uid: 589 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-13.5 + parent: 1 + - type: DeviceList + devices: + - 464 + - 770 + - 777 + - type: AtmosDevice + joinedGrid: 1 + - uid: 590 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-2.5 + parent: 1 + - type: DeviceList + devices: + - 484 + - 481 + - 688 + - 768 + - 769 + - 779 + - type: AtmosDevice + joinedGrid: 1 + - uid: 591 + components: + - type: Transform + pos: 2.5,-13.5 + parent: 1 + - type: DeviceList + devices: + - 457 + - 483 + - 482 + - 455 + - 772 + - 774 + - 775 + - 770 + - 771 + - 688 + - 768 + - 769 + - type: AtmosDevice + joinedGrid: 1 +- proto: AirCanister + entities: + - uid: 197 + components: + - type: Transform + anchored: True + pos: -0.5,-20.5 + parent: 1 + - type: Physics + bodyType: Static + - type: AtmosDevice + joinedGrid: 1 +- proto: AirlockMining + entities: + - uid: 505 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -0.5,-23.5 + parent: 1 + - type: DeviceLinkSink + links: + - 427 + - uid: 566 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -0.5,-24.5 + parent: 1 + - type: DeviceLinkSink + links: + - 427 + - uid: 567 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -0.5,-22.5 + parent: 1 + - type: DeviceLinkSink + links: + - 427 +- proto: AirlockShuttleSyndicate + entities: + - uid: 14 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-22.5 + parent: 1 + - type: DeviceLinkSource + linkedPorts: + 427: + - DoorStatus: InputA + - uid: 16 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-23.5 + parent: 1 + - type: DeviceLinkSource + linkedPorts: + 427: + - DoorStatus: InputA + - uid: 66 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-24.5 + parent: 1 + - type: DeviceLinkSource + linkedPorts: + 427: + - DoorStatus: InputA +- proto: AirSensor + entities: + - uid: 777 + components: + - type: Transform + pos: 5.5,-13.5 + parent: 1 + - uid: 779 + components: + - type: Transform + pos: 0.5,-1.5 + parent: 1 +- proto: APCBasic + entities: + - uid: 407 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-25.5 + parent: 1 + - uid: 408 + components: + - type: Transform + pos: 4.5,-12.5 + parent: 1 + - uid: 409 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-1.5 + parent: 1 +- proto: AtmosDeviceFanTiny + entities: + - uid: 183 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-22.5 + parent: 1 + - uid: 184 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-23.5 + parent: 1 + - uid: 185 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-24.5 + parent: 1 + - uid: 202 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-28.5 + parent: 1 + - uid: 732 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-21.5 + parent: 1 + - uid: 733 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-20.5 + parent: 1 +- proto: AtmosFixBlockerMarker + entities: + - uid: 86 + components: + - type: Transform + pos: 5.5,-15.5 + parent: 1 + - uid: 112 + components: + - type: Transform + pos: 6.5,-14.5 + parent: 1 + - uid: 394 + components: + - type: Transform + pos: -1.5,-26.5 + parent: 1 + - uid: 395 + components: + - type: Transform + pos: 2.5,-26.5 + parent: 1 + - uid: 402 + components: + - type: Transform + pos: 4.5,-16.5 + parent: 1 + - uid: 413 + components: + - type: Transform + pos: 3.5,-12.5 + parent: 1 + - uid: 414 + components: + - type: Transform + pos: -2.5,-16.5 + parent: 1 + - uid: 415 + components: + - type: Transform + pos: -2.5,-3.5 + parent: 1 + - uid: 486 + components: + - type: Transform + pos: 4.5,-2.5 + parent: 1 + - uid: 671 + components: + - type: Transform + pos: 3.5,-3.5 + parent: 1 + - uid: 674 + components: + - type: Transform + pos: -3.5,-2.5 + parent: 1 + - uid: 789 + components: + - type: Transform + pos: -7.5,0.5 + parent: 1 + - uid: 790 + components: + - type: Transform + pos: -6.5,0.5 + parent: 1 + - uid: 791 + components: + - type: Transform + pos: -6.5,1.5 + parent: 1 + - uid: 792 + components: + - type: Transform + pos: -5.5,1.5 + parent: 1 + - uid: 793 + components: + - type: Transform + pos: -4.5,1.5 + parent: 1 + - uid: 794 + components: + - type: Transform + pos: -4.5,2.5 + parent: 1 + - uid: 795 + components: + - type: Transform + pos: -3.5,2.5 + parent: 1 + - uid: 796 + components: + - type: Transform + pos: -2.5,2.5 + parent: 1 + - uid: 797 + components: + - type: Transform + pos: -2.5,3.5 + parent: 1 + - uid: 798 + components: + - type: Transform + pos: -3.5,3.5 + parent: 1 + - uid: 799 + components: + - type: Transform + pos: -1.5,3.5 + parent: 1 + - uid: 800 + components: + - type: Transform + pos: -0.5,3.5 + parent: 1 + - uid: 801 + components: + - type: Transform + pos: 0.5,3.5 + parent: 1 + - uid: 802 + components: + - type: Transform + pos: 1.5,3.5 + parent: 1 + - uid: 803 + components: + - type: Transform + pos: 2.5,3.5 + parent: 1 + - uid: 804 + components: + - type: Transform + pos: 3.5,3.5 + parent: 1 + - uid: 805 + components: + - type: Transform + pos: 4.5,2.5 + parent: 1 + - uid: 806 + components: + - type: Transform + pos: 4.5,2.5 + parent: 1 + - uid: 807 + components: + - type: Transform + pos: 4.5,3.5 + parent: 1 + - uid: 808 + components: + - type: Transform + pos: 3.5,2.5 + parent: 1 + - uid: 809 + components: + - type: Transform + pos: 5.5,2.5 + parent: 1 + - uid: 810 + components: + - type: Transform + pos: 5.5,1.5 + parent: 1 + - uid: 811 + components: + - type: Transform + pos: 6.5,1.5 + parent: 1 + - uid: 812 + components: + - type: Transform + pos: 7.5,1.5 + parent: 1 + - uid: 813 + components: + - type: Transform + pos: 7.5,0.5 + parent: 1 + - uid: 814 + components: + - type: Transform + pos: 8.5,0.5 + parent: 1 + - uid: 815 + components: + - type: Transform + pos: 5.5,-5.5 + parent: 1 + - uid: 816 + components: + - type: Transform + pos: 6.5,-5.5 + parent: 1 + - uid: 817 + components: + - type: Transform + pos: 6.5,-6.5 + parent: 1 + - uid: 818 + components: + - type: Transform + pos: 5.5,-6.5 + parent: 1 + - uid: 819 + components: + - type: Transform + pos: 4.5,-7.5 + parent: 1 + - uid: 820 + components: + - type: Transform + pos: 5.5,-7.5 + parent: 1 + - uid: 821 + components: + - type: Transform + pos: 6.5,-7.5 + parent: 1 + - uid: 822 + components: + - type: Transform + pos: 7.5,-7.5 + parent: 1 + - uid: 823 + components: + - type: Transform + pos: 7.5,-8.5 + parent: 1 + - uid: 824 + components: + - type: Transform + pos: 6.5,-8.5 + parent: 1 + - uid: 825 + components: + - type: Transform + pos: 5.5,-8.5 + parent: 1 + - uid: 826 + components: + - type: Transform + pos: 4.5,-8.5 + parent: 1 + - uid: 827 + components: + - type: Transform + pos: 4.5,-9.5 + parent: 1 + - uid: 828 + components: + - type: Transform + pos: 3.5,-9.5 + parent: 1 + - uid: 829 + components: + - type: Transform + pos: 5.5,-9.5 + parent: 1 + - uid: 830 + components: + - type: Transform + pos: 6.5,-9.5 + parent: 1 + - uid: 831 + components: + - type: Transform + pos: 7.5,-9.5 + parent: 1 + - uid: 832 + components: + - type: Transform + pos: 8.5,-9.5 + parent: 1 + - uid: 833 + components: + - type: Transform + pos: -1.5,-28.5 + parent: 1 + - uid: 834 + components: + - type: Transform + pos: -1.5,-29.5 + parent: 1 + - uid: 835 + components: + - type: Transform + pos: -1.5,-30.5 + parent: 1 + - uid: 836 + components: + - type: Transform + pos: -0.5,-29.5 + parent: 1 + - uid: 837 + components: + - type: Transform + pos: -0.5,-30.5 + parent: 1 + - uid: 838 + components: + - type: Transform + pos: 0.5,-30.5 + parent: 1 + - uid: 839 + components: + - type: Transform + pos: 0.5,-29.5 + parent: 1 + - uid: 840 + components: + - type: Transform + pos: 1.5,-29.5 + parent: 1 + - uid: 841 + components: + - type: Transform + pos: 1.5,-30.5 + parent: 1 + - uid: 842 + components: + - type: Transform + pos: 2.5,-28.5 + parent: 1 + - uid: 843 + components: + - type: Transform + pos: 2.5,-29.5 + parent: 1 + - uid: 844 + components: + - type: Transform + pos: 2.5,-30.5 + parent: 1 + - uid: 845 + components: + - type: Transform + pos: 1.5,-31.5 + parent: 1 + - uid: 846 + components: + - type: Transform + pos: 0.5,-31.5 + parent: 1 + - uid: 847 + components: + - type: Transform + pos: -0.5,-31.5 + parent: 1 + - uid: 848 + components: + - type: Transform + pos: 3.5,4.5 + parent: 1 + - uid: 849 + components: + - type: Transform + pos: 2.5,4.5 + parent: 1 + - uid: 850 + components: + - type: Transform + pos: 1.5,4.5 + parent: 1 + - uid: 851 + components: + - type: Transform + pos: 0.5,4.5 + parent: 1 + - uid: 852 + components: + - type: Transform + pos: -0.5,4.5 + parent: 1 + - uid: 853 + components: + - type: Transform + pos: -1.5,4.5 + parent: 1 + - uid: 854 + components: + - type: Transform + pos: -2.5,4.5 + parent: 1 + - uid: 855 + components: + - type: Transform + pos: -2.5,5.5 + parent: 1 + - uid: 856 + components: + - type: Transform + pos: -1.5,5.5 + parent: 1 + - uid: 857 + components: + - type: Transform + pos: -0.5,5.5 + parent: 1 + - uid: 858 + components: + - type: Transform + pos: 0.5,5.5 + parent: 1 + - uid: 859 + components: + - type: Transform + pos: 1.5,5.5 + parent: 1 + - uid: 860 + components: + - type: Transform + pos: 2.5,5.5 + parent: 1 + - uid: 861 + components: + - type: Transform + pos: 3.5,5.5 + parent: 1 + - uid: 862 + components: + - type: Transform + pos: 2.5,6.5 + parent: 1 + - uid: 863 + components: + - type: Transform + pos: 1.5,6.5 + parent: 1 + - uid: 864 + components: + - type: Transform + pos: 0.5,6.5 + parent: 1 + - uid: 865 + components: + - type: Transform + pos: -0.5,6.5 + parent: 1 + - uid: 866 + components: + - type: Transform + pos: -1.5,6.5 + parent: 1 + - uid: 867 + components: + - type: Transform + pos: -1.5,7.5 + parent: 1 + - uid: 868 + components: + - type: Transform + pos: -0.5,7.5 + parent: 1 + - uid: 869 + components: + - type: Transform + pos: 0.5,7.5 + parent: 1 + - uid: 870 + components: + - type: Transform + pos: 1.5,7.5 + parent: 1 + - uid: 871 + components: + - type: Transform + pos: 2.5,7.5 + parent: 1 + - uid: 872 + components: + - type: Transform + pos: 1.5,8.5 + parent: 1 + - uid: 873 + components: + - type: Transform + pos: 0.5,8.5 + parent: 1 + - uid: 874 + components: + - type: Transform + pos: -0.5,8.5 + parent: 1 + - uid: 875 + components: + - type: Transform + pos: -0.5,9.5 + parent: 1 + - uid: 876 + components: + - type: Transform + pos: 0.5,9.5 + parent: 1 + - uid: 877 + components: + - type: Transform + pos: 1.5,9.5 + parent: 1 + - uid: 878 + components: + - type: Transform + pos: 1.5,10.5 + parent: 1 + - uid: 879 + components: + - type: Transform + pos: 0.5,10.5 + parent: 1 + - uid: 880 + components: + - type: Transform + pos: -0.5,10.5 + parent: 1 + - uid: 881 + components: + - type: Transform + pos: 0.5,11.5 + parent: 1 + - uid: 882 + components: + - type: Transform + pos: 0.5,12.5 + parent: 1 + - uid: 883 + components: + - type: Transform + pos: 0.5,13.5 + parent: 1 + - uid: 884 + components: + - type: Transform + pos: 0.5,14.5 + parent: 1 + - uid: 885 + components: + - type: Transform + pos: 0.5,15.5 + parent: 1 +- proto: BenchSofaLeft + entities: + - uid: 758 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-8.5 + parent: 1 + - type: Physics + bodyType: Static +- proto: BenchSofaMiddle + entities: + - uid: 731 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-9.5 + parent: 1 + - type: Physics + bodyType: Static +- proto: BenchSofaRight + entities: + - uid: 621 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-10.5 + parent: 1 + - type: Physics + bodyType: Static +- proto: BlastDoor + entities: + - uid: 736 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-20.5 + parent: 1 + - type: DeviceLinkSink + links: + - 738 + - uid: 737 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-21.5 + parent: 1 + - type: DeviceLinkSink + links: + - 738 +- proto: Bookshelf + entities: + - uid: 83 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 6.5,-11.5 + parent: 1 +- proto: CableApcExtension + entities: + - uid: 56 + components: + - type: Transform + pos: 0.5,-8.5 + parent: 1 + - uid: 107 + components: + - type: Transform + pos: 0.5,8.5 + parent: 1 + - uid: 305 + components: + - type: Transform + pos: 0.5,10.5 + parent: 1 + - uid: 507 + components: + - type: Transform + pos: -2.5,-1.5 + parent: 1 + - uid: 508 + components: + - type: Transform + pos: -1.5,-1.5 + parent: 1 + - uid: 509 + components: + - type: Transform + pos: -0.5,-1.5 + parent: 1 + - uid: 510 + components: + - type: Transform + pos: 0.5,-1.5 + parent: 1 + - uid: 511 + components: + - type: Transform + pos: 1.5,-1.5 + parent: 1 + - uid: 512 + components: + - type: Transform + pos: 2.5,-1.5 + parent: 1 + - uid: 513 + components: + - type: Transform + pos: 2.5,-0.5 + parent: 1 + - uid: 514 + components: + - type: Transform + pos: 2.5,0.5 + parent: 1 + - uid: 515 + components: + - type: Transform + pos: -1.5,-0.5 + parent: 1 + - uid: 516 + components: + - type: Transform + pos: -1.5,0.5 + parent: 1 + - uid: 517 + components: + - type: Transform + pos: 0.5,-2.5 + parent: 1 + - uid: 518 + components: + - type: Transform + pos: 0.5,-3.5 + parent: 1 + - uid: 519 + components: + - type: Transform + pos: 4.5,-12.5 + parent: 1 + - uid: 520 + components: + - type: Transform + pos: 5.5,-12.5 + parent: 1 + - uid: 523 + components: + - type: Transform + pos: 4.5,-13.5 + parent: 1 + - uid: 524 + components: + - type: Transform + pos: 4.5,-14.5 + parent: 1 + - uid: 525 + components: + - type: Transform + pos: 3.5,-14.5 + parent: 1 + - uid: 526 + components: + - type: Transform + pos: 1.5,-25.5 + parent: 1 + - uid: 527 + components: + - type: Transform + pos: 0.5,-25.5 + parent: 1 + - uid: 528 + components: + - type: Transform + pos: 0.5,-24.5 + parent: 1 + - uid: 529 + components: + - type: Transform + pos: 0.5,-23.5 + parent: 1 + - uid: 530 + components: + - type: Transform + pos: -0.5,-23.5 + parent: 1 + - uid: 533 + components: + - type: Transform + pos: 1.5,-23.5 + parent: 1 + - uid: 534 + components: + - type: Transform + pos: 1.5,-22.5 + parent: 1 + - uid: 535 + components: + - type: Transform + pos: 1.5,-21.5 + parent: 1 + - uid: 536 + components: + - type: Transform + pos: 1.5,-20.5 + parent: 1 + - uid: 537 + components: + - type: Transform + pos: 1.5,-19.5 + parent: 1 + - uid: 538 + components: + - type: Transform + pos: 1.5,-18.5 + parent: 1 + - uid: 539 + components: + - type: Transform + pos: 1.5,-17.5 + parent: 1 + - uid: 540 + components: + - type: Transform + pos: 2.5,-14.5 + parent: 1 + - uid: 541 + components: + - type: Transform + pos: 1.5,-14.5 + parent: 1 + - uid: 542 + components: + - type: Transform + pos: 0.5,-14.5 + parent: 1 + - uid: 543 + components: + - type: Transform + pos: 0.5,-15.5 + parent: 1 + - uid: 544 + components: + - type: Transform + pos: 0.5,-16.5 + parent: 1 + - uid: 545 + components: + - type: Transform + pos: 0.5,-13.5 + parent: 1 + - uid: 546 + components: + - type: Transform + pos: 0.5,-12.5 + parent: 1 + - uid: 547 + components: + - type: Transform + pos: 0.5,-11.5 + parent: 1 + - uid: 548 + components: + - type: Transform + pos: 0.5,-10.5 + parent: 1 + - uid: 549 + components: + - type: Transform + pos: 0.5,-9.5 + parent: 1 + - uid: 550 + components: + - type: Transform + pos: 0.5,-7.5 + parent: 1 + - uid: 551 + components: + - type: Transform + pos: 0.5,-4.5 + parent: 1 + - uid: 552 + components: + - type: Transform + pos: 0.5,-5.5 + parent: 1 + - uid: 554 + components: + - type: Transform + pos: 0.5,-26.5 + parent: 1 + - uid: 555 + components: + - type: Transform + pos: 0.5,-27.5 + parent: 1 + - uid: 556 + components: + - type: Transform + pos: 0.5,-28.5 + parent: 1 + - uid: 557 + components: + - type: Transform + pos: 0.5,-29.5 + parent: 1 + - uid: 617 + components: + - type: Transform + pos: 0.5,9.5 + parent: 1 + - uid: 744 + components: + - type: Transform + pos: -0.5,0.5 + parent: 1 + - uid: 747 + components: + - type: Transform + pos: 0.5,0.5 + parent: 1 + - uid: 748 + components: + - type: Transform + pos: 1.5,0.5 + parent: 1 + - uid: 749 + components: + - type: Transform + pos: 0.5,1.5 + parent: 1 + - uid: 750 + components: + - type: Transform + pos: 0.5,2.5 + parent: 1 + - uid: 751 + components: + - type: Transform + pos: 0.5,3.5 + parent: 1 + - uid: 752 + components: + - type: Transform + pos: 0.5,4.5 + parent: 1 + - uid: 753 + components: + - type: Transform + pos: 0.5,5.5 + parent: 1 + - uid: 754 + components: + - type: Transform + pos: 0.5,6.5 + parent: 1 + - uid: 755 + components: + - type: Transform + pos: 0.5,7.5 + parent: 1 +- proto: CableHV + entities: + - uid: 85 + components: + - type: Transform + pos: -1.5,-20.5 + parent: 1 + - uid: 219 + components: + - type: Transform + pos: 5.5,-5.5 + parent: 1 + - uid: 220 + components: + - type: Transform + pos: 6.5,-5.5 + parent: 1 + - uid: 221 + components: + - type: Transform + pos: 6.5,-6.5 + parent: 1 + - uid: 222 + components: + - type: Transform + pos: 5.5,-6.5 + parent: 1 + - uid: 223 + components: + - type: Transform + pos: 5.5,-7.5 + parent: 1 + - uid: 224 + components: + - type: Transform + pos: 6.5,-7.5 + parent: 1 + - uid: 225 + components: + - type: Transform + pos: 7.5,-7.5 + parent: 1 + - uid: 226 + components: + - type: Transform + pos: 7.5,-8.5 + parent: 1 + - uid: 227 + components: + - type: Transform + pos: 7.5,-9.5 + parent: 1 + - uid: 228 + components: + - type: Transform + pos: 8.5,-9.5 + parent: 1 + - uid: 229 + components: + - type: Transform + pos: 4.5,-7.5 + parent: 1 + - uid: 230 + components: + - type: Transform + pos: 4.5,-8.5 + parent: 1 + - uid: 231 + components: + - type: Transform + pos: 4.5,-9.5 + parent: 1 + - uid: 232 + components: + - type: Transform + pos: 3.5,-9.5 + parent: 1 + - uid: 233 + components: + - type: Transform + pos: 5.5,-9.5 + parent: 1 + - uid: 234 + components: + - type: Transform + pos: 5.5,-10.5 + parent: 1 + - uid: 235 + components: + - type: Transform + pos: 5.5,-11.5 + parent: 1 + - uid: 236 + components: + - type: Transform + pos: 5.5,-12.5 + parent: 1 + - uid: 237 + components: + - type: Transform + pos: 5.5,-13.5 + parent: 1 + - uid: 238 + components: + - type: Transform + pos: 4.5,-13.5 + parent: 1 + - uid: 239 + components: + - type: Transform + pos: 4.5,-14.5 + parent: 1 + - uid: 240 + components: + - type: Transform + pos: 3.5,-14.5 + parent: 1 + - uid: 241 + components: + - type: Transform + pos: 2.5,-14.5 + parent: 1 + - uid: 242 + components: + - type: Transform + pos: 1.5,-14.5 + parent: 1 + - uid: 243 + components: + - type: Transform + pos: -0.5,-14.5 + parent: 1 + - uid: 244 + components: + - type: Transform + pos: 0.5,-14.5 + parent: 1 + - uid: 245 + components: + - type: Transform + pos: -7.5,0.5 + parent: 1 + - uid: 246 + components: + - type: Transform + pos: -6.5,0.5 + parent: 1 + - uid: 247 + components: + - type: Transform + pos: -6.5,1.5 + parent: 1 + - uid: 248 + components: + - type: Transform + pos: -5.5,1.5 + parent: 1 + - uid: 249 + components: + - type: Transform + pos: -4.5,1.5 + parent: 1 + - uid: 250 + components: + - type: Transform + pos: -4.5,2.5 + parent: 1 + - uid: 251 + components: + - type: Transform + pos: -3.5,2.5 + parent: 1 + - uid: 252 + components: + - type: Transform + pos: -2.5,2.5 + parent: 1 + - uid: 253 + components: + - type: Transform + pos: -3.5,3.5 + parent: 1 + - uid: 254 + components: + - type: Transform + pos: -2.5,3.5 + parent: 1 + - uid: 255 + components: + - type: Transform + pos: -1.5,3.5 + parent: 1 + - uid: 256 + components: + - type: Transform + pos: -2.5,4.5 + parent: 1 + - uid: 257 + components: + - type: Transform + pos: -1.5,4.5 + parent: 1 + - uid: 258 + components: + - type: Transform + pos: -1.5,5.5 + parent: 1 + - uid: 259 + components: + - type: Transform + pos: -2.5,5.5 + parent: 1 + - uid: 260 + components: + - type: Transform + pos: -1.5,7.5 + parent: 1 + - uid: 261 + components: + - type: Transform + pos: -0.5,7.5 + parent: 1 + - uid: 262 + components: + - type: Transform + pos: -0.5,6.5 + parent: 1 + - uid: 263 + components: + - type: Transform + pos: -1.5,6.5 + parent: 1 + - uid: 264 + components: + - type: Transform + pos: 2.5,7.5 + parent: 1 + - uid: 265 + components: + - type: Transform + pos: 1.5,7.5 + parent: 1 + - uid: 266 + components: + - type: Transform + pos: 1.5,6.5 + parent: 1 + - uid: 267 + components: + - type: Transform + pos: 2.5,6.5 + parent: 1 + - uid: 268 + components: + - type: Transform + pos: 3.5,5.5 + parent: 1 + - uid: 269 + components: + - type: Transform + pos: 2.5,5.5 + parent: 1 + - uid: 270 + components: + - type: Transform + pos: 2.5,4.5 + parent: 1 + - uid: 271 + components: + - type: Transform + pos: 3.5,4.5 + parent: 1 + - uid: 272 + components: + - type: Transform + pos: 8.5,0.5 + parent: 1 + - uid: 273 + components: + - type: Transform + pos: 7.5,0.5 + parent: 1 + - uid: 274 + components: + - type: Transform + pos: 7.5,1.5 + parent: 1 + - uid: 275 + components: + - type: Transform + pos: 6.5,1.5 + parent: 1 + - uid: 276 + components: + - type: Transform + pos: 5.5,1.5 + parent: 1 + - uid: 277 + components: + - type: Transform + pos: 5.5,2.5 + parent: 1 + - uid: 278 + components: + - type: Transform + pos: 4.5,2.5 + parent: 1 + - uid: 279 + components: + - type: Transform + pos: 3.5,2.5 + parent: 1 + - uid: 280 + components: + - type: Transform + pos: 3.5,3.5 + parent: 1 + - uid: 281 + components: + - type: Transform + pos: 4.5,3.5 + parent: 1 + - uid: 282 + components: + - type: Transform + pos: 2.5,3.5 + parent: 1 + - uid: 283 + components: + - type: Transform + pos: -0.5,5.5 + parent: 1 + - uid: 284 + components: + - type: Transform + pos: 1.5,5.5 + parent: 1 + - uid: 285 + components: + - type: Transform + pos: 1.5,8.5 + parent: 1 + - uid: 286 + components: + - type: Transform + pos: 0.5,8.5 + parent: 1 + - uid: 287 + components: + - type: Transform + pos: -0.5,8.5 + parent: 1 + - uid: 288 + components: + - type: Transform + pos: -0.5,9.5 + parent: 1 + - uid: 289 + components: + - type: Transform + pos: 0.5,9.5 + parent: 1 + - uid: 290 + components: + - type: Transform + pos: 1.5,9.5 + parent: 1 + - uid: 291 + components: + - type: Transform + pos: 1.5,10.5 + parent: 1 + - uid: 292 + components: + - type: Transform + pos: -0.5,10.5 + parent: 1 + - uid: 293 + components: + - type: Transform + pos: 0.5,10.5 + parent: 1 + - uid: 294 + components: + - type: Transform + pos: 0.5,11.5 + parent: 1 + - uid: 295 + components: + - type: Transform + pos: 0.5,12.5 + parent: 1 + - uid: 296 + components: + - type: Transform + pos: 0.5,13.5 + parent: 1 + - uid: 298 + components: + - type: Transform + pos: 0.5,14.5 + parent: 1 + - uid: 299 + components: + - type: Transform + pos: 0.5,15.5 + parent: 1 + - uid: 372 + components: + - type: Transform + pos: 5.5,-8.5 + parent: 1 + - uid: 373 + components: + - type: Transform + pos: 6.5,-8.5 + parent: 1 + - uid: 374 + components: + - type: Transform + pos: 6.5,-9.5 + parent: 1 + - uid: 375 + components: + - type: Transform + pos: -2.5,1.5 + parent: 1 + - uid: 376 + components: + - type: Transform + pos: -2.5,0.5 + parent: 1 + - uid: 377 + components: + - type: Transform + pos: -2.5,-0.5 + parent: 1 + - uid: 378 + components: + - type: Transform + pos: -1.5,-0.5 + parent: 1 + - uid: 379 + components: + - type: Transform + pos: -1.5,-1.5 + parent: 1 + - uid: 380 + components: + - type: Transform + pos: -0.5,-1.5 + parent: 1 + - uid: 381 + components: + - type: Transform + pos: -0.5,-2.5 + parent: 1 + - uid: 382 + components: + - type: Transform + pos: -0.5,-3.5 + parent: 1 + - uid: 383 + components: + - type: Transform + pos: -0.5,-4.5 + parent: 1 + - uid: 384 + components: + - type: Transform + pos: -0.5,-5.5 + parent: 1 + - uid: 385 + components: + - type: Transform + pos: -0.5,-6.5 + parent: 1 + - uid: 386 + components: + - type: Transform + pos: -0.5,-7.5 + parent: 1 + - uid: 387 + components: + - type: Transform + pos: -0.5,-8.5 + parent: 1 + - uid: 388 + components: + - type: Transform + pos: -0.5,-9.5 + parent: 1 + - uid: 389 + components: + - type: Transform + pos: -0.5,-10.5 + parent: 1 + - uid: 390 + components: + - type: Transform + pos: -0.5,-11.5 + parent: 1 + - uid: 391 + components: + - type: Transform + pos: -0.5,-12.5 + parent: 1 + - uid: 392 + components: + - type: Transform + pos: -0.5,-13.5 + parent: 1 + - uid: 411 + components: + - type: Transform + pos: -1.5,-17.5 + parent: 1 + - uid: 412 + components: + - type: Transform + pos: -1.5,-18.5 + parent: 1 + - uid: 430 + components: + - type: Transform + pos: 1.5,-18.5 + parent: 1 + - uid: 431 + components: + - type: Transform + pos: -1.5,-19.5 + parent: 1 + - uid: 432 + components: + - type: Transform + pos: -0.5,-19.5 + parent: 1 + - uid: 433 + components: + - type: Transform + pos: 0.5,-19.5 + parent: 1 + - uid: 488 + components: + - type: Transform + pos: 1.5,-19.5 + parent: 1 + - uid: 561 + components: + - type: Transform + pos: 1.5,-16.5 + parent: 1 + - uid: 564 + components: + - type: Transform + pos: 1.5,-15.5 + parent: 1 + - uid: 570 + components: + - type: Transform + pos: 1.5,-17.5 + parent: 1 +- proto: CableMV + entities: + - uid: 410 + components: + - type: Transform + pos: -1.5,-17.5 + parent: 1 + - uid: 446 + components: + - type: Transform + pos: -0.5,-17.5 + parent: 1 + - uid: 459 + components: + - type: Transform + pos: -0.5,-16.5 + parent: 1 + - uid: 485 + components: + - type: Transform + pos: -0.5,-15.5 + parent: 1 + - uid: 694 + components: + - type: Transform + pos: 1.5,-19.5 + parent: 1 + - uid: 695 + components: + - type: Transform + pos: 1.5,-25.5 + parent: 1 + - uid: 696 + components: + - type: Transform + pos: 1.5,-24.5 + parent: 1 + - uid: 697 + components: + - type: Transform + pos: 1.5,-23.5 + parent: 1 + - uid: 698 + components: + - type: Transform + pos: 1.5,-22.5 + parent: 1 + - uid: 699 + components: + - type: Transform + pos: 1.5,-21.5 + parent: 1 + - uid: 700 + components: + - type: Transform + pos: 1.5,-20.5 + parent: 1 + - uid: 701 + components: + - type: Transform + pos: 2.5,-19.5 + parent: 1 + - uid: 702 + components: + - type: Transform + pos: 2.5,-18.5 + parent: 1 + - uid: 703 + components: + - type: Transform + pos: 2.5,-17.5 + parent: 1 + - uid: 704 + components: + - type: Transform + pos: 2.5,-16.5 + parent: 1 + - uid: 705 + components: + - type: Transform + pos: 2.5,-15.5 + parent: 1 + - uid: 706 + components: + - type: Transform + pos: 2.5,-14.5 + parent: 1 + - uid: 707 + components: + - type: Transform + pos: 3.5,-14.5 + parent: 1 + - uid: 708 + components: + - type: Transform + pos: 4.5,-14.5 + parent: 1 + - uid: 709 + components: + - type: Transform + pos: 4.5,-13.5 + parent: 1 + - uid: 710 + components: + - type: Transform + pos: 4.5,-12.5 + parent: 1 + - uid: 711 + components: + - type: Transform + pos: 1.5,-15.5 + parent: 1 + - uid: 712 + components: + - type: Transform + pos: 0.5,-15.5 + parent: 1 + - uid: 713 + components: + - type: Transform + pos: 0.5,-14.5 + parent: 1 + - uid: 714 + components: + - type: Transform + pos: 0.5,-13.5 + parent: 1 + - uid: 715 + components: + - type: Transform + pos: 0.5,-12.5 + parent: 1 + - uid: 716 + components: + - type: Transform + pos: 0.5,-11.5 + parent: 1 + - uid: 717 + components: + - type: Transform + pos: 0.5,-10.5 + parent: 1 + - uid: 718 + components: + - type: Transform + pos: 0.5,-9.5 + parent: 1 + - uid: 719 + components: + - type: Transform + pos: 0.5,-8.5 + parent: 1 + - uid: 720 + components: + - type: Transform + pos: 0.5,-7.5 + parent: 1 + - uid: 721 + components: + - type: Transform + pos: 0.5,-6.5 + parent: 1 + - uid: 722 + components: + - type: Transform + pos: 0.5,-5.5 + parent: 1 + - uid: 723 + components: + - type: Transform + pos: 0.5,-4.5 + parent: 1 + - uid: 724 + components: + - type: Transform + pos: 0.5,-3.5 + parent: 1 + - uid: 725 + components: + - type: Transform + pos: 0.5,-2.5 + parent: 1 + - uid: 726 + components: + - type: Transform + pos: 0.5,-1.5 + parent: 1 + - uid: 727 + components: + - type: Transform + pos: -0.5,-1.5 + parent: 1 + - uid: 728 + components: + - type: Transform + pos: -1.5,-1.5 + parent: 1 + - uid: 729 + components: + - type: Transform + pos: -2.5,-1.5 + parent: 1 +- proto: CableTerminal + entities: + - uid: 84 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-19.5 + parent: 1 +- proto: CarpetPurple + entities: + - uid: 493 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-11.5 + parent: 1 + - uid: 577 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-11.5 + parent: 1 + - uid: 612 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-12.5 + parent: 1 + - uid: 614 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-12.5 + parent: 1 +- proto: CarpetSBlue + entities: + - uid: 553 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-0.5 + parent: 1 + - uid: 616 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-0.5 + parent: 1 + - uid: 618 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-0.5 + parent: 1 + - uid: 622 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-1.5 + parent: 1 + - uid: 623 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-1.5 + parent: 1 + - uid: 624 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-1.5 + parent: 1 + - uid: 625 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-2.5 + parent: 1 + - uid: 626 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-3.5 + parent: 1 + - uid: 627 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-4.5 + parent: 1 + - uid: 628 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-5.5 + parent: 1 + - uid: 629 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-6.5 + parent: 1 + - uid: 630 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-7.5 + parent: 1 + - uid: 631 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-8.5 + parent: 1 + - uid: 632 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-9.5 + parent: 1 + - uid: 633 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-10.5 + parent: 1 + - uid: 634 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-11.5 + parent: 1 + - uid: 635 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-12.5 + parent: 1 + - uid: 636 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-13.5 + parent: 1 + - uid: 637 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-14.5 + parent: 1 + - uid: 638 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-15.5 + parent: 1 +- proto: ChairWood + entities: + - uid: 494 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,0.5 + parent: 1 + - uid: 495 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-0.5 + parent: 1 + - uid: 584 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-12.5 + parent: 1 + - uid: 886 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-19.5 + parent: 1 + - uid: 887 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-17.5 + parent: 1 +- proto: ClothingBackpackSatchel + entities: + - uid: 647 + components: + - type: MetaData + flags: InContainer + - type: Transform + parent: 578 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 648 + components: + - type: MetaData + flags: InContainer + - type: Transform + parent: 593 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 788 + components: + - type: MetaData + flags: InContainer + - type: Transform + parent: 598 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingHeadHatRedwizard + entities: + - uid: 597 + components: + - type: MetaData + flags: InContainer + - type: Transform + parent: 593 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingHeadHatVioletwizard + entities: + - uid: 582 + components: + - type: MetaData + flags: InContainer + - type: Transform + parent: 578 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingHeadHatWizard + entities: + - uid: 599 + components: + - type: MetaData + flags: InContainer + - type: Transform + parent: 598 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingOuterWizard + entities: + - uid: 601 + components: + - type: MetaData + flags: InContainer + - type: Transform + parent: 598 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingOuterWizardRed + entities: + - uid: 594 + components: + - type: MetaData + flags: InContainer + - type: Transform + parent: 593 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingOuterWizardViolet + entities: + - uid: 580 + components: + - type: MetaData + flags: InContainer + - type: Transform + parent: 578 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingShoesWizard + entities: + - uid: 579 + components: + - type: MetaData + flags: InContainer + - type: Transform + parent: 578 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 595 + components: + - type: MetaData + flags: InContainer + - type: Transform + parent: 593 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 600 + components: + - type: MetaData + flags: InContainer + - type: Transform + parent: 598 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ComputerTabletopIFF + entities: + - uid: 2 + components: + - type: MetaData + name: damaged IFF computer + - type: Transform + pos: -0.5,1.5 + parent: 1 +- proto: ComputerTabletopRadar + entities: + - uid: 563 + components: + - type: Transform + pos: 1.5,1.5 + parent: 1 +- proto: ComputerTabletopShuttle + entities: + - uid: 521 + components: + - type: Transform + pos: 0.5,1.5 + parent: 1 +- proto: ComputerTabletopSolarControl + entities: + - uid: 569 + components: + - type: Transform + pos: -2.5,0.5 + parent: 1 +- proto: ComputerTabletopSurveillanceCameraMonitor + entities: + - uid: 522 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,0.5 + parent: 1 +- proto: CultAltarSpawner + entities: + - uid: 646 + components: + - type: Transform + pos: 0.5,-0.5 + parent: 1 +- proto: DrinkFlask + entities: + - uid: 640 + components: + - type: Transform + pos: -1.7935157,-1.2497914 + parent: 1 + - type: SolutionContainerManager + solutions: + drink: + temperature: 293.15 + canMix: False + canReact: True + maxVol: 30 + name: null + reagents: + - data: null + ReagentId: JuiceWatermelon + Quantity: 30 + - uid: 641 + components: + - type: Transform + pos: -1.4959452,-1.1931343 + parent: 1 + - type: SolutionContainerManager + solutions: + drink: + temperature: 293.15 + canMix: False + canReact: True + maxVol: 30 + name: null + reagents: + - data: null + ReagentId: GreenTea + Quantity: 30 + - uid: 642 + components: + - type: Transform + pos: -1.2125443,-1.27812 + parent: 1 + - type: SolutionContainerManager + solutions: + drink: + temperature: 293.15 + canMix: False + canReact: True + maxVol: 30 + name: null + reagents: + - data: null + ReagentId: JuiceWatermelon + Quantity: 30 +- proto: DrinkMugBlue + entities: + - uid: 645 + components: + - type: Transform + pos: -1.198374,-1.6605561 + parent: 1 + - type: SolutionContainerManager + solutions: + drink: + temperature: 293.15 + canMix: True + canReact: True + maxVol: 20 + name: null + reagents: + - data: null + ReagentId: JuiceCarrot + Quantity: 20 +- proto: DrinkMugMoebius + entities: + - uid: 644 + components: + - type: Transform + pos: -1.4959452,-1.589735 + parent: 1 + - type: SolutionContainerManager + solutions: + drink: + temperature: 293.15 + canMix: True + canReact: True + maxVol: 20 + name: null + reagents: + - data: null + ReagentId: JuiceOrange + Quantity: 20 +- proto: DrinkMugRed + entities: + - uid: 643 + components: + - type: Transform + pos: -1.7651758,-1.6605561 + parent: 1 + - type: SolutionContainerManager + solutions: + drink: + temperature: 293.15 + canMix: True + canReact: True + maxVol: 20 + name: null + reagents: + - data: null + ReagentId: JuiceBanana + Quantity: 20 +- proto: ExplosionTimedRune + entities: + - uid: 596 + components: + - type: Transform + pos: -2.5,-23.5 + parent: 1 +- proto: FaxMachineSyndie + entities: + - uid: 491 + components: + - type: Transform + pos: -1.5,0.5 + parent: 1 +- proto: Firelock + entities: + - uid: 568 + components: + - type: Transform + pos: -0.5,-23.5 + parent: 1 + - uid: 688 + components: + - type: Transform + pos: -0.5,-3.5 + parent: 1 + - uid: 768 + components: + - type: Transform + pos: 0.5,-3.5 + parent: 1 + - uid: 769 + components: + - type: Transform + pos: 1.5,-3.5 + parent: 1 + - uid: 770 + components: + - type: Transform + pos: 3.5,-14.5 + parent: 1 + - uid: 771 + components: + - type: Transform + pos: -0.5,-17.5 + parent: 1 + - uid: 772 + components: + - type: Transform + pos: -0.5,-22.5 + parent: 1 + - uid: 774 + components: + - type: Transform + pos: -0.5,-24.5 + parent: 1 + - uid: 775 + components: + - type: Transform + pos: 0.5,-26.5 + parent: 1 +- proto: FirelockEdge + entities: + - uid: 908 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-17.5 + parent: 1 + - uid: 909 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-17.5 + parent: 1 +- proto: FlashRuneTimer + entities: + - uid: 613 + components: + - type: Transform + pos: -0.5,-23.5 + parent: 1 +- proto: GasPassiveVent + entities: + - uid: 458 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-29.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#990000FF' +- proto: GasPipeBend + entities: + - uid: 420 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-24.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 421 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-24.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 448 + components: + - type: Transform + pos: 1.5,-16.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 558 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-14.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' +- proto: GasPipeStraight + entities: + - uid: 115 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-18.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 195 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-18.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 207 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-18.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 416 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-25.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 417 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-26.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 418 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-27.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 419 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-28.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 423 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-22.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 424 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-21.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 425 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-20.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 426 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-19.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 428 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-17.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 429 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-16.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 435 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-11.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 436 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-10.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 438 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-8.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 439 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-7.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 440 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-6.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 441 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-5.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 442 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-4.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 443 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-3.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 444 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-2.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 449 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-16.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 450 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-17.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 451 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-18.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 452 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-19.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 453 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-20.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 454 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-21.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 460 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-13.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 461 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-13.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 462 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-13.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 463 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-13.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 466 + components: + - type: Transform + pos: -0.5,-15.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 467 + components: + - type: Transform + pos: -0.5,-14.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 468 + components: + - type: Transform + pos: -0.5,-12.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 469 + components: + - type: Transform + pos: -0.5,-11.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 470 + components: + - type: Transform + pos: -0.5,-10.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 471 + components: + - type: Transform + pos: -0.5,-9.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 472 + components: + - type: Transform + pos: -0.5,-7.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 474 + components: + - type: Transform + pos: -0.5,-6.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 475 + components: + - type: Transform + pos: -0.5,-5.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 476 + components: + - type: Transform + pos: -0.5,-4.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 477 + components: + - type: Transform + pos: -0.5,-3.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 478 + components: + - type: Transform + pos: -0.5,-2.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 479 + components: + - type: Transform + pos: -0.5,-1.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 480 + components: + - type: Transform + pos: 1.5,-1.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 487 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-17.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 506 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-13.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 531 + components: + - type: Transform + pos: 2.5,-15.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 559 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-12.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 560 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-14.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' +- proto: GasPipeTJunction + entities: + - uid: 422 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-23.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 437 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-9.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 447 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-16.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 465 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-13.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 473 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-8.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 532 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-18.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 565 + components: + - type: Transform + pos: 2.5,-14.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' +- proto: GasPort + entities: + - uid: 196 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-20.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#0055CCFF' +- proto: GasPressurePump + entities: + - uid: 198 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-19.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 456 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-24.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#990000FF' +- proto: GasVentPump + entities: + - uid: 457 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-22.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 464 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-13.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 483 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-8.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 484 + components: + - type: Transform + pos: -0.5,-0.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#0055CCFF' +- proto: GasVentScrubber + entities: + - uid: 114 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-18.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 455 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-23.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 481 + components: + - type: Transform + pos: 1.5,-0.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 482 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-9.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 562 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-14.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#990000FF' +- proto: GeneratorBasic15kW + entities: + - uid: 113 + components: + - type: Transform + pos: -1.5,-20.5 + parent: 1 + - uid: 393 + components: + - type: Transform + pos: -1.5,-19.5 + parent: 1 +- proto: GravityGeneratorMini + entities: + - uid: 398 + components: + - type: Transform + pos: 1.5,-29.5 + parent: 1 +- proto: Grille + entities: + - uid: 5 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,2.5 + parent: 1 + - uid: 6 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,2.5 + parent: 1 + - uid: 7 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,2.5 + parent: 1 + - uid: 21 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-6.5 + parent: 1 + - uid: 22 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-9.5 + parent: 1 + - uid: 24 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-6.5 + parent: 1 + - uid: 26 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-5.5 + parent: 1 + - uid: 32 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-10.5 + parent: 1 + - uid: 33 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-7.5 + parent: 1 + - uid: 40 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-0.5 + parent: 1 + - uid: 43 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,0.5 + parent: 1 + - uid: 44 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,0.5 + parent: 1 + - uid: 45 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-11.5 + parent: 1 + - uid: 46 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,1.5 + parent: 1 + - uid: 49 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-10.5 + parent: 1 + - uid: 50 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-0.5 + parent: 1 + - uid: 55 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,1.5 + parent: 1 + - uid: 69 + components: + - type: Transform + pos: -1.5,-13.5 + parent: 1 + - uid: 70 + components: + - type: Transform + pos: -1.5,-14.5 + parent: 1 + - uid: 81 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-12.5 + parent: 1 + - uid: 82 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-10.5 + parent: 1 + - uid: 87 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-11.5 + parent: 1 + - uid: 88 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-10.5 + parent: 1 + - uid: 89 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-11.5 + parent: 1 + - uid: 97 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-18.5 + parent: 1 + - uid: 105 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-22.5 + parent: 1 + - uid: 106 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-19.5 + parent: 1 + - uid: 401 + components: + - type: Transform + pos: 0.5,-18.5 + parent: 1 + - uid: 404 + components: + - type: Transform + pos: 0.5,-19.5 + parent: 1 + - uid: 620 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-23.5 + parent: 1 +- proto: GroundCannabis + entities: + - uid: 891 + components: + - type: Transform + pos: 2.471746,-18.296904 + parent: 1 + - uid: 892 + components: + - type: Transform + pos: 2.471746,-18.296904 + parent: 1 + - uid: 893 + components: + - type: Transform + pos: 2.471746,-18.296904 + parent: 1 + - uid: 894 + components: + - type: Transform + pos: 2.471746,-18.296904 + parent: 1 + - uid: 895 + components: + - type: Transform + pos: 2.471746,-18.296904 + parent: 1 + - uid: 896 + components: + - type: Transform + pos: 2.471746,-18.296904 + parent: 1 + - uid: 897 + components: + - type: Transform + pos: 2.471746,-18.296904 + parent: 1 +- proto: GunSafe + entities: + - uid: 898 + components: + - type: MetaData + name: staff safe + - type: Transform + pos: 2.5,-15.5 + parent: 1 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + 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: + - 901 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: Gyroscope + entities: + - uid: 397 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-29.5 + parent: 1 +- proto: HappyHonkNukieSnacks + entities: + - uid: 766 + components: + - type: Transform + pos: -1.5921855,-1.6455922 + parent: 1 + - uid: 767 + components: + - type: Transform + pos: -1.2946144,-1.6880853 + parent: 1 +- proto: IgniteRune + entities: + - uid: 899 + components: + - type: Transform + pos: -0.5,-17.5 + parent: 1 + - uid: 900 + components: + - type: Transform + pos: 3.5,-14.5 + parent: 1 + - uid: 905 + components: + - type: Transform + pos: -0.5,-3.5 + parent: 1 + - uid: 906 + components: + - type: Transform + pos: 0.5,-3.5 + parent: 1 + - uid: 907 + components: + - type: Transform + pos: 1.5,-3.5 + parent: 1 +- proto: LampGold + entities: + - uid: 587 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.7495174,-12.084604 + parent: 1 +- proto: LockerBooze + entities: + - uid: 578 + components: + - type: MetaData + name: wizard's locker + - type: Transform + pos: 5.5,-11.5 + parent: 1 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + 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: + - 582 + - 580 + - 579 + - 647 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 593 + components: + - type: MetaData + name: wizard's locker + - type: Transform + pos: 3.5,0.5 + parent: 1 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14972 + moles: + - 1.8968438 + - 7.1357465 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 648 + - 595 + - 594 + - 597 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 598 + components: + - type: MetaData + name: wizard's locker + - type: Transform + pos: 2.5,0.5 + parent: 1 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14972 + moles: + - 1.8968438 + - 7.1357465 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 601 + - 788 + - 600 + - 599 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: LogicGate + entities: + - uid: 427 + components: + - type: Transform + anchored: True + pos: 0.5,-26.5 + parent: 1 + - type: DeviceLinkSink + links: + - 66 + - 16 + - 14 + - type: DeviceLinkSource + linkedPorts: + 566: + - Output: Open + 505: + - Output: Open + 567: + - Output: Open + - type: Physics + canCollide: False + bodyType: Static +- proto: Mirror + entities: + - uid: 603 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-1.5 + parent: 1 + - uid: 615 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-14.5 + parent: 1 +- proto: PlasmaDoor + entities: + - uid: 502 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 1.5,-3.5 + parent: 1 + - uid: 574 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 0.5,-3.5 + parent: 1 + - uid: 575 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -0.5,-3.5 + parent: 1 + - uid: 676 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -0.5,-17.5 + parent: 1 +- proto: PottedPlantRandom + entities: + - uid: 757 + components: + - type: Transform + pos: -0.5,-12.5 + parent: 1 + - uid: 759 + components: + - type: Transform + pos: -0.5,-7.5 + parent: 1 + - uid: 904 + components: + - type: Transform + pos: 2.5,-23.5 + parent: 1 +- proto: PoweredlightColoredBlack + entities: + - uid: 602 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-5.5 + parent: 1 + - uid: 604 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-12.5 + parent: 1 + - uid: 605 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-20.5 + parent: 1 + - uid: 606 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-12.5 + parent: 1 + - uid: 607 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-17.5 + parent: 1 + - uid: 608 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -1.5,-22.5 + parent: 1 + - uid: 609 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-1.5 + parent: 1 + - uid: 649 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-24.5 + parent: 1 +- proto: PoweredLightPostSmall + entities: + - uid: 110 + components: + - type: Transform + pos: 0.5,10.5 + parent: 1 +- proto: Railing + entities: + - uid: 122 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,-6.5 + parent: 1 + - uid: 124 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-6.5 + parent: 1 + - uid: 125 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-8.5 + parent: 1 + - uid: 126 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,-8.5 + parent: 1 + - uid: 147 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,4.5 + parent: 1 + - uid: 148 + components: + - type: Transform + pos: 6.5,1.5 + parent: 1 + - uid: 149 + components: + - type: Transform + pos: 5.5,1.5 + parent: 1 + - uid: 150 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,1.5 + parent: 1 + - uid: 151 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,1.5 + parent: 1 + - uid: 152 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,4.5 + parent: 1 + - uid: 153 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,6.5 + parent: 1 + - uid: 154 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,8.5 + parent: 1 + - uid: 155 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,9.5 + parent: 1 + - uid: 156 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,9.5 + parent: 1 + - uid: 157 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,8.5 + parent: 1 + - uid: 158 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,11.5 + parent: 1 + - uid: 159 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,12.5 + parent: 1 + - uid: 160 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,13.5 + parent: 1 + - uid: 161 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,13.5 + parent: 1 + - uid: 162 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,12.5 + parent: 1 + - uid: 163 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,11.5 + parent: 1 + - uid: 179 + components: + - type: Transform + pos: -5.5,1.5 + parent: 1 + - uid: 180 + components: + - type: Transform + pos: -4.5,1.5 + parent: 1 + - uid: 215 + components: + - type: Transform + pos: 0.5,-30.5 + parent: 1 + - uid: 216 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-29.5 + parent: 1 + - uid: 217 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-29.5 + parent: 1 + - uid: 218 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,6.5 + parent: 1 +- proto: RailingCorner + entities: + - uid: 118 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,-5.5 + parent: 1 + - uid: 119 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,-7.5 + parent: 1 + - uid: 120 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-7.5 + parent: 1 + - uid: 121 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-5.5 + parent: 1 + - uid: 135 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,10.5 + parent: 1 + - uid: 136 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,7.5 + parent: 1 + - uid: 137 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,5.5 + parent: 1 + - uid: 138 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,3.5 + parent: 1 + - uid: 139 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,2.5 + parent: 1 + - uid: 140 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,1.5 + parent: 1 + - uid: 141 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,10.5 + parent: 1 + - uid: 142 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,7.5 + parent: 1 + - uid: 143 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,5.5 + parent: 1 + - uid: 144 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,3.5 + parent: 1 + - uid: 145 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,2.5 + parent: 1 + - uid: 146 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,1.5 + parent: 1 + - uid: 177 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,0.5 + parent: 1 + - uid: 178 + components: + - type: Transform + pos: -6.5,0.5 + parent: 1 + - uid: 213 + components: + - type: Transform + pos: 1.5,-30.5 + parent: 1 + - uid: 214 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-30.5 + parent: 1 +- proto: RailingCornerSmall + entities: + - uid: 123 + components: + - type: Transform + pos: 4.5,-9.5 + parent: 1 + - uid: 127 + components: + - type: Transform + pos: 5.5,-7.5 + parent: 1 + - uid: 128 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-7.5 + parent: 1 + - uid: 129 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-9.5 + parent: 1 + - uid: 130 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-9.5 + parent: 1 + - uid: 131 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-9.5 + parent: 1 + - uid: 164 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,10.5 + parent: 1 + - uid: 165 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,7.5 + parent: 1 + - uid: 166 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,5.5 + parent: 1 + - uid: 167 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,3.5 + parent: 1 + - uid: 168 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,2.5 + parent: 1 + - uid: 169 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,1.5 + parent: 1 + - uid: 170 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,0.5 + parent: 1 + - uid: 171 + components: + - type: Transform + pos: -1.5,5.5 + parent: 1 + - uid: 172 + components: + - type: Transform + pos: -0.5,7.5 + parent: 1 + - uid: 173 + components: + - type: Transform + pos: -2.5,3.5 + parent: 1 + - uid: 174 + components: + - type: Transform + pos: -3.5,2.5 + parent: 1 + - uid: 175 + components: + - type: Transform + pos: -4.5,1.5 + parent: 1 + - uid: 176 + components: + - type: Transform + pos: -6.5,0.5 + parent: 1 + - uid: 181 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,1.5 + parent: 1 + - uid: 182 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,1.5 + parent: 1 + - uid: 297 + components: + - type: Transform + pos: 0.5,10.5 + parent: 1 +- proto: RailingRound + entities: + - uid: 116 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-9.5 + parent: 1 + - uid: 117 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-9.5 + parent: 1 + - uid: 132 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,0.5 + parent: 1 + - uid: 133 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,0.5 + parent: 1 + - uid: 134 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,14.5 + parent: 1 +- proto: RandomPainting + entities: + - uid: 780 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-8.5 + parent: 1 + - uid: 781 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-2.5 + parent: 1 + - uid: 782 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-9.5 + parent: 1 + - uid: 783 + components: + - type: Transform + pos: 2.5,1.5 + parent: 1 + - uid: 784 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-24.5 + parent: 1 + - uid: 785 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-17.5 + parent: 1 +- proto: RandomPosterContraband + entities: + - uid: 786 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-17.5 + parent: 1 + - uid: 787 + components: + - type: Transform + pos: -1.5,-21.5 + parent: 1 +- proto: RandomSnacks + entities: + - uid: 650 + components: + - type: Transform + pos: 6.5,-12.5 + parent: 1 + - uid: 760 + components: + - type: Transform + pos: -0.5,-11.5 + parent: 1 + - uid: 761 + components: + - type: Transform + pos: -0.5,-11.5 + parent: 1 + - uid: 762 + components: + - type: Transform + pos: -0.5,-11.5 + parent: 1 + - uid: 763 + components: + - type: Transform + pos: -0.5,-11.5 + parent: 1 + - uid: 764 + components: + - type: Transform + pos: -0.5,-11.5 + parent: 1 + - uid: 765 + components: + - type: Transform + pos: -0.5,-11.5 + parent: 1 +- proto: ReinforcedPlasmaWindow + entities: + - uid: 3 + components: + - type: Transform + pos: -0.5,2.5 + parent: 1 + - uid: 4 + components: + - type: Transform + pos: 0.5,2.5 + parent: 1 + - uid: 8 + components: + - type: Transform + pos: 1.5,2.5 + parent: 1 + - uid: 10 + components: + - type: Transform + pos: 4.5,0.5 + parent: 1 + - uid: 11 + components: + - type: Transform + pos: 4.5,-0.5 + parent: 1 + - uid: 12 + components: + - type: Transform + pos: -2.5,1.5 + parent: 1 + - uid: 13 + components: + - type: Transform + pos: 3.5,1.5 + parent: 1 + - uid: 15 + components: + - type: Transform + pos: -3.5,0.5 + parent: 1 + - uid: 17 + components: + - type: Transform + pos: -3.5,-0.5 + parent: 1 + - uid: 18 + components: + - type: Transform + pos: -1.5,-5.5 + parent: 1 + - uid: 19 + components: + - type: Transform + pos: -1.5,-6.5 + parent: 1 + - uid: 20 + components: + - type: Transform + pos: 7.5,-12.5 + parent: 1 + - uid: 23 + components: + - type: Transform + pos: 7.5,-11.5 + parent: 1 + - uid: 25 + components: + - type: Transform + pos: 2.5,-6.5 + parent: 1 + - uid: 27 + components: + - type: Transform + pos: 2.5,-7.5 + parent: 1 + - uid: 28 + components: + - type: Transform + pos: 6.5,-10.5 + parent: 1 + - uid: 29 + components: + - type: Transform + pos: 5.5,-10.5 + parent: 1 + - uid: 30 + components: + - type: Transform + pos: 4.5,-11.5 + parent: 1 + - uid: 31 + components: + - type: Transform + pos: 2.5,-11.5 + parent: 1 + - uid: 34 + components: + - type: Transform + pos: 2.5,-10.5 + parent: 1 + - uid: 35 + components: + - type: Transform + pos: -1.5,-9.5 + parent: 1 + - uid: 36 + components: + - type: Transform + pos: -1.5,-13.5 + parent: 1 + - uid: 37 + components: + - type: Transform + pos: -1.5,-10.5 + parent: 1 + - uid: 38 + components: + - type: Transform + pos: -1.5,-14.5 + parent: 1 + - uid: 39 + components: + - type: Transform + pos: 0.5,-19.5 + parent: 1 + - uid: 41 + components: + - type: Transform + pos: 0.5,-18.5 + parent: 1 + - uid: 42 + components: + - type: Transform + pos: 3.5,-18.5 + parent: 1 + - uid: 47 + components: + - type: Transform + pos: 3.5,-19.5 + parent: 1 + - uid: 500 + components: + - type: Transform + pos: 3.5,-22.5 + parent: 1 + - uid: 501 + components: + - type: Transform + pos: 3.5,-23.5 + parent: 1 +- proto: RGBStaff + entities: + - uid: 901 + components: + - type: MetaData + flags: InContainer + - type: Transform + parent: 898 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ShuttersNormal + entities: + - uid: 571 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-18.5 + parent: 1 + - type: DeviceLinkSink + links: + - 670 + - uid: 572 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,-12.5 + parent: 1 + - type: DeviceLinkSink + links: + - 670 + - uid: 573 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,-11.5 + parent: 1 + - type: DeviceLinkSink + links: + - 670 + - uid: 576 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-11.5 + parent: 1 + - type: DeviceLinkSink + links: + - 670 + - uid: 585 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-19.5 + parent: 1 + - type: DeviceLinkSink + links: + - 670 + - uid: 586 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-10.5 + parent: 1 + - type: DeviceLinkSink + links: + - 670 + - uid: 592 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-7.5 + parent: 1 + - type: DeviceLinkSink + links: + - 670 + - uid: 610 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,0.5 + parent: 1 + - type: DeviceLinkSink + links: + - 670 + - uid: 611 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-0.5 + parent: 1 + - type: DeviceLinkSink + links: + - 670 + - uid: 619 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,2.5 + parent: 1 + - type: DeviceLinkSink + links: + - 670 + - uid: 651 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,2.5 + parent: 1 + - type: DeviceLinkSink + links: + - 670 + - uid: 652 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,2.5 + parent: 1 + - type: DeviceLinkSink + links: + - 670 + - uid: 653 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-13.5 + parent: 1 + - type: DeviceLinkSink + links: + - 670 + - uid: 654 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-14.5 + parent: 1 + - type: DeviceLinkSink + links: + - 670 + - uid: 655 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,1.5 + parent: 1 + - type: DeviceLinkSink + links: + - 670 + - uid: 656 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-10.5 + parent: 1 + - type: DeviceLinkSink + links: + - 670 + - uid: 657 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,0.5 + parent: 1 + - type: DeviceLinkSink + links: + - 670 + - uid: 658 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-10.5 + parent: 1 + - type: DeviceLinkSink + links: + - 670 + - uid: 659 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-23.5 + parent: 1 + - type: DeviceLinkSink + links: + - 670 + - uid: 660 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-22.5 + parent: 1 + - type: DeviceLinkSink + links: + - 670 + - uid: 661 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-6.5 + parent: 1 + - type: DeviceLinkSink + links: + - 670 + - uid: 662 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-0.5 + parent: 1 + - type: DeviceLinkSink + links: + - 670 + - uid: 663 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,1.5 + parent: 1 + - type: DeviceLinkSink + links: + - 670 + - uid: 664 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-11.5 + parent: 1 + - type: DeviceLinkSink + links: + - 670 + - uid: 665 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-5.5 + parent: 1 + - type: DeviceLinkSink + links: + - 670 + - uid: 666 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-6.5 + parent: 1 + - type: DeviceLinkSink + links: + - 670 + - uid: 667 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-9.5 + parent: 1 + - type: DeviceLinkSink + links: + - 670 + - uid: 668 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-10.5 + parent: 1 + - type: DeviceLinkSink + links: + - 670 +- proto: SignalButtonDirectional + entities: + - uid: 669 + components: + - type: Transform + pos: 0.5,-21.5 + parent: 1 + - uid: 670 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,1.5 + parent: 1 + - type: DeviceLinkSource + linkedPorts: + 611: + - Pressed: Toggle + 610: + - Pressed: Toggle + 663: + - Pressed: Toggle + 652: + - Pressed: Toggle + 619: + - Pressed: Toggle + 651: + - Pressed: Toggle + 655: + - Pressed: Toggle + 657: + - Pressed: Toggle + 662: + - Pressed: Toggle + 665: + - Pressed: Toggle + 666: + - Pressed: Toggle + 667: + - Pressed: Toggle + 668: + - Pressed: Toggle + 653: + - Pressed: Toggle + 654: + - Pressed: Toggle + 661: + - Pressed: Toggle + 592: + - Pressed: Toggle + 586: + - Pressed: Toggle + 576: + - Pressed: Toggle + 664: + - Pressed: Toggle + 656: + - Pressed: Toggle + 658: + - Pressed: Toggle + 573: + - Pressed: Toggle + 572: + - Pressed: Toggle + 571: + - Pressed: Toggle + 585: + - Pressed: Toggle + 660: + - Pressed: Toggle + 659: + - Pressed: Toggle + - uid: 738 + components: + - type: MetaData + name: blast door switch + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-20.5 + parent: 1 + - type: DeviceLinkSource + linkedPorts: + 736: + - Pressed: Toggle + 737: + - Pressed: Toggle +- proto: SMESBasic + entities: + - uid: 405 + components: + - type: Transform + pos: -1.5,-18.5 + parent: 1 +- proto: SmokingPipe + entities: + - uid: 889 + components: + - type: Transform + pos: 2.5378072,-18.083633 + parent: 1 + - uid: 890 + components: + - type: Transform + pos: 2.7367246,-18.66657 + parent: 1 +- proto: SolarPanel + entities: + - uid: 301 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,14.5 + parent: 1 + - uid: 302 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,13.5 + parent: 1 + - uid: 303 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,12.5 + parent: 1 + - uid: 304 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,11.5 + parent: 1 + - uid: 306 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,10.5 + parent: 1 + - uid: 307 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,10.5 + parent: 1 + - uid: 308 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,9.5 + parent: 1 + - uid: 309 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,9.5 + parent: 1 + - uid: 310 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,9.5 + parent: 1 + - uid: 311 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,8.5 + parent: 1 + - uid: 312 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,8.5 + parent: 1 + - uid: 313 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,8.5 + parent: 1 + - uid: 314 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,7.5 + parent: 1 + - uid: 315 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,7.5 + parent: 1 + - uid: 316 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,6.5 + parent: 1 + - uid: 317 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,6.5 + parent: 1 + - uid: 318 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,5.5 + parent: 1 + - uid: 319 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,5.5 + parent: 1 + - uid: 320 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,5.5 + parent: 1 + - uid: 321 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,4.5 + parent: 1 + - uid: 322 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,4.5 + parent: 1 + - uid: 323 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,3.5 + parent: 1 + - uid: 324 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,3.5 + parent: 1 + - uid: 325 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,3.5 + parent: 1 + - uid: 326 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,2.5 + parent: 1 + - uid: 327 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,2.5 + parent: 1 + - uid: 328 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,2.5 + parent: 1 + - uid: 329 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,1.5 + parent: 1 + - uid: 330 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,1.5 + parent: 1 + - uid: 331 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,1.5 + parent: 1 + - uid: 332 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,0.5 + parent: 1 + - uid: 333 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,0.5 + parent: 1 + - uid: 334 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,7.5 + parent: 1 + - uid: 335 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,7.5 + parent: 1 + - uid: 336 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,6.5 + parent: 1 + - uid: 337 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,6.5 + parent: 1 + - uid: 338 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,5.5 + parent: 1 + - uid: 339 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,5.5 + parent: 1 + - uid: 340 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,5.5 + parent: 1 + - uid: 341 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,4.5 + parent: 1 + - uid: 342 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,4.5 + parent: 1 + - uid: 343 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,3.5 + parent: 1 + - uid: 344 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,3.5 + parent: 1 + - uid: 345 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,3.5 + parent: 1 + - uid: 346 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,2.5 + parent: 1 + - uid: 347 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,2.5 + parent: 1 + - uid: 348 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,2.5 + parent: 1 + - uid: 349 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,1.5 + parent: 1 + - uid: 350 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,1.5 + parent: 1 + - uid: 351 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,1.5 + parent: 1 + - uid: 352 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,0.5 + parent: 1 + - uid: 353 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,0.5 + parent: 1 + - uid: 354 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-9.5 + parent: 1 + - uid: 355 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-9.5 + parent: 1 + - uid: 356 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-8.5 + parent: 1 + - uid: 357 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-7.5 + parent: 1 + - uid: 358 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-7.5 + parent: 1 + - uid: 359 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-7.5 + parent: 1 + - uid: 360 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-7.5 + parent: 1 + - uid: 361 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-8.5 + parent: 1 + - uid: 362 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-9.5 + parent: 1 + - uid: 363 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-9.5 + parent: 1 + - uid: 364 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-6.5 + parent: 1 + - uid: 365 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-6.5 + parent: 1 + - uid: 366 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-5.5 + parent: 1 + - uid: 367 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-5.5 + parent: 1 + - uid: 368 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-8.5 + parent: 1 + - uid: 369 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-8.5 + parent: 1 + - uid: 370 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-9.5 + parent: 1 + - uid: 371 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-9.5 + parent: 1 +- proto: SolarTracker + entities: + - uid: 300 + components: + - type: Transform + pos: 0.5,15.5 + parent: 1 +- proto: SpawnMobWizFedWizard + entities: + - uid: 746 + components: + - type: Transform + pos: -0.5,-10.5 + parent: 1 + - uid: 773 + components: + - type: Transform + pos: 1.5,-7.5 + parent: 1 + - uid: 776 + components: + - type: Transform + pos: -0.5,0.5 + parent: 1 +- proto: SpawnMobWizFedWizardBlueHardsuit + entities: + - uid: 735 + components: + - type: Transform + pos: 0.5,-1.5 + parent: 1 +- proto: SpawnMobWizFedWizardRedHardsuit + entities: + - uid: 743 + components: + - type: Transform + pos: 1.5,-23.5 + parent: 1 +- proto: SpawnMobWizFedWizardSoap + entities: + - uid: 742 + components: + - type: Transform + pos: 1.5,-24.5 + parent: 1 +- proto: SpawnMobWizFedWizardSoapHardsuit + entities: + - uid: 745 + components: + - type: Transform + pos: 1.5,-1.5 + parent: 1 +- proto: SpawnMobWizFedWizardVioletHardsuit + entities: + - uid: 741 + components: + - type: Transform + pos: 5.5,-12.5 + parent: 1 +- proto: SpawnPointLatejoin + entities: + - uid: 902 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-2.5 + parent: 1 +- proto: StunRune + entities: + - uid: 581 + components: + - type: Transform + pos: -0.5,-3.5 + parent: 1 + - uid: 588 + components: + - type: Transform + pos: 0.5,-3.5 + parent: 1 + - uid: 778 + components: + - type: Transform + pos: 1.5,-3.5 + parent: 1 +- proto: SubstationWallBasic + entities: + - uid: 445 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-21.5 + parent: 1 + - uid: 740 + components: + - type: Transform + pos: -1.5,-17.5 + parent: 1 +- proto: SuitStorageBase + entities: + - uid: 675 + components: + - type: Transform + pos: 0.5,-25.5 + parent: 1 + - uid: 677 + components: + - type: Transform + pos: 2.5,-1.5 + parent: 1 + - uid: 678 + components: + - type: Transform + pos: 2.5,-14.5 + parent: 1 +- proto: SurveillanceCameraGeneral + entities: + - uid: 683 + components: + - type: Transform + pos: 0.5,10.5 + parent: 1 + - uid: 684 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-16.5 + parent: 1 + - uid: 686 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-29.5 + parent: 1 +- proto: SurveillanceCameraRouterGeneral + entities: + - uid: 687 + components: + - type: Transform + pos: 2.5,-24.5 + parent: 1 +- proto: TableCarpet + entities: + - uid: 583 + components: + - type: Transform + pos: 6.5,-12.5 + parent: 1 + - uid: 730 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-11.5 + parent: 1 + - uid: 888 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-18.5 + parent: 1 +- proto: TableWood + entities: + - uid: 489 + components: + - type: Transform + pos: 1.5,1.5 + parent: 1 + - uid: 490 + components: + - type: Transform + pos: -0.5,1.5 + parent: 1 + - uid: 492 + components: + - type: Transform + pos: 0.5,1.5 + parent: 1 + - uid: 496 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,0.5 + parent: 1 + - uid: 503 + components: + - type: Transform + pos: -2.5,0.5 + parent: 1 + - uid: 504 + components: + - type: Transform + pos: 1.5,0.5 + parent: 1 + - uid: 639 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-1.5 + parent: 1 +- proto: Thruster + entities: + - uid: 203 + components: + - type: Transform + pos: 2.5,-28.5 + parent: 1 + - uid: 204 + components: + - type: Transform + pos: -1.5,-28.5 + parent: 1 + - uid: 205 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-30.5 + parent: 1 + - uid: 206 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-30.5 + parent: 1 + - uid: 208 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-29.5 + parent: 1 + - uid: 209 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-29.5 + parent: 1 + - uid: 210 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-31.5 + parent: 1 + - uid: 211 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-31.5 + parent: 1 + - uid: 212 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-31.5 + parent: 1 +- proto: UraniumSecretDoor + entities: + - uid: 9 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 0.5,-28.5 + parent: 1 + - uid: 672 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 0.5,-26.5 + parent: 1 + - uid: 692 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-14.5 + parent: 1 +- proto: WallUranium + entities: + - uid: 48 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -1.5,-2.5 + parent: 1 + - uid: 51 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 2.5,-3.5 + parent: 1 + - uid: 52 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -1.5,-3.5 + parent: 1 + - uid: 53 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 2.5,-2.5 + parent: 1 + - uid: 54 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -2.5,-2.5 + parent: 1 + - uid: 57 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 2.5,-4.5 + parent: 1 + - uid: 58 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 3.5,-1.5 + parent: 1 + - uid: 59 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -2.5,-1.5 + parent: 1 + - uid: 60 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -3.5,1.5 + parent: 1 + - uid: 61 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -3.5,-1.5 + parent: 1 + - uid: 62 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -1.5,-4.5 + parent: 1 + - uid: 63 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 3.5,-2.5 + parent: 1 + - uid: 64 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 4.5,-1.5 + parent: 1 + - uid: 65 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 4.5,1.5 + parent: 1 + - uid: 67 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -1.5,-7.5 + parent: 1 + - uid: 68 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -1.5,-8.5 + parent: 1 + - uid: 71 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 2.5,-5.5 + parent: 1 + - uid: 72 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 2.5,-9.5 + parent: 1 + - uid: 73 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -1.5,-11.5 + parent: 1 + - uid: 74 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -1.5,2.5 + parent: 1 + - uid: 75 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 2.5,-8.5 + parent: 1 + - uid: 76 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 2.5,2.5 + parent: 1 + - uid: 77 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -1.5,1.5 + parent: 1 + - uid: 78 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 2.5,1.5 + parent: 1 + - uid: 79 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 2.5,-12.5 + parent: 1 + - uid: 80 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 3.5,-13.5 + parent: 1 + - uid: 90 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -1.5,-12.5 + parent: 1 + - uid: 91 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -1.5,-15.5 + parent: 1 + - uid: 92 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -1.5,-16.5 + parent: 1 + - uid: 93 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 3.5,-16.5 + parent: 1 + - uid: 94 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 3.5,-15.5 + parent: 1 + - uid: 95 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 4.5,-15.5 + parent: 1 + - uid: 96 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 5.5,-14.5 + parent: 1 + - uid: 98 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 6.5,-13.5 + parent: 1 + - uid: 99 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 4.5,-12.5 + parent: 1 + - uid: 100 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 4.5,-10.5 + parent: 1 + - uid: 101 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -2.5,-25.5 + parent: 1 + - uid: 102 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 3.5,-17.5 + parent: 1 + - uid: 103 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -2.5,-17.5 + parent: 1 + - uid: 104 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -2.5,-20.5 + parent: 1 + - uid: 108 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 7.5,-10.5 + parent: 1 + - uid: 109 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 7.5,-13.5 + parent: 1 + - uid: 111 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -2.5,-18.5 + parent: 1 + - uid: 186 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -2.5,-19.5 + parent: 1 + - uid: 187 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 3.5,-24.5 + parent: 1 + - uid: 188 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -2.5,-21.5 + parent: 1 + - uid: 189 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -1.5,-25.5 + parent: 1 + - uid: 190 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -0.5,-25.5 + parent: 1 + - uid: 191 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 3.5,-25.5 + parent: 1 + - uid: 192 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 2.5,-25.5 + parent: 1 + - uid: 193 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 1.5,-25.5 + parent: 1 + - uid: 194 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -0.5,-26.5 + parent: 1 + - uid: 199 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 1.5,-26.5 + parent: 1 + - uid: 200 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -0.5,-27.5 + parent: 1 + - uid: 201 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 1.5,-27.5 + parent: 1 + - uid: 396 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -1.5,-17.5 + parent: 1 + - uid: 399 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -0.5,-28.5 + parent: 1 + - uid: 400 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 1.5,-28.5 + parent: 1 + - uid: 403 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 2.5,-13.5 + parent: 1 + - uid: 406 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -0.5,-21.5 + parent: 1 + - uid: 434 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -1.5,-21.5 + parent: 1 + - uid: 497 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 0.5,-20.5 + parent: 1 + - uid: 498 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 0.5,-17.5 + parent: 1 + - uid: 499 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 0.5,-21.5 + parent: 1 +- proto: WallUraniumDiagonal + entities: + - uid: 673 + components: + - type: Transform + pos: 3.5,-12.5 + parent: 1 + - uid: 679 + components: + - type: Transform + pos: -2.5,-16.5 + parent: 1 + - uid: 680 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-3.5 + parent: 1 + - uid: 681 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-2.5 + parent: 1 + - uid: 682 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-3.5 + parent: 1 + - uid: 685 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-2.5 + parent: 1 + - uid: 689 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-14.5 + parent: 1 + - uid: 690 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-15.5 + parent: 1 + - uid: 691 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-16.5 + parent: 1 + - uid: 693 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-26.5 + parent: 1 + - uid: 739 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-26.5 + parent: 1 +- proto: WarpPointShip + entities: + - uid: 903 + components: + - type: MetaData + name: Wizard Federation Probe + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-2.5 + parent: 1 +- proto: WaterCooler + entities: + - uid: 756 + components: + - type: Transform + pos: 0.5,-16.5 + parent: 1 +- proto: WoodenSupportBeam + entities: + - uid: 734 + components: + - type: Transform + pos: 0.5,9.5 + parent: 1 +... diff --git a/Resources/Maps/_NF/Outpost/frontier.yml b/Resources/Maps/_NF/Outpost/frontier.yml index c6312f78989..5c2f48fa377 100644 --- a/Resources/Maps/_NF/Outpost/frontier.yml +++ b/Resources/Maps/_NF/Outpost/frontier.yml @@ -12,21 +12,21 @@ tilemap: 46: FloorGlass 63: FloorLino 65: FloorMetalDiamond - 82: FloorShuttleBlue - 90: FloorSteel - 97: FloorSteelDirty - 100: FloorSteelMini - 101: FloorSteelMono - 102: FloorSteelOffset - 103: FloorSteelPavement - 104: FloorSteelPavementVertical - 105: FloorTechMaint - 106: FloorTechMaint2 - 109: FloorWhite - 116: FloorWhitePavement - 119: FloorWood - 121: Lattice - 122: Plating + 83: FloorShuttleBlue + 92: FloorSteel + 99: FloorSteelDirty + 102: FloorSteelMini + 103: FloorSteelMono + 104: FloorSteelOffset + 105: FloorSteelPavement + 106: FloorSteelPavementVertical + 107: FloorTechMaint + 108: FloorTechMaint2 + 111: FloorWhite + 118: FloorWhitePavement + 121: FloorWood + 124: Lattice + 125: Plating entities: - proto: "" entities: @@ -53,131 +53,131 @@ entities: chunks: 0,0: ind: 0,0 - tiles: aAAAAAACegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAWgAAAAABWgAAAAAAWgAAAAACWgAAAAADWgAAAAACWgAAAAADWgAAAAABWgAAAAADWgAAAAAAWgAAAAABWgAAAAAAWgAAAAACWgAAAAAAWgAAAAACWgAAAAACaQAAAAAAWgAAAAABWgAAAAAAWgAAAAAAWgAAAAADWgAAAAADWgAAAAACWgAAAAADWgAAAAADWgAAAAADWgAAAAADWgAAAAADWgAAAAACWgAAAAAAWgAAAAADWgAAAAABaQAAAAAAWgAAAAABWgAAAAAAWgAAAAABWgAAAAADWgAAAAACWgAAAAADWgAAAAABWgAAAAAAWgAAAAABWgAAAAABWgAAAAABWgAAAAACWgAAAAAAWgAAAAADWgAAAAACaQAAAAAAWgAAAAADWgAAAAAAWgAAAAAAWgAAAAACWgAAAAAAWgAAAAADWgAAAAABWgAAAAADWgAAAAADWgAAAAADWgAAAAAAWgAAAAABWgAAAAADWgAAAAADWgAAAAABaQAAAAAAWgAAAAAAWgAAAAADWgAAAAADWgAAAAACWgAAAAABWgAAAAADWgAAAAAAWgAAAAACWgAAAAAAWgAAAAABWgAAAAADWgAAAAACWgAAAAAAWgAAAAADWgAAAAADaQAAAAAAWgAAAAAAWgAAAAABWgAAAAADWgAAAAAAWgAAAAACWgAAAAAAWgAAAAAAWgAAAAAAWgAAAAABegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWgAAAAAAZgAAAAAAHgAAAAAAHgAAAAADHgAAAAABegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZgAAAAAAZgAAAAAAHgAAAAADHgAAAAAAHgAAAAADegAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAABHgAAAAADHgAAAAABLgAAAAAAHgAAAAAAegAAAAAAAAAAAAAAegAAAAAAHgAAAAABLgAAAAADHgAAAAABLgAAAAADHgAAAAABLgAAAAABHgAAAAACHgAAAAABWgAAAAADHgAAAAACHgAAAAAAHgAAAAAAHgAAAAACegAAAAAAAAAAAAAAegAAAAAAHgAAAAACLgAAAAADHgAAAAAALgAAAAABHgAAAAABLgAAAAABHgAAAAABHgAAAAABZgAAAAAAZgAAAAAAHgAAAAAALgAAAAAAHgAAAAADegAAAAAAAAAAAAAAegAAAAAAHgAAAAACHgAAAAADHgAAAAAAHgAAAAADHgAAAAACHgAAAAAAHgAAAAACHgAAAAADWgAAAAAAZgAAAAAAHgAAAAAAHgAAAAADHgAAAAACegAAAAAAAAAAAAAAegAAAAAAHgAAAAABHgAAAAABHgAAAAADHgAAAAACHgAAAAAAHgAAAAABHgAAAAABHgAAAAABegAAAAAAWgAAAAADHgAAAAACLgAAAAADHgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAHgAAAAABHgAAAAADHgAAAAACLgAAAAACLgAAAAACHgAAAAACWgAAAAADaQAAAAAAHgAAAAACHgAAAAAAHgAAAAABaQAAAAAAHgAAAAACHgAAAAAAHgAAAAACaQAAAAAAHgAAAAABHgAAAAAALgAAAAABHgAAAAACHgAAAAACLgAAAAAB + tiles: agAAAAACfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAawAAAAAAfQAAAAAAXAAAAAABXAAAAAAAXAAAAAACXAAAAAADXAAAAAACXAAAAAADXAAAAAABXAAAAAADXAAAAAAAXAAAAAABXAAAAAAAXAAAAAACXAAAAAAAXAAAAAACXAAAAAACawAAAAAAXAAAAAABXAAAAAAAXAAAAAAAXAAAAAADXAAAAAADXAAAAAACXAAAAAADXAAAAAADXAAAAAADXAAAAAADXAAAAAADXAAAAAACXAAAAAAAXAAAAAADXAAAAAABawAAAAAAXAAAAAABXAAAAAAAXAAAAAABXAAAAAADXAAAAAACXAAAAAADXAAAAAABXAAAAAAAXAAAAAABXAAAAAABXAAAAAABXAAAAAACXAAAAAAAXAAAAAADXAAAAAACawAAAAAAXAAAAAADXAAAAAAAXAAAAAAAXAAAAAACXAAAAAAAXAAAAAADXAAAAAABXAAAAAADXAAAAAADXAAAAAADXAAAAAAAXAAAAAABXAAAAAADXAAAAAADXAAAAAABawAAAAAAXAAAAAAAXAAAAAADXAAAAAADXAAAAAACXAAAAAABXAAAAAADXAAAAAAAXAAAAAACXAAAAAAAXAAAAAABXAAAAAADXAAAAAACXAAAAAAAXAAAAAADXAAAAAADawAAAAAAXAAAAAAAXAAAAAABXAAAAAADXAAAAAAAXAAAAAACXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAABfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAawAAAAAAawAAAAAAawAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAaAAAAAAAHgAAAAAAHgAAAAADHgAAAAABfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAaAAAAAAAHgAAAAADHgAAAAAAHgAAAAADfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAXAAAAAABHgAAAAADHgAAAAABLgAAAAAAHgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAHgAAAAABLgAAAAADHgAAAAABLgAAAAADHgAAAAABLgAAAAABHgAAAAACHgAAAAABXAAAAAADHgAAAAACHgAAAAAAHgAAAAAAHgAAAAACfQAAAAAAAAAAAAAAfQAAAAAAHgAAAAACLgAAAAADHgAAAAAALgAAAAABHgAAAAABLgAAAAABHgAAAAABHgAAAAABaAAAAAAAaAAAAAAAHgAAAAAALgAAAAAAHgAAAAADfQAAAAAAAAAAAAAAfQAAAAAAHgAAAAACHgAAAAADHgAAAAAAHgAAAAADHgAAAAACHgAAAAAAHgAAAAACHgAAAAADXAAAAAAAaAAAAAAAHgAAAAAAHgAAAAADHgAAAAACfQAAAAAAAAAAAAAAfQAAAAAAHgAAAAABHgAAAAABHgAAAAADHgAAAAACHgAAAAAAHgAAAAABHgAAAAABHgAAAAABfQAAAAAAXAAAAAADHgAAAAACLgAAAAADHgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHgAAAAABHgAAAAADHgAAAAACLgAAAAACLgAAAAACHgAAAAACXAAAAAADawAAAAAAHgAAAAACHgAAAAAAHgAAAAABawAAAAAAHgAAAAACHgAAAAAAHgAAAAACawAAAAAAHgAAAAABHgAAAAAALgAAAAABHgAAAAACHgAAAAACLgAAAAAB version: 6 -1,0: ind: -1,0 - tiles: egAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaAAAAAABegAAAAAAWgAAAAADWgAAAAACWgAAAAACWgAAAAACWgAAAAABWgAAAAACWgAAAAACWgAAAAACWgAAAAACWgAAAAABWgAAAAACWgAAAAABWgAAAAADegAAAAAAaQAAAAAAegAAAAAAWgAAAAADWgAAAAABWgAAAAAAWgAAAAACWgAAAAAAWgAAAAABWgAAAAADWgAAAAABWgAAAAACWgAAAAACWgAAAAACWgAAAAABWgAAAAABaQAAAAAAWgAAAAADWgAAAAACWgAAAAADWgAAAAACWgAAAAABWgAAAAABWgAAAAACWgAAAAAAWgAAAAACWgAAAAAAWgAAAAABWgAAAAAAWgAAAAADWgAAAAAAWgAAAAABaQAAAAAAWgAAAAADWgAAAAACWgAAAAABWgAAAAADWgAAAAAAWgAAAAADWgAAAAAAWgAAAAACWgAAAAADWgAAAAAAWgAAAAAAWgAAAAABWgAAAAACWgAAAAABWgAAAAACaQAAAAAAWgAAAAACWgAAAAABWgAAAAADWgAAAAABWgAAAAABWgAAAAABWgAAAAACWgAAAAABWgAAAAAAWgAAAAABWgAAAAABWgAAAAACWgAAAAABWgAAAAAAWgAAAAACaQAAAAAAWgAAAAAAWgAAAAACegAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAAAWgAAAAADWgAAAAADWgAAAAABWgAAAAADWgAAAAADWgAAAAACWgAAAAABWgAAAAABaQAAAAAAWgAAAAABWgAAAAABAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAHgAAAAACHgAAAAACHgAAAAADZgAAAAAAWgAAAAADZgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAHgAAAAADHgAAAAACHgAAAAACZgAAAAAAZgAAAAAAZgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAHgAAAAADLgAAAAAAHgAAAAAAHgAAAAACWgAAAAABWgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAHgAAAAADHgAAAAADHgAAAAABHgAAAAACWgAAAAACWgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAHgAAAAACLgAAAAABHgAAAAABZgAAAAAAZgAAAAAAZgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAHgAAAAACHgAAAAADHgAAAAABZgAAAAAAWgAAAAAAZgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAHgAAAAAALgAAAAADHgAAAAAAWgAAAAABegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaQAAAAAAZwAAAAABaQAAAAAAHgAAAAAAHgAAAAADHgAAAAADaQAAAAAAWgAAAAADWgAAAAAA + tiles: fQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAagAAAAABfQAAAAAAXAAAAAADXAAAAAACXAAAAAACXAAAAAACXAAAAAABXAAAAAACXAAAAAACXAAAAAACXAAAAAACXAAAAAABXAAAAAACXAAAAAABXAAAAAADfQAAAAAAawAAAAAAfQAAAAAAXAAAAAADXAAAAAABXAAAAAAAXAAAAAACXAAAAAAAXAAAAAABXAAAAAADXAAAAAABXAAAAAACXAAAAAACXAAAAAACXAAAAAABXAAAAAABawAAAAAAXAAAAAADXAAAAAACXAAAAAADXAAAAAACXAAAAAABXAAAAAABXAAAAAACXAAAAAAAXAAAAAACXAAAAAAAXAAAAAABXAAAAAAAXAAAAAADXAAAAAAAXAAAAAABawAAAAAAXAAAAAADXAAAAAACXAAAAAABXAAAAAADXAAAAAAAXAAAAAADXAAAAAAAXAAAAAACXAAAAAADXAAAAAAAXAAAAAAAXAAAAAABXAAAAAACXAAAAAABXAAAAAACawAAAAAAXAAAAAACXAAAAAABXAAAAAADXAAAAAABXAAAAAABXAAAAAABXAAAAAACXAAAAAABXAAAAAAAXAAAAAABXAAAAAABXAAAAAACXAAAAAABXAAAAAAAXAAAAAACawAAAAAAXAAAAAAAXAAAAAACfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAXAAAAAAAXAAAAAADXAAAAAADXAAAAAABXAAAAAADXAAAAAADXAAAAAACXAAAAAABXAAAAAABawAAAAAAXAAAAAABXAAAAAABAAAAAAAAAAAAAAAAfAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAawAAAAAAawAAAAAAawAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAHgAAAAACHgAAAAACHgAAAAADaAAAAAAAXAAAAAADaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAHgAAAAADHgAAAAACHgAAAAACaAAAAAAAaAAAAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAHgAAAAADLgAAAAAAHgAAAAAAHgAAAAACXAAAAAABXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAHgAAAAADHgAAAAADHgAAAAABHgAAAAACXAAAAAACXAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAHgAAAAACLgAAAAABHgAAAAABaAAAAAAAaAAAAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAHgAAAAACHgAAAAADHgAAAAABaAAAAAAAXAAAAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHgAAAAAALgAAAAADHgAAAAAAXAAAAAABfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAawAAAAAAaQAAAAABawAAAAAAHgAAAAAAHgAAAAADHgAAAAADawAAAAAAXAAAAAADXAAAAAAA version: 6 1,0: ind: 1,0 - tiles: egAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAegAAAAAAWgAAAAAAWgAAAAACWgAAAAABWgAAAAACWgAAAAADWgAAAAABWgAAAAACWgAAAAABWgAAAAAAWgAAAAACaQAAAAAAWgAAAAADWgAAAAABWgAAAAACWgAAAAADWgAAAAADWgAAAAACWgAAAAACWgAAAAABWgAAAAADWgAAAAADWgAAAAADWgAAAAADWgAAAAABWgAAAAADWgAAAAAAaQAAAAAAWgAAAAADWgAAAAACWgAAAAABWgAAAAAAWgAAAAAAWgAAAAACWgAAAAACWgAAAAACWgAAAAABWgAAAAACWgAAAAAAWgAAAAAAWgAAAAAAWgAAAAABWgAAAAABaQAAAAAAWgAAAAABWgAAAAACWgAAAAADWgAAAAACWgAAAAABWgAAAAABWgAAAAAAWgAAAAACWgAAAAACWgAAAAABWgAAAAACWgAAAAACWgAAAAACWgAAAAAAWgAAAAACaQAAAAAAWgAAAAACWgAAAAACWgAAAAACWgAAAAADWgAAAAADWgAAAAADegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAACWgAAAAAAWgAAAAADWgAAAAAAWgAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAegAAAAAAdAAAAAAAdAAAAAAAdAAAAAAAegAAAAAAaQAAAAAAaQAAAAAAegAAAAAAegAAAAAAHgAAAAABHgAAAAAAegAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAegAAAAAAegAAAAAAHgAAAAADHgAAAAADaQAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAaQAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAegAAAAAAaQAAAAAAaQAAAAAAegAAAAAAegAAAAAAHgAAAAACHgAAAAAAegAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAegAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAegAAAAAAaQAAAAAAaQAAAAAAegAAAAAAegAAAAAAHgAAAAACHgAAAAABegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAHgAAAAABHgAAAAABHwAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAHgAAAAACHgAAAAADegAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAA + tiles: fQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAawAAAAAAawAAAAAAawAAAAAAfQAAAAAAfQAAAAAAXAAAAAAAXAAAAAACXAAAAAABXAAAAAACXAAAAAADXAAAAAABXAAAAAACXAAAAAABXAAAAAAAXAAAAAACawAAAAAAXAAAAAADXAAAAAABXAAAAAACXAAAAAADXAAAAAADXAAAAAACXAAAAAACXAAAAAABXAAAAAADXAAAAAADXAAAAAADXAAAAAADXAAAAAABXAAAAAADXAAAAAAAawAAAAAAXAAAAAADXAAAAAACXAAAAAABXAAAAAAAXAAAAAAAXAAAAAACXAAAAAACXAAAAAACXAAAAAABXAAAAAACXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAABXAAAAAABawAAAAAAXAAAAAABXAAAAAACXAAAAAADXAAAAAACXAAAAAABXAAAAAABXAAAAAAAXAAAAAACXAAAAAACXAAAAAABXAAAAAACXAAAAAACXAAAAAACXAAAAAAAXAAAAAACawAAAAAAXAAAAAACXAAAAAACXAAAAAACXAAAAAADXAAAAAADXAAAAAADfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAXAAAAAACXAAAAAAAXAAAAAADXAAAAAAAXAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAawAAAAAAawAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAfQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAfQAAAAAAawAAAAAAawAAAAAAfQAAAAAAfQAAAAAAHgAAAAABHgAAAAAAfQAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAfQAAAAAAawAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAawAAAAAAawAAAAAAfQAAAAAAfQAAAAAAHgAAAAADHgAAAAADawAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAawAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAfQAAAAAAawAAAAAAawAAAAAAfQAAAAAAfQAAAAAAHgAAAAACHgAAAAAAfQAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAfQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAfQAAAAAAawAAAAAAawAAAAAAfQAAAAAAfQAAAAAAHgAAAAACHgAAAAABfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHgAAAAABHgAAAAABHwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHgAAAAACHgAAAAADfQAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAZgAAAAAA version: 6 -2,0: ind: -2,0 - tiles: egAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAAAWgAAAAABWgAAAAACWgAAAAACaQAAAAAAWgAAAAABWgAAAAAAWgAAAAAAWgAAAAACWgAAAAACWgAAAAADWgAAAAAAWgAAAAACWgAAAAACWgAAAAAAWgAAAAAAWgAAAAAAWgAAAAABWgAAAAADWgAAAAADaQAAAAAAWgAAAAABWgAAAAADWgAAAAADWgAAAAABWgAAAAACWgAAAAACWgAAAAACWgAAAAACWgAAAAAAWgAAAAADWgAAAAACWgAAAAAAWgAAAAADWgAAAAADWgAAAAACaQAAAAAAWgAAAAABWgAAAAAAWgAAAAACWgAAAAADWgAAAAACWgAAAAADWgAAAAACWgAAAAACWgAAAAAAWgAAAAABWgAAAAACWgAAAAADWgAAAAABWgAAAAABWgAAAAACaQAAAAAAWgAAAAADWgAAAAABWgAAAAADWgAAAAAAWgAAAAADWgAAAAABWgAAAAABWgAAAAADWgAAAAADWgAAAAABWgAAAAADWgAAAAADegAAAAAAWgAAAAAAWgAAAAACegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAABWgAAAAACWgAAAAABegAAAAAAaQAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAACegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAWgAAAAABegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAWgAAAAACegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAWgAAAAADegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAWgAAAAADWgAAAAABWgAAAAAAWgAAAAAAWgAAAAADWgAAAAADegAAAAAAaQAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAAAAAAAAAWgAAAAABWgAAAAABWgAAAAABWgAAAAACWgAAAAABWgAAAAACaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAHgAAAAAAHgAAAAACHgAAAAADegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAHgAAAAACHgAAAAABHgAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAA + tiles: fQAAAAAAawAAAAAAawAAAAAAawAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAXAAAAAAAXAAAAAABXAAAAAACXAAAAAACawAAAAAAXAAAAAABXAAAAAAAXAAAAAAAXAAAAAACXAAAAAACXAAAAAADXAAAAAAAXAAAAAACXAAAAAACXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAABXAAAAAADXAAAAAADawAAAAAAXAAAAAABXAAAAAADXAAAAAADXAAAAAABXAAAAAACXAAAAAACXAAAAAACXAAAAAACXAAAAAAAXAAAAAADXAAAAAACXAAAAAAAXAAAAAADXAAAAAADXAAAAAACawAAAAAAXAAAAAABXAAAAAAAXAAAAAACXAAAAAADXAAAAAACXAAAAAADXAAAAAACXAAAAAACXAAAAAAAXAAAAAABXAAAAAACXAAAAAADXAAAAAABXAAAAAABXAAAAAACawAAAAAAXAAAAAADXAAAAAABXAAAAAADXAAAAAAAXAAAAAADXAAAAAABXAAAAAABXAAAAAADXAAAAAADXAAAAAABXAAAAAADXAAAAAADfQAAAAAAXAAAAAAAXAAAAAACfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAXAAAAAABXAAAAAACXAAAAAABfQAAAAAAawAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAXAAAAAACfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAXAAAAAABfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAXAAAAAACfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAXAAAAAADfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAXAAAAAADXAAAAAABXAAAAAAAXAAAAAAAXAAAAAADXAAAAAADfQAAAAAAawAAAAAAawAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAawAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAXAAAAAABXAAAAAABXAAAAAABXAAAAAACXAAAAAABXAAAAAACawAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAawAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAawAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAawAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHgAAAAAAHgAAAAACHgAAAAADfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHgAAAAACHgAAAAABHgAAAAAAfQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAawAAAAAA version: 6 -2,-1: ind: -2,-1 - tiles: egAAAAAAWgAAAAADWgAAAAABWgAAAAACegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAWgAAAAABWgAAAAACWgAAAAACegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAWgAAAAABWgAAAAACWgAAAAABegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAWgAAAAAAWgAAAAABWgAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAWgAAAAACWgAAAAADWgAAAAACegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAWgAAAAACWgAAAAACWgAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAWgAAAAADWgAAAAACWgAAAAABegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAWgAAAAAAWgAAAAADWgAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAWgAAAAAAWgAAAAABWgAAAAACegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAWgAAAAACWgAAAAADWgAAAAACegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAWgAAAAABWgAAAAACWgAAAAACegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAWgAAAAAAWgAAAAAAWgAAAAACegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAWgAAAAAAWgAAAAABWgAAAAADegAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: fQAAAAAAXAAAAAADXAAAAAABXAAAAAACfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAXAAAAAABXAAAAAACXAAAAAACfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAXAAAAAABXAAAAAACXAAAAAABfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAXAAAAAAAXAAAAAABXAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAawAAAAAAawAAAAAAawAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAXAAAAAACXAAAAAADXAAAAAACfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAXAAAAAACXAAAAAACXAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAXAAAAAADXAAAAAACXAAAAAABfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAXAAAAAAAXAAAAAADXAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAXAAAAAAAXAAAAAABXAAAAAACfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAXAAAAAACXAAAAAADXAAAAAACfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAXAAAAAABXAAAAAACXAAAAAACfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAXAAAAAAAXAAAAAAAXAAAAAACfQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAXAAAAAAAXAAAAAABXAAAAAADfQAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -2,-2: ind: -2,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAaAAAAAABaAAAAAAAaAAAAAADegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaQAAAAAAWgAAAAADWgAAAAABWgAAAAABaQAAAAAAZwAAAAADegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaQAAAAAAWgAAAAABWgAAAAAAWgAAAAABaQAAAAAAZwAAAAADegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaQAAAAAAWgAAAAABWgAAAAACWgAAAAADaQAAAAAAZwAAAAACegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAWgAAAAABWgAAAAADWgAAAAADegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAWgAAAAAAWgAAAAACWgAAAAADegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAWgAAAAACWgAAAAADWgAAAAADegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAWgAAAAACWgAAAAADWgAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAWgAAAAAAWgAAAAACWgAAAAABegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAWgAAAAABWgAAAAABWgAAAAACegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAWgAAAAABWgAAAAADWgAAAAADegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAWgAAAAACWgAAAAAAWgAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAagAAAAABagAAAAAAagAAAAADfQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAawAAAAAAawAAAAAAawAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAawAAAAAAXAAAAAADXAAAAAABXAAAAAABawAAAAAAaQAAAAADfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAawAAAAAAXAAAAAABXAAAAAAAXAAAAAABawAAAAAAaQAAAAADfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAawAAAAAAXAAAAAABXAAAAAACXAAAAAADawAAAAAAaQAAAAACfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAawAAAAAAawAAAAAAawAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAXAAAAAABXAAAAAADXAAAAAADfQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAXAAAAAAAXAAAAAACXAAAAAADfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAXAAAAAACXAAAAAADXAAAAAADfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAXAAAAAACXAAAAAADXAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAXAAAAAAAXAAAAAACXAAAAAABfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAXAAAAAABXAAAAAABXAAAAAACfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAXAAAAAABXAAAAAADXAAAAAADfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAXAAAAAACXAAAAAAAXAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 1,-1: ind: 1,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAWgAAAAADWgAAAAADWgAAAAABegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAWgAAAAABWgAAAAADWgAAAAABegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAWgAAAAADWgAAAAABWgAAAAABegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAWgAAAAADWgAAAAADWgAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAWgAAAAACWgAAAAACWgAAAAABegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAWgAAAAACWgAAAAAAWgAAAAABegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAWgAAAAABWgAAAAADWgAAAAADegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAWgAAAAABWgAAAAADWgAAAAACegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAWgAAAAACWgAAAAACWgAAAAACegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAWgAAAAACWgAAAAACWgAAAAACegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAWgAAAAACWgAAAAADWgAAAAADegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAWgAAAAAAWgAAAAACWgAAAAADegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAWgAAAAAAWgAAAAABWgAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAWgAAAAACWgAAAAAAWgAAAAACegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAegAAAAAAWgAAAAACWgAAAAADWgAAAAACegAAAAAAeQAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAXAAAAAADXAAAAAADXAAAAAABfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAXAAAAAABXAAAAAADXAAAAAABfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAXAAAAAADXAAAAAABXAAAAAABfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAXAAAAAADXAAAAAADXAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAXAAAAAACXAAAAAACXAAAAAABfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAawAAAAAAawAAAAAAawAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAXAAAAAACXAAAAAAAXAAAAAABfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAXAAAAAABXAAAAAADXAAAAAADfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAXAAAAAABXAAAAAADXAAAAAACfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAXAAAAAACXAAAAAACXAAAAAACfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAXAAAAAACXAAAAAACXAAAAAACfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAXAAAAAACXAAAAAADXAAAAAADfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAXAAAAAAAXAAAAAACXAAAAAADfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAXAAAAAAAXAAAAAABXAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfQAAAAAAXAAAAAACXAAAAAAAXAAAAAACfQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfQAAAAAAXAAAAAACXAAAAAADXAAAAAACfQAAAAAAfAAAAAAA version: 6 1,-2: ind: 1,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAaAAAAAADaAAAAAAAaAAAAAACegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAZwAAAAADaQAAAAAAWgAAAAABWgAAAAADWgAAAAAAaQAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAZwAAAAABaQAAAAAAWgAAAAAAWgAAAAADWgAAAAACaQAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAZwAAAAADaQAAAAAAWgAAAAACWgAAAAABWgAAAAABaQAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAWgAAAAADWgAAAAACWgAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAWgAAAAABWgAAAAAAWgAAAAADegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAWgAAAAADWgAAAAADWgAAAAABegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAWgAAAAADWgAAAAADWgAAAAACegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAWgAAAAAAWgAAAAAAWgAAAAADegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAWgAAAAACWgAAAAADWgAAAAADegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAWgAAAAABWgAAAAADWgAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAWgAAAAAAWgAAAAADWgAAAAACegAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfQAAAAAAagAAAAADagAAAAAAagAAAAACfQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAawAAAAAAawAAAAAAawAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAaQAAAAADawAAAAAAXAAAAAABXAAAAAADXAAAAAAAawAAAAAAaQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAaQAAAAABawAAAAAAXAAAAAAAXAAAAAADXAAAAAACawAAAAAAaQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAaQAAAAADawAAAAAAXAAAAAACXAAAAAABXAAAAAABawAAAAAAaQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAawAAAAAAawAAAAAAawAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfQAAAAAAXAAAAAADXAAAAAACXAAAAAAAfQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAXAAAAAABXAAAAAAAXAAAAAADfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAXAAAAAADXAAAAAADXAAAAAABfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAXAAAAAADXAAAAAADXAAAAAACfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAXAAAAAAAXAAAAAAAXAAAAAADfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAXAAAAAACXAAAAAADXAAAAAADfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAXAAAAAABXAAAAAADXAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAXAAAAAAAXAAAAAADXAAAAAACfQAAAAAAAAAAAAAA version: 6 -3,-2: ind: -3,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAZwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAZwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAZwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAaQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAaQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAaQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -3,0: ind: -3,0 - tiles: egAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAbQAAAAABegAAAAAAWgAAAAACWgAAAAADWgAAAAACWgAAAAACWgAAAAABWgAAAAABWgAAAAAAWgAAAAADWgAAAAABWgAAAAACWgAAAAAAWgAAAAABWgAAAAABWgAAAAACbQAAAAABaQAAAAAAWgAAAAACWgAAAAAAWgAAAAACWgAAAAAAWgAAAAAAWgAAAAACWgAAAAADWgAAAAABWgAAAAACWgAAAAACWgAAAAABWgAAAAAAWgAAAAAAWgAAAAABbQAAAAAAaQAAAAAAWgAAAAAAWgAAAAADWgAAAAACWgAAAAACWgAAAAADWgAAAAACWgAAAAADWgAAAAABWgAAAAAAWgAAAAADWgAAAAACWgAAAAABWgAAAAABWgAAAAADbQAAAAACaQAAAAAAWgAAAAAAWgAAAAABWgAAAAADWgAAAAACWgAAAAAAWgAAAAABWgAAAAACWgAAAAADWgAAAAAAWgAAAAAAWgAAAAADWgAAAAAAWgAAAAAAWgAAAAADbQAAAAAAegAAAAAAWgAAAAADWgAAAAAAWgAAAAAAWgAAAAABWgAAAAABWgAAAAADWgAAAAABWgAAAAABWgAAAAAAWgAAAAABWgAAAAABegAAAAAAWgAAAAAAWgAAAAACbQAAAAABegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAWgAAAAADWgAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAZQAAAAABWgAAAAAAbQAAAAAAaQAAAAAAbQAAAAAAbQAAAAADegAAAAAAegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAZQAAAAADWgAAAAABbQAAAAACaQAAAAAAIgAAAAABIgAAAAADIgAAAAADegAAAAAAaQAAAAAAWgAAAAABWgAAAAACaQAAAAAAegAAAAAAIwAAAAABIwAAAAACIwAAAAAAWgAAAAABWgAAAAACegAAAAAAegAAAAAAIgAAAAAAIgAAAAAAIgAAAAADegAAAAAAaQAAAAAAWgAAAAADWgAAAAABaQAAAAAAegAAAAAAIwAAAAACIwAAAAAAIwAAAAABWgAAAAAAWgAAAAACHgAAAAAAegAAAAAAIgAAAAADIgAAAAADIgAAAAACegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAegAAAAAAegAAAAAAIwAAAAADIwAAAAACIwAAAAABWgAAAAACWgAAAAADHgAAAAAAegAAAAAAIgAAAAABIgAAAAADIgAAAAABegAAAAAAWgAAAAADWgAAAAADWgAAAAAAWgAAAAAAWgAAAAADWgAAAAABWgAAAAACWgAAAAAAWgAAAAADWgAAAAABHgAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAWgAAAAAAWgAAAAAAWgAAAAABWgAAAAABWgAAAAABWgAAAAABWgAAAAAAWgAAAAABWgAAAAADWgAAAAABHgAAAAAAegAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAbQAAAAAAaQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAegAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAegAAAAAAegAAAAAAbQAAAAABegAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAegAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAegAAAAAAegAAAAAA + tiles: fQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAbwAAAAABfQAAAAAAXAAAAAACXAAAAAADXAAAAAACXAAAAAACXAAAAAABXAAAAAABXAAAAAAAXAAAAAADXAAAAAABXAAAAAACXAAAAAAAXAAAAAABXAAAAAABXAAAAAACbwAAAAABawAAAAAAXAAAAAACXAAAAAAAXAAAAAACXAAAAAAAXAAAAAAAXAAAAAACXAAAAAADXAAAAAABXAAAAAACXAAAAAACXAAAAAABXAAAAAAAXAAAAAAAXAAAAAABbwAAAAAAawAAAAAAXAAAAAAAXAAAAAADXAAAAAACXAAAAAACXAAAAAADXAAAAAACXAAAAAADXAAAAAABXAAAAAAAXAAAAAADXAAAAAACXAAAAAABXAAAAAABXAAAAAADbwAAAAACawAAAAAAXAAAAAAAXAAAAAABXAAAAAADXAAAAAACXAAAAAAAXAAAAAABXAAAAAACXAAAAAADXAAAAAAAXAAAAAAAXAAAAAADXAAAAAAAXAAAAAAAXAAAAAADbwAAAAAAfQAAAAAAXAAAAAADXAAAAAAAXAAAAAAAXAAAAAABXAAAAAABXAAAAAADXAAAAAABXAAAAAABXAAAAAAAXAAAAAABXAAAAAABfQAAAAAAXAAAAAAAXAAAAAACbwAAAAABfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAawAAAAAAawAAAAAAXAAAAAADXAAAAAAAfQAAAAAAawAAAAAAawAAAAAAawAAAAAAfQAAAAAAZwAAAAABXAAAAAAAbwAAAAAAawAAAAAAbwAAAAAAbwAAAAADfQAAAAAAfQAAAAAAfQAAAAAAawAAAAAAawAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAZwAAAAADXAAAAAABbwAAAAACawAAAAAAIgAAAAABIgAAAAADIgAAAAADfQAAAAAAawAAAAAAXAAAAAABXAAAAAACawAAAAAAfQAAAAAAIwAAAAABIwAAAAACIwAAAAAAXAAAAAABXAAAAAACfQAAAAAAfQAAAAAAIgAAAAAAIgAAAAAAIgAAAAADfQAAAAAAawAAAAAAXAAAAAADXAAAAAABawAAAAAAfQAAAAAAIwAAAAACIwAAAAAAIwAAAAABXAAAAAAAXAAAAAACHgAAAAAAfQAAAAAAIgAAAAADIgAAAAADIgAAAAACfQAAAAAAfQAAAAAAawAAAAAAawAAAAAAfQAAAAAAfQAAAAAAIwAAAAADIwAAAAACIwAAAAABXAAAAAACXAAAAAADHgAAAAAAfQAAAAAAIgAAAAABIgAAAAADIgAAAAABfQAAAAAAXAAAAAADXAAAAAADXAAAAAAAXAAAAAAAXAAAAAADXAAAAAABXAAAAAACXAAAAAAAXAAAAAADXAAAAAABHgAAAAAAfQAAAAAAfQAAAAAAawAAAAAAfQAAAAAAfQAAAAAAXAAAAAAAXAAAAAAAXAAAAAABXAAAAAABXAAAAAABXAAAAAABXAAAAAAAXAAAAAABXAAAAAADXAAAAAABHgAAAAAAfQAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAbwAAAAAAawAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAfQAAAAAAfAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfAAAAAAAfQAAAAAAfQAAAAAAbwAAAAABfQAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAfQAAAAAAfAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfAAAAAAAfQAAAAAAfQAAAAAA version: 6 -4,0: ind: -4,0 - tiles: AAAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAegAAAAAAZwAAAAADaQAAAAAAWgAAAAACWgAAAAADWgAAAAABaQAAAAAAbQAAAAABbQAAAAACbQAAAAABbQAAAAABbQAAAAACbQAAAAADbQAAAAABbQAAAAACAAAAAAAAegAAAAAAZwAAAAAAaQAAAAAAWgAAAAACWgAAAAABWgAAAAADaQAAAAAAbQAAAAABbQAAAAACbQAAAAADbQAAAAADbQAAAAACbQAAAAAAHgAAAAABbQAAAAACAAAAAAAAegAAAAAAZwAAAAAAaQAAAAAAWgAAAAADWgAAAAAAWgAAAAACaQAAAAAAbQAAAAAAbQAAAAABbQAAAAAAbQAAAAABbQAAAAACHgAAAAACHgAAAAABHgAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAbQAAAAADbQAAAAAAbQAAAAACbQAAAAADbQAAAAACHgAAAAAAbQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAbQAAAAAAbQAAAAAAHgAAAAAAbQAAAAACbQAAAAABbQAAAAABbQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAbQAAAAABHgAAAAABHgAAAAACHgAAAAAAbQAAAAAAbQAAAAAAbQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAbQAAAAACbQAAAAABHgAAAAABbQAAAAACbQAAAAADbQAAAAACbQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAbQAAAAADbQAAAAABbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAALQAAAAAALQAAAAAAbQAAAAABbQAAAAADegAAAAAAHgAAAAACHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAbQAAAAABbQAAAAADHgAAAAABHgAAAAACHgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAALQAAAAAALQAAAAAAbQAAAAADbQAAAAAAHgAAAAADHgAAAAADHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAbQAAAAABbQAAAAACbQAAAAAAHgAAAAABHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAALQAAAAAALQAAAAAAbQAAAAABbQAAAAADbQAAAAABbQAAAAACbQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAbQAAAAAAbQAAAAACbQAAAAADbQAAAAADbQAAAAAD + tiles: AAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAawAAAAAAawAAAAAAawAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAaQAAAAADawAAAAAAXAAAAAACXAAAAAADXAAAAAABawAAAAAAbwAAAAABbwAAAAACbwAAAAABbwAAAAABbwAAAAACbwAAAAADbwAAAAABbwAAAAACAAAAAAAAfQAAAAAAaQAAAAAAawAAAAAAXAAAAAACXAAAAAABXAAAAAADawAAAAAAbwAAAAABbwAAAAACbwAAAAADbwAAAAADbwAAAAACbwAAAAAAHgAAAAABbwAAAAACAAAAAAAAfQAAAAAAaQAAAAAAawAAAAAAXAAAAAADXAAAAAAAXAAAAAACawAAAAAAbwAAAAAAbwAAAAABbwAAAAAAbwAAAAABbwAAAAACHgAAAAACHgAAAAABHgAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAbwAAAAADbwAAAAAAbwAAAAACbwAAAAADbwAAAAACHgAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAbwAAAAAAbwAAAAAAHgAAAAAAbwAAAAACbwAAAAABbwAAAAABbwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAbwAAAAABHgAAAAABHgAAAAACHgAAAAAAbwAAAAAAbwAAAAAAbwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAbwAAAAACbwAAAAABHgAAAAABbwAAAAACbwAAAAADbwAAAAACbwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAbwAAAAADbwAAAAABbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAawAAAAAAawAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAALQAAAAAALQAAAAAAbwAAAAABbwAAAAADfQAAAAAAHgAAAAACHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAbwAAAAABbwAAAAADHgAAAAABHgAAAAACHgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAALQAAAAAALQAAAAAAbwAAAAADbwAAAAAAHgAAAAADHgAAAAADHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAbwAAAAABbwAAAAACbwAAAAAAHgAAAAABHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAALQAAAAAALQAAAAAAbwAAAAABbwAAAAADbwAAAAABbwAAAAACbwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAbwAAAAAAbwAAAAACbwAAAAADbwAAAAADbwAAAAAD version: 6 -4,-1: ind: -4,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAaAAAAAAAaAAAAAAAaAAAAAABegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAagAAAAAAagAAAAAAagAAAAABfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -3,-1: ind: -3,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAA version: 6 2,-2: ind: 2,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 2,-1: ind: 2,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 2,0: ind: 2,0 - tiles: egAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAAAWgAAAAADWgAAAAABWgAAAAADWgAAAAABWgAAAAACWgAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAWgAAAAADWgAAAAABWgAAAAAAWgAAAAACWgAAAAABWgAAAAAAWgAAAAACWgAAAAADWgAAAAADWgAAAAABWgAAAAABWgAAAAABWgAAAAACWgAAAAAAWgAAAAADWgAAAAACWgAAAAACWgAAAAAAWgAAAAAAWgAAAAABWgAAAAAAWgAAAAADWgAAAAADWgAAAAACWgAAAAABWgAAAAACWgAAAAAAWgAAAAAAWgAAAAABWgAAAAAAWgAAAAADWgAAAAADWgAAAAACWgAAAAACWgAAAAABWgAAAAADWgAAAAAAWgAAAAACWgAAAAACWgAAAAAAWgAAAAABWgAAAAACWgAAAAAAWgAAAAACWgAAAAACWgAAAAAAWgAAAAADWgAAAAAAWgAAAAABWgAAAAADWgAAAAABWgAAAAABWgAAAAADWgAAAAADWgAAAAADWgAAAAABWgAAAAAAWgAAAAABWgAAAAACWgAAAAAAWgAAAAACWgAAAAADWgAAAAABWgAAAAABWgAAAAACWgAAAAACWgAAAAABWgAAAAABWgAAAAABWgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAegAAAAAAWgAAAAABWgAAAAACWgAAAAABWgAAAAAAWgAAAAADWgAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAIwAAAAAAIwAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAaQAAAAAAaQAAAAAAegAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAegAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAegAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAegAAAAAA + tiles: fQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAXAAAAAAAXAAAAAADXAAAAAABXAAAAAADXAAAAAABXAAAAAACXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAADXAAAAAABXAAAAAAAXAAAAAACXAAAAAABXAAAAAAAXAAAAAACXAAAAAADXAAAAAADXAAAAAABXAAAAAABXAAAAAABXAAAAAACXAAAAAAAXAAAAAADXAAAAAACXAAAAAACXAAAAAAAXAAAAAAAXAAAAAABXAAAAAAAXAAAAAADXAAAAAADXAAAAAACXAAAAAABXAAAAAACXAAAAAAAXAAAAAAAXAAAAAABXAAAAAAAXAAAAAADXAAAAAADXAAAAAACXAAAAAACXAAAAAABXAAAAAADXAAAAAAAXAAAAAACXAAAAAACXAAAAAAAXAAAAAABXAAAAAACXAAAAAAAXAAAAAACXAAAAAACXAAAAAAAXAAAAAADXAAAAAAAXAAAAAABXAAAAAADXAAAAAABXAAAAAABXAAAAAADXAAAAAADXAAAAAADXAAAAAABXAAAAAAAXAAAAAABXAAAAAACXAAAAAAAXAAAAAACXAAAAAADXAAAAAABXAAAAAABXAAAAAACXAAAAAACXAAAAAABXAAAAAABXAAAAAABXAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAawAAAAAAawAAAAAAfQAAAAAAXAAAAAABXAAAAAACXAAAAAABXAAAAAAAXAAAAAADXAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAawAAAAAAawAAAAAAawAAAAAAfQAAAAAAIwAAAAAAIwAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAawAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAawAAAAAAawAAAAAAawAAAAAAfQAAAAAAawAAAAAAawAAAAAAfQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAfQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAfQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAZgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAfQAAAAAA version: 6 3,0: ind: 3,0 - tiles: egAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAWgAAAAABWgAAAAAAWgAAAAAAWgAAAAADWgAAAAADWgAAAAADWgAAAAAAaQAAAAAAWgAAAAADWgAAAAACWgAAAAADaQAAAAAAZwAAAAADegAAAAAAAAAAAAAAAAAAAAAAWgAAAAADWgAAAAADWgAAAAACWgAAAAABWgAAAAAAWgAAAAAAWgAAAAADaQAAAAAAWgAAAAAAWgAAAAAAWgAAAAADaQAAAAAAZwAAAAACegAAAAAAAAAAAAAAAAAAAAAAWgAAAAADWgAAAAADWgAAAAAAWgAAAAAAWgAAAAADWgAAAAABWgAAAAAAaQAAAAAAWgAAAAACWgAAAAADWgAAAAACaQAAAAAAZwAAAAADegAAAAAAAAAAAAAAAAAAAAAAWgAAAAACWgAAAAADegAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAWgAAAAAAWgAAAAABegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWgAAAAACegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWgAAAAABegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: fQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAawAAAAAAawAAAAAAawAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAXAAAAAABXAAAAAAAXAAAAAAAXAAAAAADXAAAAAADXAAAAAADXAAAAAAAawAAAAAAXAAAAAADXAAAAAACXAAAAAADawAAAAAAaQAAAAADfQAAAAAAAAAAAAAAAAAAAAAAXAAAAAADXAAAAAADXAAAAAACXAAAAAABXAAAAAAAXAAAAAAAXAAAAAADawAAAAAAXAAAAAAAXAAAAAAAXAAAAAADawAAAAAAaQAAAAACfQAAAAAAAAAAAAAAAAAAAAAAXAAAAAADXAAAAAADXAAAAAAAXAAAAAAAXAAAAAADXAAAAAABXAAAAAAAawAAAAAAXAAAAAACXAAAAAADXAAAAAACawAAAAAAaQAAAAADfQAAAAAAAAAAAAAAAAAAAAAAXAAAAAACXAAAAAADfQAAAAAAfQAAAAAAawAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAXAAAAAABfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAACfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAawAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAawAAAAAAfQAAAAAAfQAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAABfQAAAAAAfQAAAAAAawAAAAAAawAAAAAAawAAAAAAfQAAAAAAAAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 3,-1: ind: 3,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAaAAAAAABaAAAAAABaAAAAAADegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAagAAAAABagAAAAABagAAAAADfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 0,1: ind: 0,1 - tiles: WgAAAAACaQAAAAAAHgAAAAABHgAAAAADHgAAAAACaQAAAAAAHgAAAAAAHgAAAAABHgAAAAACaQAAAAAAHgAAAAAAHgAAAAADHgAAAAAAHgAAAAABHgAAAAAAHgAAAAAAWgAAAAADaQAAAAAAHgAAAAADLgAAAAAAHgAAAAACegAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAWgAAAAABaQAAAAAAHgAAAAACHgAAAAAAHgAAAAABegAAAAAAHgAAAAACHgAAAAADHgAAAAADegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAHgAAAAABHgAAAAACHgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAABWgAAAAAAegAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAegAAAAAAWgAAAAACWgAAAAABZQAAAAADWgAAAAACWgAAAAADegAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAZQAAAAABWgAAAAACWgAAAAAAZQAAAAACWgAAAAABWgAAAAACegAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAADWgAAAAADWgAAAAADWgAAAAAAWgAAAAADegAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAegAAAAAAWgAAAAABWgAAAAABaQAAAAAAWgAAAAADWgAAAAACWgAAAAAAWgAAAAABWgAAAAABegAAAAAAegAAAAAAWgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAABWgAAAAACaQAAAAAAWgAAAAADWgAAAAADWgAAAAACWgAAAAAAWgAAAAAAegAAAAAAWgAAAAABZQAAAAABZQAAAAABZQAAAAACZQAAAAABZQAAAAAAWgAAAAADWgAAAAADWgAAAAADaQAAAAAAWgAAAAADWgAAAAAAWgAAAAADWgAAAAABWgAAAAADaQAAAAAAWgAAAAABWgAAAAABWgAAAAABWgAAAAABWgAAAAACWgAAAAABWgAAAAADWgAAAAACWgAAAAABaQAAAAAAWgAAAAADWgAAAAACWgAAAAAAWgAAAAADWgAAAAABaQAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAWgAAAAACWgAAAAABWgAAAAABWgAAAAAAWgAAAAABegAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAACWgAAAAABaQAAAAAAWgAAAAACWgAAAAACWgAAAAABWgAAAAAAWgAAAAAAWgAAAAAAWgAAAAADWgAAAAADWgAAAAACegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWgAAAAACegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaQAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWgAAAAACegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: XAAAAAACawAAAAAAHgAAAAABHgAAAAADHgAAAAACawAAAAAAHgAAAAAAHgAAAAABHgAAAAACawAAAAAAHgAAAAAAHgAAAAADHgAAAAAAHgAAAAABHgAAAAAAHgAAAAAAXAAAAAADawAAAAAAHgAAAAADLgAAAAAAHgAAAAACfQAAAAAAfQAAAAAAawAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAawAAAAAAXAAAAAABawAAAAAAHgAAAAACHgAAAAAAHgAAAAABfQAAAAAAHgAAAAACHgAAAAADHgAAAAADfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAawAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHgAAAAABHgAAAAACHgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAXAAAAAABXAAAAAAAfQAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAfQAAAAAAXAAAAAACXAAAAAABZwAAAAADXAAAAAACXAAAAAADfQAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAZwAAAAABXAAAAAACXAAAAAAAZwAAAAACXAAAAAABXAAAAAACfQAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAXAAAAAADXAAAAAADXAAAAAADXAAAAAAAXAAAAAADfQAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAfQAAAAAAXAAAAAABXAAAAAABawAAAAAAXAAAAAADXAAAAAACXAAAAAAAXAAAAAABXAAAAAABfQAAAAAAfQAAAAAAXAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAXAAAAAABXAAAAAACawAAAAAAXAAAAAADXAAAAAADXAAAAAACXAAAAAAAXAAAAAAAfQAAAAAAXAAAAAABZwAAAAABZwAAAAABZwAAAAACZwAAAAABZwAAAAAAXAAAAAADXAAAAAADXAAAAAADawAAAAAAXAAAAAADXAAAAAAAXAAAAAADXAAAAAABXAAAAAADawAAAAAAXAAAAAABXAAAAAABXAAAAAABXAAAAAABXAAAAAACXAAAAAABXAAAAAADXAAAAAACXAAAAAABawAAAAAAXAAAAAADXAAAAAACXAAAAAAAXAAAAAADXAAAAAABawAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAACXAAAAAABXAAAAAABXAAAAAAAXAAAAAABfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAXAAAAAACXAAAAAABawAAAAAAXAAAAAACXAAAAAACXAAAAAABXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAADXAAAAAADXAAAAAACfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAACfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAawAAAAAAfQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAACfQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -1,1: ind: -1,1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaQAAAAAAZwAAAAACaQAAAAAAHgAAAAABHgAAAAACHgAAAAADaQAAAAAAWgAAAAABWgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAHgAAAAADLgAAAAACHgAAAAADaQAAAAAAWgAAAAACWgAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAHgAAAAABHgAAAAABHgAAAAAAaQAAAAAAWgAAAAAAWgAAAAABeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAHgAAAAACHgAAAAABHgAAAAAAegAAAAAAWgAAAAABWgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAHgAAAAADHgAAAAABHgAAAAACegAAAAAAWgAAAAABWgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAHgAAAAABHgAAAAADHgAAAAACegAAAAAAWgAAAAADWgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAHgAAAAACHgAAAAABHgAAAAABegAAAAAAWgAAAAACWgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAHgAAAAADHgAAAAACHgAAAAAAegAAAAAAWgAAAAADWgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAADWgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAaQAAAAAAWgAAAAAAWgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAegAAAAAAWgAAAAADWgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAegAAAAAAWgAAAAAAWgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAADWgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAaQAAAAAAaQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAWgAAAAABWgAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAawAAAAAAaQAAAAACawAAAAAAHgAAAAABHgAAAAACHgAAAAADawAAAAAAXAAAAAABXAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHgAAAAADLgAAAAACHgAAAAADawAAAAAAXAAAAAACXAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfQAAAAAAHgAAAAABHgAAAAABHgAAAAAAawAAAAAAXAAAAAAAXAAAAAABfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfQAAAAAAfQAAAAAAawAAAAAAfQAAAAAAfQAAAAAAawAAAAAAawAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAHgAAAAACHgAAAAABHgAAAAAAfQAAAAAAXAAAAAABXAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAHgAAAAADHgAAAAABHgAAAAACfQAAAAAAXAAAAAABXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAHgAAAAABHgAAAAADHgAAAAACfQAAAAAAXAAAAAADXAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAHgAAAAACHgAAAAABHgAAAAABfQAAAAAAXAAAAAACXAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAHgAAAAADHgAAAAACHgAAAAAAfQAAAAAAXAAAAAADXAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAawAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAXAAAAAADXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAawAAAAAAXAAAAAAAXAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAfQAAAAAAXAAAAAADXAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAfQAAAAAAXAAAAAAAXAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAXAAAAAADXAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfQAAAAAAawAAAAAAawAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfQAAAAAAXAAAAAABXAAAAAAA version: 6 -2,1: ind: -2,1 - tiles: egAAAAAAegAAAAAAegAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: fQAAAAAAfQAAAAAAfQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAfQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAawAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAfQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAfQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 1,1: ind: 1,1 - tiles: HgAAAAADHgAAAAABegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAZQAAAAABZQAAAAAAZQAAAAADZQAAAAACZQAAAAAAZQAAAAACZQAAAAABZQAAAAACZQAAAAACZQAAAAADZQAAAAABZQAAAAACZQAAAAACWgAAAAACWgAAAAABWgAAAAABWgAAAAADZQAAAAAAWgAAAAACZQAAAAAAWgAAAAADZQAAAAAAWgAAAAADZQAAAAADWgAAAAAAZQAAAAADWgAAAAACZQAAAAADWgAAAAABWgAAAAACWgAAAAAAWgAAAAADWgAAAAAAWgAAAAADWgAAAAADWgAAAAACWgAAAAADWgAAAAABWgAAAAABWgAAAAADWgAAAAACWgAAAAAAWgAAAAADWgAAAAABWgAAAAABWgAAAAABWgAAAAADWgAAAAACWgAAAAADWgAAAAAAWgAAAAAAWgAAAAAAWgAAAAABWgAAAAABWgAAAAAAWgAAAAAAWgAAAAABWgAAAAACWgAAAAABWgAAAAAAWgAAAAAAWgAAAAAAWgAAAAABWgAAAAADWgAAAAABWgAAAAADWgAAAAAAWgAAAAAAWgAAAAACWgAAAAADWgAAAAACWgAAAAADWgAAAAABWgAAAAAAWgAAAAAAWgAAAAADWgAAAAAAWgAAAAADWgAAAAABWgAAAAABWgAAAAAAWgAAAAABWgAAAAADWgAAAAADWgAAAAAAWgAAAAADWgAAAAAAWgAAAAADWgAAAAACWgAAAAACWgAAAAABWgAAAAADWgAAAAAAWgAAAAADWgAAAAABWgAAAAADWgAAAAAAWgAAAAACWgAAAAADWgAAAAADWgAAAAADWgAAAAADWgAAAAAAWgAAAAADWgAAAAAAWgAAAAACegAAAAAAaQAAAAAAegAAAAAAaQAAAAAAegAAAAAAWgAAAAADegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaAAAAAACegAAAAAAaAAAAAACegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: HgAAAAADHgAAAAABfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAawAAAAAAfQAAAAAAfQAAAAAAZwAAAAABZwAAAAAAZwAAAAADZwAAAAACZwAAAAAAZwAAAAACZwAAAAABZwAAAAACZwAAAAACZwAAAAADZwAAAAABZwAAAAACZwAAAAACXAAAAAACXAAAAAABXAAAAAABXAAAAAADZwAAAAAAXAAAAAACZwAAAAAAXAAAAAADZwAAAAAAXAAAAAADZwAAAAADXAAAAAAAZwAAAAADXAAAAAACZwAAAAADXAAAAAABXAAAAAACXAAAAAAAXAAAAAADXAAAAAAAXAAAAAADXAAAAAADXAAAAAACXAAAAAADXAAAAAABXAAAAAABXAAAAAADXAAAAAACXAAAAAAAXAAAAAADXAAAAAABXAAAAAABXAAAAAABXAAAAAADXAAAAAACXAAAAAADXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAABXAAAAAABXAAAAAAAXAAAAAAAXAAAAAABXAAAAAACXAAAAAABXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAABXAAAAAADXAAAAAABXAAAAAADXAAAAAAAXAAAAAAAXAAAAAACXAAAAAADXAAAAAACXAAAAAADXAAAAAABXAAAAAAAXAAAAAAAXAAAAAADXAAAAAAAXAAAAAADXAAAAAABXAAAAAABXAAAAAAAXAAAAAABXAAAAAADXAAAAAADXAAAAAAAXAAAAAADXAAAAAAAXAAAAAADXAAAAAACXAAAAAACXAAAAAABXAAAAAADXAAAAAAAXAAAAAADXAAAAAABXAAAAAADXAAAAAAAXAAAAAACXAAAAAADXAAAAAADXAAAAAADXAAAAAADXAAAAAAAXAAAAAADXAAAAAAAXAAAAAACfQAAAAAAawAAAAAAfQAAAAAAawAAAAAAfQAAAAAAXAAAAAADfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAagAAAAACfQAAAAAAagAAAAACfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 0,2: ind: 0,2 - tiles: WgAAAAADegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWgAAAAABegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaQAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWgAAAAAAWgAAAAACWgAAAAADWgAAAAABWgAAAAACegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWgAAAAADWgAAAAAAWgAAAAAAWgAAAAAAWgAAAAADegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWgAAAAABWgAAAAACWgAAAAACIwAAAAABIwAAAAADegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWgAAAAABWgAAAAAAWgAAAAACIwAAAAABIwAAAAABegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWgAAAAACWgAAAAACWgAAAAAAWgAAAAACWgAAAAABegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWgAAAAADWgAAAAABWgAAAAACWgAAAAABWgAAAAABWgAAAAADWgAAAAACWgAAAAABWgAAAAADegAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIwAAAAADIwAAAAACIwAAAAADIwAAAAAAIwAAAAABZQAAAAAAWgAAAAADWgAAAAADWgAAAAABegAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIwAAAAACIwAAAAABIwAAAAAAIwAAAAADIwAAAAADZQAAAAABWgAAAAACWgAAAAACWgAAAAAAegAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIwAAAAABIwAAAAABIwAAAAABIwAAAAADIwAAAAADZQAAAAABWgAAAAAAWgAAAAADWgAAAAADegAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIwAAAAABIwAAAAAAIwAAAAADIwAAAAADIwAAAAACZQAAAAAAWgAAAAABWgAAAAAAWgAAAAABegAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIwAAAAADIwAAAAAAIwAAAAABIwAAAAAAIwAAAAAAZQAAAAACWgAAAAABWgAAAAABWgAAAAAAegAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWgAAAAACWgAAAAACWgAAAAAAWgAAAAABWgAAAAABWgAAAAADWgAAAAACWgAAAAABWgAAAAADegAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: XAAAAAADfQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAABfQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAawAAAAAAfQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAawAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAXAAAAAACXAAAAAADXAAAAAABXAAAAAACfQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAADXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAADfQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAABXAAAAAACXAAAAAACIwAAAAABIwAAAAADfQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAABXAAAAAAAXAAAAAACIwAAAAABIwAAAAABfQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAACXAAAAAACXAAAAAAAXAAAAAACXAAAAAABfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAADXAAAAAABXAAAAAACXAAAAAABXAAAAAABXAAAAAADXAAAAAACXAAAAAABXAAAAAADfQAAAAAAAAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIwAAAAADIwAAAAACIwAAAAADIwAAAAAAIwAAAAABZwAAAAAAXAAAAAADXAAAAAADXAAAAAABfQAAAAAAAAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIwAAAAACIwAAAAABIwAAAAAAIwAAAAADIwAAAAADZwAAAAABXAAAAAACXAAAAAACXAAAAAAAfQAAAAAAAAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIwAAAAABIwAAAAABIwAAAAABIwAAAAADIwAAAAADZwAAAAABXAAAAAAAXAAAAAADXAAAAAADfQAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIwAAAAABIwAAAAAAIwAAAAADIwAAAAADIwAAAAACZwAAAAAAXAAAAAABXAAAAAAAXAAAAAABfQAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIwAAAAADIwAAAAAAIwAAAAABIwAAAAAAIwAAAAAAZwAAAAACXAAAAAABXAAAAAABXAAAAAAAfQAAAAAAAAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAACXAAAAAACXAAAAAAAXAAAAAABXAAAAAABXAAAAAADXAAAAAACXAAAAAABXAAAAAADfQAAAAAAAAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -1,2: ind: -1,2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAWgAAAAAAWgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAWgAAAAACWgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAaQAAAAAAaQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAWgAAAAADWgAAAAADWgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAWgAAAAACWgAAAAAAWgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAWgAAAAACWgAAAAAAWgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAWgAAAAADWgAAAAABWgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAWgAAAAABWgAAAAACWgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAACWgAAAAAAWgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAWgAAAAAAWgAAAAADZQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAWgAAAAACWgAAAAAAZQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAWgAAAAAAWgAAAAAAZQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAWgAAAAABWgAAAAADZQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAWgAAAAABWgAAAAACZQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAACWgAAAAACWgAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfQAAAAAAXAAAAAAAXAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfQAAAAAAXAAAAAACXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfQAAAAAAawAAAAAAawAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfQAAAAAAfQAAAAAAawAAAAAAawAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfQAAAAAAXAAAAAADXAAAAAADXAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfQAAAAAAXAAAAAACXAAAAAAAXAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfQAAAAAAXAAAAAACXAAAAAAAXAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfQAAAAAAXAAAAAADXAAAAAABXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfQAAAAAAXAAAAAABXAAAAAACXAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAXAAAAAACXAAAAAAAXAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAawAAAAAAawAAAAAAawAAAAAAXAAAAAAAXAAAAAADZwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAawAAAAAAawAAAAAAawAAAAAAXAAAAAACXAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAawAAAAAAawAAAAAAawAAAAAAXAAAAAAAXAAAAAAAZwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAawAAAAAAawAAAAAAawAAAAAAXAAAAAABXAAAAAADZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAawAAAAAAawAAAAAAawAAAAAAXAAAAAABXAAAAAACZwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAXAAAAAACXAAAAAACXAAAAAAA version: 6 2,1: ind: 2,1 - tiles: ZAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAegAAAAAAZAAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAAAWgAAAAAAaQAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAegAAAAAAZAAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAAAWgAAAAAAaQAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAAAWgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAAAWgAAAAAAegAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAegAAAAAAWgAAAAAAWgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAegAAAAAAWgAAAAAAWgAAAAAAegAAAAAAWgAAAAAAWgAAAAABWgAAAAAAWgAAAAACWgAAAAADWgAAAAACWgAAAAAAWgAAAAAAWgAAAAABWgAAAAAAWgAAAAAAWgAAAAAAegAAAAAAWgAAAAAAWgAAAAAAegAAAAAAWgAAAAACWgAAAAAAWgAAAAACWgAAAAADWgAAAAADWgAAAAABWgAAAAACWgAAAAAAWgAAAAADWgAAAAAAWgAAAAAAWgAAAAACaQAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAWgAAAAACWgAAAAACWgAAAAAAWgAAAAABWgAAAAADWgAAAAAAWgAAAAABWgAAAAAAWgAAAAABWgAAAAABWgAAAAADWgAAAAAAaQAAAAAAWgAAAAADWgAAAAABWgAAAAAAWgAAAAADWgAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAWgAAAAADWgAAAAADWgAAAAACWgAAAAACWgAAAAACWgAAAAACWgAAAAABaQAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAWgAAAAADWgAAAAABWgAAAAADWgAAAAAAWgAAAAAAWgAAAAADWgAAAAAAWgAAAAACWgAAAAABegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: ZgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAfQAAAAAAZgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAXAAAAAAAXAAAAAAAawAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAfQAAAAAAZgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAXAAAAAAAXAAAAAAAawAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAXAAAAAAAXAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAXAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAXAAAAAAAXAAAAAAAfQAAAAAAAAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfQAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAfQAAAAAAXAAAAAAAXAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAfQAAAAAAXAAAAAAAXAAAAAAAfQAAAAAAXAAAAAAAXAAAAAABXAAAAAAAXAAAAAACXAAAAAADXAAAAAACXAAAAAAAXAAAAAAAXAAAAAABXAAAAAAAXAAAAAAAXAAAAAAAfQAAAAAAXAAAAAAAXAAAAAAAfQAAAAAAXAAAAAACXAAAAAAAXAAAAAACXAAAAAADXAAAAAADXAAAAAABXAAAAAACXAAAAAAAXAAAAAADXAAAAAAAXAAAAAAAXAAAAAACawAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAACXAAAAAACXAAAAAAAXAAAAAABXAAAAAADXAAAAAAAXAAAAAABXAAAAAAAXAAAAAABXAAAAAABXAAAAAADXAAAAAAAawAAAAAAXAAAAAADXAAAAAABXAAAAAAAXAAAAAADXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAADXAAAAAADXAAAAAACXAAAAAACXAAAAAACXAAAAAACXAAAAAABawAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAADXAAAAAABXAAAAAADXAAAAAAAXAAAAAAAXAAAAAADXAAAAAAAXAAAAAACXAAAAAABfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 3,1: ind: 3,1 - tiles: WgAAAAAAegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWgAAAAAAegAAAAAAegAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAegAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWgAAAAADegAAAAAAegAAAAAAYQAAAAAAegAAAAAAYQAAAAAAegAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWgAAAAACegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAagAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWgAAAAABWgAAAAAAWgAAAAABWgAAAAACWgAAAAADWgAAAAABegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWgAAAAABWgAAAAAAWgAAAAAAWgAAAAABWgAAAAACWgAAAAABegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAWgAAAAACWgAAAAADWgAAAAACWgAAAAAAWgAAAAADWgAAAAAAWgAAAAAAaQAAAAAAWgAAAAAAWgAAAAADWgAAAAACaQAAAAAAZwAAAAACegAAAAAAAAAAAAAAAAAAAAAAWgAAAAACWgAAAAABWgAAAAAAWgAAAAACWgAAAAACWgAAAAAAWgAAAAABaQAAAAAAWgAAAAADWgAAAAACWgAAAAABaQAAAAAAZwAAAAAAegAAAAAAAAAAAAAAAAAAAAAAWgAAAAAAWgAAAAADWgAAAAAAWgAAAAABWgAAAAABWgAAAAACWgAAAAADaQAAAAAAWgAAAAAAWgAAAAABWgAAAAACaQAAAAAAZwAAAAADegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAaAAAAAADaAAAAAAAaAAAAAABegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: XAAAAAAAfQAAAAAAfQAAAAAAawAAAAAAawAAAAAAawAAAAAAfQAAAAAAAAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAfQAAAAAAfQAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAfQAAAAAAAAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAADfQAAAAAAfQAAAAAAYwAAAAAAfQAAAAAAYwAAAAAAfQAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAACfQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAABXAAAAAAAXAAAAAABXAAAAAACXAAAAAADXAAAAAABfQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAABXAAAAAAAXAAAAAAAXAAAAAABXAAAAAACXAAAAAABfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAXAAAAAACXAAAAAADXAAAAAACXAAAAAAAXAAAAAADXAAAAAAAXAAAAAAAawAAAAAAXAAAAAAAXAAAAAADXAAAAAACawAAAAAAaQAAAAACfQAAAAAAAAAAAAAAAAAAAAAAXAAAAAACXAAAAAABXAAAAAAAXAAAAAACXAAAAAACXAAAAAAAXAAAAAABawAAAAAAXAAAAAADXAAAAAACXAAAAAABawAAAAAAaQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAXAAAAAADXAAAAAAAXAAAAAABXAAAAAABXAAAAAACXAAAAAADawAAAAAAXAAAAAAAXAAAAAABXAAAAAACawAAAAAAaQAAAAADfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAawAAAAAAawAAAAAAawAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAagAAAAADagAAAAAAagAAAAABfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -1,-1: ind: -1,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAA version: 6 0,3: ind: 0,3 - tiles: WgAAAAAAZQAAAAADZQAAAAAAZQAAAAAAWgAAAAABWgAAAAACWgAAAAABWgAAAAAAWgAAAAADegAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWgAAAAABZQAAAAACZQAAAAADZQAAAAABWgAAAAAAWgAAAAACWgAAAAACWgAAAAAAWgAAAAACegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWgAAAAACWgAAAAACWgAAAAADWgAAAAACWgAAAAACWgAAAAABWgAAAAADWgAAAAABWgAAAAABegAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWgAAAAACWgAAAAACWgAAAAAAWgAAAAACWgAAAAADWgAAAAACZQAAAAAAWgAAAAACWgAAAAABegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAAAZQAAAAADWgAAAAACWgAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAWgAAAAACWgAAAAADWgAAAAACWgAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAWgAAAAADWgAAAAADWgAAAAADWgAAAAADaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAWgAAAAAAWgAAAAACWgAAAAACWgAAAAACaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAWgAAAAAAZQAAAAACWgAAAAADWgAAAAABaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAWgAAAAADWgAAAAAAWgAAAAABWgAAAAABegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: XAAAAAAAZwAAAAADZwAAAAAAZwAAAAAAXAAAAAABXAAAAAACXAAAAAABXAAAAAAAXAAAAAADfQAAAAAAAAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAABZwAAAAACZwAAAAADZwAAAAABXAAAAAAAXAAAAAACXAAAAAACXAAAAAAAXAAAAAACfQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAACXAAAAAACXAAAAAADXAAAAAACXAAAAAACXAAAAAABXAAAAAADXAAAAAABXAAAAAABfQAAAAAAfAAAAAAAAAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAACXAAAAAACXAAAAAAAXAAAAAACXAAAAAADXAAAAAACZwAAAAAAXAAAAAACXAAAAAABfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAXAAAAAAAZwAAAAADXAAAAAACXAAAAAAAawAAAAAAawAAAAAAawAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfQAAAAAAXAAAAAACXAAAAAADXAAAAAACXAAAAAAAawAAAAAAawAAAAAAawAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfQAAAAAAXAAAAAADXAAAAAADXAAAAAADXAAAAAADawAAAAAAawAAAAAAawAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfQAAAAAAXAAAAAAAXAAAAAACXAAAAAACXAAAAAACawAAAAAAawAAAAAAawAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfQAAAAAAXAAAAAAAZwAAAAACXAAAAAADXAAAAAABawAAAAAAawAAAAAAawAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfQAAAAAAXAAAAAADXAAAAAAAXAAAAAABXAAAAAABfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -1,3: ind: -1,3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -3,1: ind: -3,1 - tiles: egAAAAAAegAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAegAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAegAAAAAAegAAAAAAIgAAAAACaQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAegAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAegAAAAAAegAAAAAAIgAAAAADegAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: fQAAAAAAfQAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAfQAAAAAAfAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfAAAAAAAfQAAAAAAfQAAAAAAIgAAAAACawAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAfQAAAAAAfAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfAAAAAAAfQAAAAAAfQAAAAAAIgAAAAADfQAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAfQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -4,1: ind: -4,1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAALQAAAAAALQAAAAAAbQAAAAADbQAAAAABegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAbQAAAAABbQAAAAAAaQAAAAAAIgAAAAADIgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAALQAAAAAALQAAAAAAbQAAAAADbQAAAAACegAAAAAAIgAAAAADIgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAALQAAAAAALQAAAAAAbwAAAAADbwAAAAABfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAbwAAAAABbwAAAAAAawAAAAAAIgAAAAADIgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAALQAAAAAALQAAAAAAbwAAAAADbwAAAAACfQAAAAAAIgAAAAADIgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 0,-1: ind: 0,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 - type: Broadphase - type: Physics @@ -559,7 +559,7 @@ entities: color: '#FFFFFFFF' id: BrickTileSteelCornerNe decals: - 2738: 32,18 + 2736: 32,18 - node: color: '#FFFFFFFF' id: BrickTileSteelCornerNw @@ -569,12 +569,13 @@ entities: color: '#FFFFFFFF' id: BrickTileSteelCornerSe decals: - 2740: 32,16 + 2749: 32,15 - node: color: '#FFFFFFFF' id: BrickTileSteelCornerSw decals: 2714: 27,16 + 2750: 31,15 - node: color: '#FFFFFFFF' id: BrickTileSteelEndN @@ -586,6 +587,11 @@ entities: 385: 27,21 1576: 23,21 1577: 21,21 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelInnerSw + decals: + 2751: 31,16 - node: color: '#52B4E996' id: BrickTileSteelLineE @@ -607,7 +613,8 @@ entities: decals: 2033: 0,11 2034: 0,10 - 2739: 32,17 + 2737: 32,17 + 2748: 32,16 - node: color: '#52B4E9FF' id: BrickTileSteelLineN @@ -630,7 +637,7 @@ entities: 2716: 28,18 2717: 29,18 2718: 30,18 - 2741: 31,18 + 2738: 31,18 - node: color: '#FFFFFFFF' id: BrickTileSteelLineS @@ -1578,6 +1585,10 @@ entities: 2726: 28,16 2727: 30,16 2728: 30,18 + 2754: 32,16 + 2755: 31,16 + 2756: 28,18 + 2757: 28,18 - node: cleanable: True zIndex: 180 @@ -1989,8 +2000,10 @@ entities: 2447: -14,2 2448: -14,4 2449: -13,2 - 2743: 31,17 - 2744: 32,18 + 2740: 31,17 + 2741: 32,18 + 2752: 32,15 + 2753: 31,15 - node: cleanable: True zIndex: 180 @@ -2575,7 +2588,7 @@ entities: 2729: 28,17 2730: 28,17 2731: 27,16 - 2742: 32,17 + 2739: 32,17 - node: cleanable: True zIndex: 180 @@ -2861,10 +2874,8 @@ entities: 2631: 37,10 2632: 38,9 2633: 38,10 - 2745: 31,18 - 2746: 32,16 - 2747: 31,16 - 2748: 32,17 + 2742: 31,18 + 2743: 32,17 - node: cleanable: True zIndex: 180 @@ -3012,8 +3023,10 @@ entities: 2733: 31,18 2734: 32,18 2735: 32,17 - 2736: 32,16 - 2737: 31,16 + 2744: 31,16 + 2745: 32,16 + 2746: 32,15 + 2747: 31,15 - node: color: '#FFFFFFFF' id: MiniTileCheckerAOverlay @@ -4044,7 +4057,8 @@ entities: -1,4: 0: 65535 -1,5: - 0: 65535 + 0: 61439 + 3: 4096 -1,6: 0: 65535 -1,7: @@ -4197,7 +4211,7 @@ entities: -10,4: 0: 61681 1: 3840 - 3: 14 + 4: 14 -9,4: 0: 64733 1: 802 @@ -4279,6 +4293,21 @@ entities: - 0 - 0 - 0 + - volume: 2500 + temperature: 293.14996 + moles: + - 20.078888 + - 75.53487 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 - volume: 2500 temperature: 293.15 moles: @@ -4303,6 +4332,14 @@ entities: - type: ProtectedGrid - type: StationEmpImmune - type: SpreaderGrid +- proto: ActionToggleLight + entities: + - uid: 2428 + components: + - type: Transform + parent: 1474 + - type: InstantAction + container: 1474 - proto: AirAlarm entities: - uid: 1836 @@ -4367,8 +4404,6 @@ entities: entities: - uid: 4179 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -5.5,25.5 parent: 2173 @@ -4417,15 +4452,11 @@ entities: entities: - uid: 4136 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -39.5,7.5 parent: 2173 - uid: 4137 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -40.5,7.5 parent: 2173 @@ -4433,8 +4464,6 @@ entities: entities: - uid: 366 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: -18.5,14.5 @@ -4784,8 +4813,6 @@ entities: entities: - uid: 2386 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 23.5,11.5 parent: 2173 @@ -5352,59 +5379,51 @@ entities: entities: - uid: 2754 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -4.5,19.5 parent: 2173 - uid: 2755 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -2.5,26.5 parent: 2173 +- proto: AirlockMailCarrierLocked + entities: + - uid: 389 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,19.5 + parent: 2173 - proto: AirlockMaint entities: - uid: 383 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 33.5,13.5 parent: 2173 - uid: 385 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 35.5,15.5 parent: 2173 - uid: 386 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 34.5,20.5 parent: 2173 - uid: 3012 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 33.5,6.5 parent: 2173 - uid: 4059 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 49.5,12.5 parent: 2173 - uid: 4926 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 46.5,14.5 parent: 2173 @@ -5412,8 +5431,6 @@ entities: entities: - uid: 4131 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -22.5,13.5 parent: 2173 @@ -5421,22 +5438,16 @@ entities: entities: - uid: 3763 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 27.5,14.5 parent: 2173 - uid: 4128 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 15.5,17.5 parent: 2173 - uid: 5019 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 10.5,19.5 parent: 2173 @@ -5444,30 +5455,22 @@ entities: entities: - uid: 2094 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -19.5,11.5 parent: 2173 - uid: 2597 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 48.5,21.5 parent: 2173 - uid: 4130 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -29.5,6.5 parent: 2173 - uid: 4132 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 52.5,4.5 parent: 2173 @@ -5475,22 +5478,16 @@ entities: entities: - uid: 4133 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -46.5,14.5 parent: 2173 - uid: 4134 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -44.5,12.5 parent: 2173 - uid: 4135 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -46.5,17.5 parent: 2173 @@ -5614,17 +5611,8 @@ entities: - DoorStatus: Close - proto: AirlockServiceLocked entities: - - uid: 389 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 29.5,19.5 - parent: 2173 - uid: 2562 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 45.5,7.5 @@ -6821,8 +6809,6 @@ entities: entities: - uid: 2725 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 12.5,56.5 parent: 2173 @@ -6831,8 +6817,6 @@ entities: - 2735 - uid: 2727 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 9.5,56.5 parent: 2173 @@ -6841,8 +6825,6 @@ entities: - 2735 - uid: 2728 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 12.5,52.5 parent: 2173 @@ -6851,8 +6833,6 @@ entities: - 2735 - uid: 2729 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 9.5,52.5 parent: 2173 @@ -6861,8 +6841,6 @@ entities: - 2735 - uid: 2730 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -6.5,46.5 parent: 2173 @@ -6871,8 +6849,6 @@ entities: - 2734 - uid: 2731 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -3.5,46.5 parent: 2173 @@ -6881,8 +6857,6 @@ entities: - 2734 - uid: 2732 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -6.5,42.5 parent: 2173 @@ -6891,8 +6865,6 @@ entities: - 2734 - uid: 2733 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -3.5,42.5 parent: 2173 @@ -6923,8 +6895,6 @@ entities: entities: - uid: 3125 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 21.5,12.5 parent: 2173 @@ -6999,13 +6969,6 @@ entities: - type: Transform pos: -49.37637,7.544346 parent: 2173 -- proto: BoxMailCapsulePrimed - entities: - - uid: 4936 - components: - - type: Transform - pos: 28.929081,16.827986 - parent: 2173 - proto: BoxNitrileGloves entities: - uid: 2391 @@ -7034,6 +6997,11 @@ entities: - type: Transform pos: -5.705048,21.793915 parent: 2173 + - uid: 4947 + components: + - type: Transform + pos: -5.5340576,21.663313 + parent: 2173 - proto: CableApcExtension entities: - uid: 355 @@ -16071,6 +16039,20 @@ entities: rot: 3.141592653589793 rad pos: -3.5,27.5 parent: 2173 +- proto: CigPackRed + entities: + - uid: 3865 + components: + - type: Transform + pos: 28.323841,16.64893 + parent: 2173 +- proto: CleanerDispenser + entities: + - uid: 4945 + components: + - type: Transform + pos: -4.5,25.5 + parent: 2173 - proto: CloningPod entities: - uid: 828 @@ -16095,27 +16077,27 @@ entities: - type: Transform pos: 42.5,12.5 parent: 2173 - - uid: 3865 + - uid: 4377 components: - type: Transform - pos: 31.5,14.5 + pos: 52.5,12.5 parent: 2173 - - uid: 4377 + - uid: 4478 components: - type: Transform - pos: 52.5,12.5 + pos: 31.5,7.5 parent: 2173 - proto: ClosetFireFilled entities: - - uid: 2242 + - uid: 2790 components: - type: Transform - pos: 30.5,14.5 + pos: -28.5,8.5 parent: 2173 - - uid: 2790 + - uid: 4935 components: - type: Transform - pos: -28.5,8.5 + pos: 33.5,11.5 parent: 2173 - proto: ClosetJanitorBombFilled entities: @@ -16143,11 +16125,6 @@ entities: - type: Transform pos: 27.5,7.5 parent: 2173 - - uid: 4478 - components: - - type: Transform - pos: 32.5,14.5 - parent: 2173 - proto: ClosetToolFilled entities: - uid: 951 @@ -19633,6 +19610,11 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight + - uid: 4944 + components: + - type: Transform + pos: 28.5,18.5 + parent: 2173 - proto: EmergencyMedipen entities: - uid: 5720 @@ -20662,8 +20644,6 @@ entities: entities: - uid: 4406 components: - - type: MetaData - flags: InContainer - type: Transform parent: 4405 - type: Physics @@ -20680,8 +20660,6 @@ entities: entities: - uid: 4407 components: - - type: MetaData - flags: InContainer - type: Transform parent: 4405 - type: Physics @@ -30209,11 +30187,6 @@ entities: rot: 1.5707963267948966 rad pos: 28.5,27.5 parent: 2173 - - uid: 4171 - components: - - type: Transform - pos: -4.5,25.5 - parent: 2173 - uid: 4225 components: - type: Transform @@ -30426,8 +30399,6 @@ entities: entities: - uid: 2214 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 18.5,14.5 parent: 2173 @@ -30435,8 +30406,6 @@ entities: entities: - uid: 4138 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -27.5,13.5 parent: 2173 @@ -30444,8 +30413,6 @@ entities: entities: - uid: 4420 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 25.5,9.5 parent: 2173 @@ -30594,8 +30561,24 @@ entities: - uid: 1474 components: - type: Transform - pos: 30.099142,17.118307 + pos: 28.352488,17.108114 parent: 2173 + - type: HandheldLight + toggleActionEntity: 2428 + - type: ContainerContainer + containers: + cell_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + actions: !type:Container + showEnts: False + occludes: True + ents: + - 2428 + - type: Physics + canCollide: True + - type: ActionsContainer - proto: LessLethalVendingMachine entities: - uid: 4293 @@ -30603,6 +30586,13 @@ entities: - type: Transform pos: 6.5,6.5 parent: 2173 +- proto: Lighter + entities: + - uid: 2475 + components: + - type: Transform + pos: 28.428007,16.513512 + parent: 2173 - proto: LockerEvidence entities: - uid: 3719 @@ -30665,6 +30655,31 @@ entities: - type: Transform pos: -3.5,23.5 parent: 2173 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14923 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 +- proto: LockerMailCarrierFilled + entities: + - uid: 4943 + components: + - type: Transform + pos: 31.5,15.5 + parent: 2173 - proto: LockerMedicineFilled entities: - uid: 2440 @@ -30716,13 +30731,31 @@ entities: - uid: 805 components: - type: Transform - pos: 28.42206,16.847475 + pos: 29.810764,16.661615 parent: 2173 - uid: 807 components: - type: Transform - pos: 28.522831,16.557152 + pos: 29.342014,16.547031 parent: 2173 +- proto: MailCarrierMothershipComputer + entities: + - uid: 4296 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,16.5 + parent: 2173 + - type: ContainerContainer + containers: + ShipyardConsole-targetId: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + board: !type:Container + showEnts: False + occludes: True + ents: [] - proto: MailingUnit entities: - uid: 1084 @@ -30980,6 +31013,13 @@ entities: - type: Transform pos: -49.299927,10.571657 parent: 2173 +- proto: NFAshtray + entities: + - uid: 1753 + components: + - type: Transform + pos: 28.730091,16.628096 + parent: 2173 - proto: NitrogenCanister entities: - uid: 4068 @@ -31215,8 +31255,6 @@ entities: entities: - uid: 3729 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 24.5,10.5 @@ -31291,8 +31329,6 @@ entities: entities: - uid: 2135 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -33.5,5.5 parent: 2173 @@ -31610,47 +31646,35 @@ entities: entities: - uid: 615 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 39.5,23.5 parent: 2173 - uid: 705 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 21.5,26.5 parent: 2173 - uid: 763 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: 48.5,9.5 parent: 2173 - uid: 1197 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 20.5,20.5 parent: 2173 - uid: 1208 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 57.5,24.5 parent: 2173 - uid: 1244 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 57.5,3.5 parent: 2173 @@ -31658,8 +31682,6 @@ entities: powerLoad: 0 - uid: 1371 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -58.5,3.5 parent: 2173 @@ -31667,75 +31689,55 @@ entities: powerLoad: 0 - uid: 2220 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 36.5,11.5 parent: 2173 - uid: 2238 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 42.5,9.5 parent: 2173 - uid: 2616 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 9.5,25.5 parent: 2173 - uid: 2776 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 20.5,15.5 parent: 2173 - uid: 3111 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 36.5,20.5 parent: 2173 - uid: 3745 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 46.5,18.5 parent: 2173 - uid: 3747 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 40.5,18.5 parent: 2173 - uid: 3866 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 31.5,18.5 parent: 2173 - uid: 3948 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: 40.5,9.5 parent: 2173 - uid: 4192 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: -54.5,5.5 @@ -31744,8 +31746,6 @@ entities: powerLoad: 0 - uid: 4193 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -48.5,18.5 parent: 2173 @@ -31753,8 +31753,6 @@ entities: powerLoad: 0 - uid: 4196 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: -51.5,16.5 @@ -31763,8 +31761,6 @@ entities: powerLoad: 0 - uid: 4197 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: -32.5,1.5 @@ -31773,8 +31769,6 @@ entities: powerLoad: 0 - uid: 4198 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: -42.5,1.5 @@ -31783,8 +31777,6 @@ entities: powerLoad: 0 - uid: 4199 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: -38.5,8.5 @@ -31793,8 +31785,6 @@ entities: powerLoad: 0 - uid: 4200 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -36.5,12.5 parent: 2173 @@ -31802,8 +31792,6 @@ entities: powerLoad: 0 - uid: 4201 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: -28.5,11.5 @@ -31812,8 +31800,6 @@ entities: powerLoad: 0 - uid: 4202 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: -28.5,14.5 @@ -31822,8 +31808,6 @@ entities: powerLoad: 0 - uid: 4203 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -31.5,18.5 parent: 2173 @@ -31831,8 +31815,6 @@ entities: powerLoad: 0 - uid: 4207 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: -30.5,-5.5 @@ -31841,8 +31823,6 @@ entities: powerLoad: 0 - uid: 4208 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: -28.5,-15.5 @@ -31851,8 +31831,6 @@ entities: powerLoad: 0 - uid: 4209 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: -32.5,-27.5 @@ -31861,8 +31839,6 @@ entities: powerLoad: 0 - uid: 4210 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: -26.5,-27.5 @@ -31871,8 +31847,6 @@ entities: powerLoad: 0 - uid: 4211 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -26.5,-29.5 parent: 2173 @@ -31880,8 +31854,6 @@ entities: powerLoad: 0 - uid: 4212 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -32.5,-29.5 parent: 2173 @@ -31889,8 +31861,6 @@ entities: powerLoad: 0 - uid: 4213 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: -13.5,1.5 @@ -31899,8 +31869,6 @@ entities: powerLoad: 0 - uid: 4214 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 21.5,1.5 @@ -31909,8 +31877,6 @@ entities: powerLoad: 0 - uid: 4215 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: -22.5,1.5 @@ -31919,8 +31885,6 @@ entities: powerLoad: 0 - uid: 4216 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -6.5,6.5 parent: 2173 @@ -31928,8 +31892,6 @@ entities: powerLoad: 0 - uid: 4217 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 5.5,6.5 parent: 2173 @@ -31937,8 +31899,6 @@ entities: powerLoad: 0 - uid: 4218 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 12.5,1.5 @@ -31947,8 +31907,6 @@ entities: powerLoad: 0 - uid: 4219 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 2.5,14.5 @@ -31957,8 +31915,6 @@ entities: powerLoad: 0 - uid: 4220 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: -3.5,14.5 @@ -31967,8 +31923,6 @@ entities: powerLoad: 0 - uid: 4221 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 1.5,8.5 @@ -31977,8 +31931,6 @@ entities: powerLoad: 0 - uid: 4222 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: -2.5,8.5 @@ -31987,8 +31939,6 @@ entities: powerLoad: 0 - uid: 4223 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: -1.5,21.5 @@ -31997,8 +31947,6 @@ entities: powerLoad: 0 - uid: 4224 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: -1.5,25.5 @@ -32007,8 +31955,6 @@ entities: powerLoad: 0 - uid: 4226 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 7.5,15.5 @@ -32017,8 +31963,6 @@ entities: powerLoad: 0 - uid: 4227 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 11.5,10.5 @@ -32027,8 +31971,6 @@ entities: powerLoad: 0 - uid: 4228 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 14.5,16.5 parent: 2173 @@ -32036,8 +31978,6 @@ entities: powerLoad: 0 - uid: 4229 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: 29.5,-5.5 @@ -32046,8 +31986,6 @@ entities: powerLoad: 0 - uid: 4230 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 27.5,-15.5 @@ -32056,8 +31994,6 @@ entities: powerLoad: 0 - uid: 4231 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 31.5,-27.5 @@ -32066,8 +32002,6 @@ entities: powerLoad: 0 - uid: 4232 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 25.5,-27.5 @@ -32076,8 +32010,6 @@ entities: powerLoad: 0 - uid: 4233 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 31.5,-29.5 parent: 2173 @@ -32085,8 +32017,6 @@ entities: powerLoad: 0 - uid: 4234 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 25.5,-29.5 parent: 2173 @@ -32094,8 +32024,6 @@ entities: powerLoad: 0 - uid: 4235 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 30.5,5.5 parent: 2173 @@ -32103,8 +32031,6 @@ entities: powerLoad: 0 - uid: 4236 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 36.5,1.5 @@ -32113,8 +32039,6 @@ entities: powerLoad: 0 - uid: 4237 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 45.5,1.5 @@ -32123,8 +32047,6 @@ entities: powerLoad: 0 - uid: 4246 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 50.5,15.5 @@ -32133,16 +32055,12 @@ entities: powerLoad: 0 - uid: 4248 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 9.5,20.5 parent: 2173 - uid: 4279 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: -3.5,22.5 @@ -32151,16 +32069,12 @@ entities: powerLoad: 0 - uid: 4291 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: 22.5,10.5 parent: 2173 - uid: 4312 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -3.5,34.5 parent: 2173 @@ -32168,8 +32082,6 @@ entities: powerLoad: 0 - uid: 4313 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 2.5,30.5 @@ -32178,8 +32090,6 @@ entities: powerLoad: 0 - uid: 4314 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 5.5,34.5 parent: 2173 @@ -32187,8 +32097,6 @@ entities: powerLoad: 0 - uid: 4315 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 1.5,36.5 @@ -32197,8 +32105,6 @@ entities: powerLoad: 0 - uid: 4316 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 5.5,41.5 @@ -32207,8 +32113,6 @@ entities: powerLoad: 0 - uid: 4317 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -0.5,47.5 parent: 2173 @@ -32216,8 +32120,6 @@ entities: powerLoad: 0 - uid: 4318 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 4.5,51.5 parent: 2173 @@ -32225,8 +32127,6 @@ entities: powerLoad: 0 - uid: 4319 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 5.5,57.5 @@ -32235,8 +32135,6 @@ entities: powerLoad: 0 - uid: 4320 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 10.5,58.5 @@ -32245,8 +32143,6 @@ entities: powerLoad: 0 - uid: 4321 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 10.5,50.5 @@ -32255,8 +32151,6 @@ entities: powerLoad: 0 - uid: 4322 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: -4.5,40.5 @@ -32265,8 +32159,6 @@ entities: powerLoad: 0 - uid: 4323 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: -4.5,48.5 @@ -32275,8 +32167,6 @@ entities: powerLoad: 0 - uid: 4383 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 2.5,-0.5 parent: 2173 @@ -32284,8 +32174,6 @@ entities: powerLoad: 0 - uid: 4384 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -3.5,-0.5 parent: 2173 @@ -32293,54 +32181,40 @@ entities: powerLoad: 0 - uid: 4423 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 43.5,15.5 parent: 2173 - uid: 4424 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 31.5,26.5 parent: 2173 - uid: 4425 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 30.5,20.5 parent: 2173 - uid: 4434 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: -43.5,9.5 parent: 2173 - uid: 4437 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: -45.5,15.5 parent: 2173 - uid: 4934 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 48.5,6.5 parent: 2173 - uid: 5011 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 47.5,26.5 parent: 2173 @@ -32348,8 +32222,6 @@ entities: entities: - uid: 415 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: 51.5,9.5 @@ -32358,8 +32230,6 @@ entities: entities: - uid: 4191 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: -47.5,11.5 @@ -32520,11 +32390,6 @@ entities: - type: Transform pos: 45.5,13.5 parent: 2173 - - uid: 2428 - components: - - type: Transform - pos: 32.5,16.5 - parent: 2173 - uid: 2438 components: - type: Transform @@ -32540,15 +32405,16 @@ entities: - type: Transform pos: -43.5,11.5 parent: 2173 - - uid: 4158 + - uid: 4050 components: - type: Transform - pos: -28.5,14.5 + rot: 1.5707963267948966 rad + pos: 32.5,18.5 parent: 2173 - - uid: 4296 + - uid: 4158 components: - type: Transform - pos: 31.5,16.5 + pos: -28.5,14.5 parent: 2173 - proto: RadioHandheld entities: @@ -32966,11 +32832,6 @@ entities: - type: Transform pos: 40.5,22.5 parent: 2173 - - uid: 5824 - components: - - type: Transform - pos: 7.5,28.5 - parent: 2173 - proto: RandomVendingDrinks entities: - uid: 2348 @@ -32981,19 +32842,19 @@ entities: - uid: 2528 components: - type: Transform - pos: -2.5,37.5 + pos: 7.5,28.5 parent: 2173 - proto: RandomVendingSnacks entities: - - uid: 2523 + - uid: 3749 components: - type: Transform - pos: 3.5,51.5 + pos: 43.5,10.5 parent: 2173 - - uid: 3749 + - uid: 4946 components: - type: Transform - pos: 43.5,10.5 + pos: 6.5,28.5 parent: 2173 - proto: ReinforcedPlasmaWindow entities: @@ -34907,31 +34768,31 @@ entities: parent: 2173 - proto: ServiceTechFab entities: - - uid: 1764 + - uid: 4936 components: - type: Transform - pos: 32.5,18.5 + pos: 32.5,17.5 parent: 2173 - proto: SheetGlass entities: - uid: 4819 components: - type: Transform - pos: 32.549232,16.804625 + pos: 32.45495,18.826864 parent: 2173 - proto: SheetPlastic entities: - uid: 4930 components: - type: Transform - pos: 32.007565,16.773375 + pos: 32.61017,18.753946 parent: 2173 - proto: SheetSteel entities: - uid: 4931 components: - type: Transform - pos: 31.476742,16.762957 + pos: 32.39142,18.68103 parent: 2173 - proto: SignalButton entities: @@ -35537,8 +35398,6 @@ entities: entities: - uid: 3002 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 50.5,11.5 parent: 2173 @@ -36311,89 +36170,60 @@ entities: entities: - uid: 1381 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -54.5,11.5 parent: 2173 - uid: 1382 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -54.5,13.5 parent: 2173 - uid: 1383 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -54.5,15.5 parent: 2173 - uid: 1384 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -54.5,17.5 parent: 2173 - uid: 1399 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -53.5,15.5 parent: 2173 - uid: 1400 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -53.5,13.5 parent: 2173 - uid: 1401 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -53.5,11.5 parent: 2173 - uid: 1402 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -53.5,17.5 parent: 2173 - uid: 1411 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -46.5,18.5 parent: 2173 - uid: 1652 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: -50.5,18.5 parent: 2173 - uid: 2752 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -5.5,19.5 parent: 2173 - - uid: 4170 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -4.5,25.5 - parent: 2173 - proto: ToiletEmpty entities: - uid: 2557 @@ -36606,15 +36436,11 @@ entities: entities: - uid: 2756 components: - - type: MetaData - flags: SessionSpecific - type: Transform pos: -7.5,6.5 parent: 2173 - uid: 5794 components: - - type: MetaData - flags: SessionSpecific - type: Transform pos: 4.5,51.5 parent: 2173 @@ -36636,8 +36462,6 @@ entities: entities: - uid: 1211 components: - - type: MetaData - flags: SessionSpecific - type: Transform pos: 3.5,20.5 parent: 2173 @@ -36648,21 +36472,10 @@ entities: - type: Transform pos: 49.5,4.5 parent: 2173 -- proto: VendingMachineFlatpackVend - entities: - - uid: 4469 - components: - - type: MetaData - flags: SessionSpecific - - type: Transform - pos: -11.5,6.5 - parent: 2173 - proto: VendingMachineClothing entities: - uid: 2433 components: - - type: MetaData - flags: SessionSpecific - type: Transform pos: -49.5,18.5 parent: 2173 @@ -36684,11 +36497,16 @@ entities: entities: - uid: 2418 components: - - type: MetaData - flags: SessionSpecific - type: Transform pos: -44.5,5.5 parent: 2173 +- proto: VendingMachineFlatpackVend + entities: + - uid: 4469 + components: + - type: Transform + pos: -11.5,6.5 + parent: 2173 - proto: VendingMachineJaniDrobe entities: - uid: 2143 @@ -36705,10 +36523,10 @@ entities: parent: 2173 - proto: VendingMachineMailDrobe entities: - - uid: 2475 + - uid: 4942 components: - type: Transform - pos: 27.5,16.5 + pos: 32.5,15.5 parent: 2173 - proto: VendingMachineMedical entities: @@ -36719,8 +36537,6 @@ entities: parent: 2173 - uid: 2439 components: - - type: MetaData - flags: SessionSpecific - type: Transform pos: -45.5,7.5 parent: 2173 @@ -36756,15 +36572,11 @@ entities: entities: - uid: 2411 components: - - type: MetaData - flags: SessionSpecific - type: Transform pos: 16.5,5.5 parent: 2173 - uid: 5795 components: - - type: MetaData - flags: SessionSpecific - type: Transform pos: -2.5,36.5 parent: 2173 @@ -36775,12 +36587,22 @@ entities: - type: Transform pos: 40.5,11.5 parent: 2173 +- proto: VendingMachineTankDispenserEVA + entities: + - uid: 4170 + components: + - type: Transform + pos: -2.5,37.5 + parent: 2173 + - uid: 4171 + components: + - type: Transform + pos: 3.5,51.5 + parent: 2173 - proto: VendingMachineTheater entities: - uid: 2434 components: - - type: MetaData - flags: SessionSpecific - type: Transform pos: -47.5,18.5 parent: 2173 @@ -36788,8 +36610,6 @@ entities: entities: - uid: 2670 components: - - type: MetaData - flags: SessionSpecific - type: Transform pos: -43.5,5.5 parent: 2173 @@ -36797,8 +36617,6 @@ entities: entities: - uid: 2405 components: - - type: MetaData - flags: SessionSpecific - type: Transform pos: -13.5,5.5 parent: 2173 @@ -36806,8 +36624,6 @@ entities: entities: - uid: 2417 components: - - type: MetaData - flags: SessionSpecific - type: Transform pos: -45.5,5.5 parent: 2173 @@ -36833,3758 +36649,2734 @@ entities: entities: - uid: 1 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -25.5,-24.5 parent: 2173 - uid: 2 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -27.5,-24.5 parent: 2173 - uid: 3 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -25.5,-28.5 parent: 2173 - uid: 4 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -27.5,-28.5 parent: 2173 - uid: 8 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -7.5,7.5 parent: 2173 - uid: 9 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -27.5,-30.5 parent: 2173 - uid: 10 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -31.5,-30.5 parent: 2173 - uid: 11 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -31.5,-28.5 parent: 2173 - uid: 12 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -33.5,-28.5 parent: 2173 - uid: 13 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -33.5,-24.5 parent: 2173 - uid: 14 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -31.5,-24.5 parent: 2173 - uid: 21 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -32.5,-28.5 parent: 2173 - uid: 22 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -26.5,-28.5 parent: 2173 - uid: 23 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -27.5,-20.5 parent: 2173 - uid: 24 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -27.5,-19.5 parent: 2173 - uid: 25 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -31.5,-20.5 parent: 2173 - uid: 26 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -31.5,-19.5 parent: 2173 - uid: 27 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -27.5,-15.5 parent: 2173 - uid: 28 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -27.5,-14.5 parent: 2173 - uid: 29 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -31.5,-15.5 parent: 2173 - uid: 30 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -31.5,-14.5 parent: 2173 - uid: 31 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -27.5,-10.5 parent: 2173 - uid: 32 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -27.5,-9.5 parent: 2173 - uid: 33 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -31.5,-10.5 parent: 2173 - uid: 34 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -31.5,-9.5 parent: 2173 - uid: 35 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -27.5,-5.5 parent: 2173 - uid: 36 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -27.5,-4.5 parent: 2173 - uid: 37 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -31.5,-5.5 parent: 2173 - uid: 38 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -31.5,-4.5 parent: 2173 - uid: 39 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -27.5,-0.5 parent: 2173 - uid: 40 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -27.5,0.5 parent: 2173 - uid: 41 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -26.5,0.5 parent: 2173 - uid: 42 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -31.5,-0.5 parent: 2173 - uid: 43 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -31.5,0.5 parent: 2173 - uid: 44 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -32.5,0.5 parent: 2173 - uid: 45 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -22.5,0.5 parent: 2173 - uid: 46 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -21.5,0.5 parent: 2173 - uid: 47 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -7.5,0.5 parent: 2173 - uid: 48 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -8.5,0.5 parent: 2173 - uid: 49 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -17.5,0.5 parent: 2173 - uid: 50 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -16.5,0.5 parent: 2173 - uid: 51 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -12.5,0.5 parent: 2173 - uid: 52 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -13.5,0.5 parent: 2173 - uid: 53 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 25.5,0.5 parent: 2173 - uid: 54 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 26.5,0.5 parent: 2173 - uid: 55 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 26.5,-0.5 parent: 2173 - uid: 56 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 30.5,-0.5 parent: 2173 - uid: 57 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 30.5,0.5 parent: 2173 - uid: 58 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 31.5,0.5 parent: 2173 - uid: 59 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 26.5,-4.5 parent: 2173 - uid: 60 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 26.5,-5.5 parent: 2173 - uid: 61 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 30.5,-4.5 parent: 2173 - uid: 62 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 30.5,-5.5 parent: 2173 - uid: 63 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 30.5,-9.5 parent: 2173 - uid: 64 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 30.5,-10.5 parent: 2173 - uid: 65 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 26.5,-10.5 parent: 2173 - uid: 66 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 26.5,-9.5 parent: 2173 - uid: 67 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 30.5,-15.5 parent: 2173 - uid: 68 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 30.5,-14.5 parent: 2173 - uid: 69 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 26.5,-15.5 parent: 2173 - uid: 70 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 26.5,-14.5 parent: 2173 - uid: 71 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 30.5,-19.5 parent: 2173 - uid: 72 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 30.5,-20.5 parent: 2173 - uid: 73 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 26.5,-19.5 parent: 2173 - uid: 74 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 26.5,-20.5 parent: 2173 - uid: 75 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 30.5,-24.5 parent: 2173 - uid: 76 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 26.5,-24.5 parent: 2173 - uid: 77 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 24.5,-24.5 parent: 2173 - uid: 78 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 24.5,-28.5 parent: 2173 - uid: 79 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 25.5,-28.5 parent: 2173 - uid: 80 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 26.5,-28.5 parent: 2173 - uid: 81 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 26.5,-30.5 parent: 2173 - uid: 82 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 30.5,-30.5 parent: 2173 - uid: 83 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 30.5,-28.5 parent: 2173 - uid: 84 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 31.5,-28.5 parent: 2173 - uid: 85 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 32.5,-28.5 parent: 2173 - uid: 86 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 32.5,-24.5 parent: 2173 - uid: 87 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 21.5,0.5 parent: 2173 - uid: 88 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 20.5,0.5 parent: 2173 - uid: 89 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 16.5,0.5 parent: 2173 - uid: 90 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 15.5,0.5 parent: 2173 - uid: 91 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 6.5,0.5 parent: 2173 - uid: 92 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 7.5,0.5 parent: 2173 - uid: 93 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 11.5,0.5 parent: 2173 - uid: 94 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 12.5,0.5 parent: 2173 - uid: 200 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 55.5,-1.5 parent: 2173 - uid: 201 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 55.5,0.5 parent: 2173 - uid: 202 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 59.5,-1.5 parent: 2173 - uid: 203 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 59.5,0.5 parent: 2173 - uid: 204 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 61.5,0.5 parent: 2173 - uid: 205 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 61.5,4.5 parent: 2173 - uid: 206 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 59.5,4.5 parent: 2173 - uid: 208 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 26.5,5.5 parent: 2173 - uid: 210 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 25.5,5.5 parent: 2173 - uid: 211 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 24.5,5.5 parent: 2173 - uid: 212 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 23.5,5.5 parent: 2173 - uid: 213 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 22.5,5.5 parent: 2173 - uid: 217 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 18.5,5.5 parent: 2173 - uid: 218 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 17.5,5.5 parent: 2173 - uid: 219 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 17.5,6.5 parent: 2173 - uid: 220 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 16.5,6.5 parent: 2173 - uid: 224 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 12.5,6.5 parent: 2173 - uid: 225 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 11.5,6.5 parent: 2173 - uid: 226 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 11.5,7.5 parent: 2173 - uid: 227 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 10.5,7.5 parent: 2173 - uid: 231 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 5.5,13.5 parent: 2173 - uid: 232 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 5.5,14.5 parent: 2173 - uid: 233 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -11.5,7.5 parent: 2173 - uid: 237 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -12.5,7.5 parent: 2173 - uid: 238 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -12.5,6.5 parent: 2173 - uid: 239 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -13.5,6.5 parent: 2173 - uid: 240 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -17.5,6.5 parent: 2173 - uid: 244 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -18.5,6.5 parent: 2173 - uid: 245 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -18.5,5.5 parent: 2173 - uid: 246 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -19.5,5.5 parent: 2173 - uid: 251 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -26.5,5.5 parent: 2173 - uid: 252 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -27.5,5.5 parent: 2173 - uid: 253 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -23.5,5.5 parent: 2173 - uid: 254 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -24.5,5.5 parent: 2173 - uid: 255 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -25.5,5.5 parent: 2173 - uid: 258 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 6.5,14.5 parent: 2173 - uid: 262 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -6.5,9.5 parent: 2173 - uid: 263 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 5.5,8.5 parent: 2173 - uid: 264 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -6.5,7.5 parent: 2173 - uid: 265 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -6.5,8.5 parent: 2173 - uid: 270 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -6.5,14.5 parent: 2173 - uid: 274 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 35.5,0.5 parent: 2173 - uid: 275 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 36.5,0.5 parent: 2173 - uid: 276 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 40.5,0.5 parent: 2173 - uid: 277 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 41.5,0.5 parent: 2173 - uid: 278 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 51.5,0.5 parent: 2173 - uid: 279 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 50.5,0.5 parent: 2173 - uid: 280 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 46.5,0.5 parent: 2173 - uid: 281 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 45.5,0.5 parent: 2173 - uid: 282 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -36.5,0.5 parent: 2173 - uid: 283 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -37.5,0.5 parent: 2173 - uid: 284 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -41.5,0.5 parent: 2173 - uid: 285 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -42.5,0.5 parent: 2173 - uid: 286 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -46.5,0.5 parent: 2173 - uid: 287 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -47.5,0.5 parent: 2173 - uid: 288 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -51.5,0.5 parent: 2173 - uid: 289 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -52.5,0.5 parent: 2173 - uid: 290 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -56.5,0.5 parent: 2173 - uid: 291 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -56.5,-1.5 parent: 2173 - uid: 292 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -60.5,-1.5 parent: 2173 - uid: 293 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -60.5,0.5 parent: 2173 - uid: 294 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -62.5,0.5 parent: 2173 - uid: 295 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -62.5,4.5 parent: 2173 - uid: 296 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -60.5,4.5 parent: 2173 - uid: 297 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -56.5,4.5 parent: 2173 - uid: 298 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -55.5,4.5 parent: 2173 - uid: 299 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -55.5,5.5 parent: 2173 - uid: 301 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: -58.5,4.5 parent: 2173 - uid: 339 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 57.5,4.5 parent: 2173 - uid: 341 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 55.5,4.5 parent: 2173 - uid: 342 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 54.5,4.5 parent: 2173 - uid: 343 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 54.5,5.5 parent: 2173 - uid: 351 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -6.5,13.5 parent: 2173 - uid: 352 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 1.5,7.5 parent: 2173 - uid: 353 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 5.5,7.5 parent: 2173 - uid: 354 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 6.5,7.5 parent: 2173 - uid: 356 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 7.5,9.5 parent: 2173 - uid: 357 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 5.5,9.5 parent: 2173 - uid: 358 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -2.5,7.5 parent: 2173 - uid: 359 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: -17.5,14.5 parent: 2173 - uid: 361 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 7.5,13.5 parent: 2173 - uid: 362 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 7.5,14.5 parent: 2173 - uid: 363 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 10.5,9.5 parent: 2173 - uid: 364 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 11.5,9.5 parent: 2173 - uid: 365 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 12.5,9.5 parent: 2173 - uid: 367 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: -8.5,17.5 parent: 2173 - uid: 370 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 17.5,9.5 parent: 2173 - uid: 371 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 18.5,9.5 parent: 2173 - uid: 372 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 18.5,8.5 parent: 2173 - uid: 373 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 22.5,8.5 parent: 2173 - uid: 374 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 23.5,8.5 parent: 2173 - uid: 377 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: -19.5,9.5 parent: 2173 - uid: 378 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: -19.5,8.5 parent: 2173 - uid: 379 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: -23.5,8.5 parent: 2173 - uid: 380 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: -24.5,8.5 parent: 2173 - uid: 382 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: -8.5,14.5 parent: 2173 - uid: 388 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 22.5,13.5 parent: 2173 - uid: 392 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 41.5,10.5 parent: 2173 - uid: 394 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 41.5,11.5 parent: 2173 - uid: 396 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 18.5,17.5 parent: 2173 - uid: 397 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 18.5,16.5 parent: 2173 - uid: 398 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 18.5,15.5 parent: 2173 - uid: 402 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 27.5,8.5 parent: 2173 - uid: 403 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 24.5,8.5 parent: 2173 - uid: 404 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 25.5,8.5 parent: 2173 - uid: 405 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 26.5,8.5 parent: 2173 - uid: 406 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 27.5,9.5 parent: 2173 - uid: 407 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 27.5,10.5 parent: 2173 - uid: 408 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 27.5,11.5 parent: 2173 - uid: 409 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 27.5,12.5 parent: 2173 - uid: 410 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 27.5,13.5 parent: 2173 - uid: 423 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 14.5,9.5 parent: 2173 - uid: 429 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: -16.5,17.5 parent: 2173 - uid: 433 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: -16.5,14.5 parent: 2173 - uid: 434 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: -17.5,17.5 parent: 2173 - uid: 438 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: -19.5,17.5 parent: 2173 - uid: 441 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 26.5,17.5 parent: 2173 - uid: 448 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: -25.5,8.5 parent: 2173 - uid: 449 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: -26.5,8.5 parent: 2173 - uid: 450 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: -27.5,8.5 parent: 2173 - uid: 451 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: -27.5,7.5 parent: 2173 - uid: 452 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: -27.5,6.5 parent: 2173 - uid: 453 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 26.5,7.5 parent: 2173 - uid: 454 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 26.5,6.5 parent: 2173 - uid: 469 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 21.5,27.5 parent: 2173 - uid: 479 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 47.5,21.5 parent: 2173 - uid: 486 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -4.5,29.5 parent: 2173 - uid: 487 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -3.5,29.5 parent: 2173 - uid: 489 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 26.5,28.5 parent: 2173 - uid: 494 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 26.5,27.5 parent: 2173 - uid: 506 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 12.5,19.5 parent: 2173 - uid: 517 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 12.5,28.5 parent: 2173 - uid: 518 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 12.5,29.5 parent: 2173 - uid: 519 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 11.5,29.5 parent: 2173 - uid: 520 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 54.5,23.5 parent: 2173 - uid: 523 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 7.5,29.5 parent: 2173 - uid: 527 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 3.5,29.5 parent: 2173 - uid: 528 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 2.5,29.5 parent: 2173 - uid: 533 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: -18.5,17.5 parent: 2173 - uid: 534 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: -17.5,11.5 parent: 2173 - uid: 536 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: -17.5,9.5 parent: 2173 - uid: 537 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: -6.5,19.5 parent: 2173 - uid: 538 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: -19.5,14.5 parent: 2173 - uid: 539 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: -17.5,13.5 parent: 2173 - uid: 540 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: -17.5,10.5 parent: 2173 - uid: 541 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -22.5,14.5 parent: 2173 - uid: 542 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: -17.5,12.5 parent: 2173 - uid: 543 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: -6.5,18.5 parent: 2173 - uid: 546 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: -18.5,9.5 parent: 2173 - uid: 548 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: -6.5,20.5 parent: 2173 - uid: 549 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: -6.5,22.5 parent: 2173 - uid: 550 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: -6.5,21.5 parent: 2173 - uid: 553 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: -6.5,25.5 parent: 2173 - uid: 554 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: -6.5,26.5 parent: 2173 - uid: 555 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: -6.5,27.5 parent: 2173 - uid: 573 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 46.5,21.5 parent: 2173 - uid: 618 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 12.5,51.5 parent: 2173 - uid: 648 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 38.5,20.5 parent: 2173 - uid: 649 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 38.5,19.5 parent: 2173 - uid: 650 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 40.5,19.5 parent: 2173 - uid: 664 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 46.5,19.5 parent: 2173 - uid: 670 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 49.5,19.5 parent: 2173 - uid: 671 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 50.5,19.5 parent: 2173 - uid: 672 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 54.5,19.5 parent: 2173 - uid: 673 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 54.5,18.5 parent: 2173 - uid: 674 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 54.5,14.5 parent: 2173 - uid: 675 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 54.5,13.5 parent: 2173 - uid: 676 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 54.5,9.5 parent: 2173 - uid: 677 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 54.5,10.5 parent: 2173 - uid: 678 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 1.5,29.5 parent: 2173 - uid: 679 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -2.5,29.5 parent: 2173 - uid: 680 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -2.5,30.5 parent: 2173 - uid: 681 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -5.5,29.5 parent: 2173 - uid: 682 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -6.5,29.5 parent: 2173 - uid: 683 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -6.5,28.5 parent: 2173 - uid: 685 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 1.5,30.5 parent: 2173 - uid: 686 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -2.5,34.5 parent: 2173 - uid: 687 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 1.5,34.5 parent: 2173 - uid: 688 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -3.5,35.5 parent: 2173 - uid: 689 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -2.5,35.5 parent: 2173 - uid: 690 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 1.5,35.5 parent: 2173 - uid: 691 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -3.5,36.5 parent: 2173 - uid: 692 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -3.5,41.5 parent: 2173 - uid: 693 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -6.5,47.5 parent: 2173 - uid: 694 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -3.5,40.5 parent: 2173 - uid: 695 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -6.5,41.5 parent: 2173 - uid: 696 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -3.5,47.5 parent: 2173 - uid: 697 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -3.5,48.5 parent: 2173 - uid: 710 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 12.5,57.5 parent: 2173 - uid: 720 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 5.5,35.5 parent: 2173 - uid: 721 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 5.5,39.5 parent: 2173 - uid: 722 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 5.5,40.5 parent: 2173 - uid: 723 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 6.5,40.5 parent: 2173 - uid: 724 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 9.5,40.5 parent: 2173 - uid: 725 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 9.5,44.5 parent: 2173 - uid: 726 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 9.5,45.5 parent: 2173 - uid: 727 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 9.5,49.5 parent: 2173 - uid: 728 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 9.5,50.5 parent: 2173 - uid: 729 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 9.5,51.5 parent: 2173 - uid: 730 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 9.5,57.5 parent: 2173 - uid: 731 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 9.5,58.5 parent: 2173 - uid: 732 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -0.5,48.5 parent: 2173 - uid: 733 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -0.5,52.5 parent: 2173 - uid: 734 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 3.5,52.5 parent: 2173 - uid: 735 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 4.5,52.5 parent: 2173 - uid: 736 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 4.5,53.5 parent: 2173 - uid: 737 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 4.5,57.5 parent: 2173 - uid: 738 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 4.5,58.5 parent: 2173 - uid: 739 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 5.5,58.5 parent: 2173 - uid: 756 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 39.5,12.5 parent: 2173 - uid: 757 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 35.5,12.5 parent: 2173 - uid: 759 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 34.5,12.5 parent: 2173 - uid: 760 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 34.5,11.5 parent: 2173 - uid: 762 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 37.5,12.5 parent: 2173 - uid: 831 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: -2.5,14.5 parent: 2173 - uid: 837 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -24.5,14.5 parent: 2173 - uid: 838 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -25.5,14.5 parent: 2173 - uid: 839 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -25.5,18.5 parent: 2173 - uid: 840 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -25.5,19.5 parent: 2173 - uid: 841 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -26.5,19.5 parent: 2173 - uid: 851 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -25.5,13.5 parent: 2173 - uid: 859 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -20.5,14.5 parent: 2173 - uid: 959 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -21.5,14.5 parent: 2173 - uid: 960 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: -6.5,17.5 parent: 2173 - uid: 982 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -28.5,19.5 parent: 2173 - uid: 983 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -29.5,19.5 parent: 2173 - uid: 985 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -29.5,18.5 parent: 2173 - uid: 1005 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -29.5,14.5 parent: 2173 - uid: 1010 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -29.5,13.5 parent: 2173 - uid: 1011 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -26.5,13.5 parent: 2173 - uid: 1012 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -28.5,13.5 parent: 2173 - uid: 1025 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -36.5,13.5 parent: 2173 - uid: 1026 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -37.5,13.5 parent: 2173 - uid: 1027 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -38.5,13.5 parent: 2173 - uid: 1028 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -39.5,13.5 parent: 2173 - uid: 1029 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -39.5,14.5 parent: 2173 - uid: 1030 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -39.5,15.5 parent: 2173 - uid: 1031 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -39.5,16.5 parent: 2173 - uid: 1032 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -36.5,19.5 parent: 2173 - uid: 1033 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -37.5,19.5 parent: 2173 - uid: 1034 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -35.5,19.5 parent: 2173 - uid: 1035 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -34.5,19.5 parent: 2173 - uid: 1036 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -33.5,19.5 parent: 2173 - uid: 1037 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -32.5,19.5 parent: 2173 - uid: 1038 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -31.5,19.5 parent: 2173 - uid: 1039 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -30.5,19.5 parent: 2173 - uid: 1040 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -39.5,17.5 parent: 2173 - uid: 1042 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -39.5,19.5 parent: 2173 - uid: 1043 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -38.5,19.5 parent: 2173 - uid: 1044 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -38.5,15.5 parent: 2173 - uid: 1045 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -37.5,15.5 parent: 2173 - uid: 1046 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -36.5,15.5 parent: 2173 - uid: 1047 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -35.5,15.5 parent: 2173 - uid: 1048 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -35.5,13.5 parent: 2173 - uid: 1049 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -35.5,17.5 parent: 2173 - uid: 1050 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -36.5,17.5 parent: 2173 - uid: 1051 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -37.5,17.5 parent: 2173 - uid: 1052 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -38.5,17.5 parent: 2173 - uid: 1053 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -34.5,13.5 parent: 2173 - uid: 1054 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -33.5,13.5 parent: 2173 - uid: 1060 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -40.5,19.5 parent: 2173 - uid: 1061 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -41.5,19.5 parent: 2173 - uid: 1062 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -41.5,18.5 parent: 2173 - uid: 1063 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -41.5,17.5 parent: 2173 - uid: 1064 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -41.5,16.5 parent: 2173 - uid: 1065 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -41.5,15.5 parent: 2173 - uid: 1066 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -41.5,14.5 parent: 2173 - uid: 1113 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 21.5,13.5 parent: 2173 - uid: 1114 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 20.5,13.5 parent: 2173 - uid: 1205 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 35.5,27.5 parent: 2173 - uid: 1209 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 24.5,13.5 parent: 2173 - uid: 1216 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 12.5,22.5 parent: 2173 - uid: 1309 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 13.5,9.5 parent: 2173 - uid: 1373 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -55.5,9.5 parent: 2173 - uid: 1374 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -55.5,11.5 parent: 2173 - uid: 1375 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -55.5,13.5 parent: 2173 - uid: 1376 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -55.5,15.5 parent: 2173 - uid: 1377 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -55.5,17.5 parent: 2173 - uid: 1378 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -55.5,19.5 parent: 2173 - uid: 1379 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -54.5,19.5 parent: 2173 - uid: 1380 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -53.5,19.5 parent: 2173 - uid: 1407 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -50.5,19.5 parent: 2173 - uid: 1416 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -46.5,19.5 parent: 2173 - uid: 1511 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 1.5,14.5 parent: 2173 - uid: 1559 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 50.5,21.5 parent: 2173 - uid: 1579 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -2.5,0.5 parent: 2173 - uid: 1580 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 1.5,0.5 parent: 2173 - uid: 1581 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -3.5,0.5 parent: 2173 - uid: 1582 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 2.5,0.5 parent: 2173 - uid: 1583 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -2.5,1.5 parent: 2173 - uid: 1584 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 1.5,1.5 parent: 2173 - uid: 1585 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -2.5,-0.5 parent: 2173 - uid: 1586 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 1.5,-0.5 parent: 2173 - uid: 2139 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 26.5,18.5 parent: 2173 - uid: 2151 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 34.5,10.5 parent: 2173 - uid: 2153 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 36.5,12.5 parent: 2173 - uid: 2154 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 38.5,12.5 parent: 2173 - uid: 2221 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 21.5,16.5 parent: 2173 - uid: 2222 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 22.5,16.5 parent: 2173 - uid: 2223 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 23.5,17.5 parent: 2173 - uid: 2224 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 23.5,16.5 parent: 2173 - uid: 2230 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 22.5,17.5 parent: 2173 - uid: 2236 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 24.5,17.5 parent: 2173 - uid: 2243 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 24.5,16.5 parent: 2173 - uid: 2346 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 42.5,11.5 parent: 2173 - uid: 2351 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 25.5,13.5 parent: 2173 - uid: 2394 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 45.5,11.5 parent: 2173 - uid: 2543 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 2.5,25.5 parent: 2173 - uid: 2556 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 26.5,13.5 parent: 2173 - uid: 2595 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 25.5,27.5 parent: 2173 - uid: 2596 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 26.5,26.5 parent: 2173 - uid: 2599 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 43.5,27.5 parent: 2173 - uid: 2600 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 51.5,27.5 parent: 2173 - uid: 2601 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 47.5,27.5 parent: 2173 - uid: 2602 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 61.5,23.5 parent: 2173 - uid: 2603 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 55.5,27.5 parent: 2173 - uid: 2604 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 2.5,24.5 parent: 2173 - uid: 2646 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 49.5,20.5 parent: 2173 - uid: 2649 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 40.5,21.5 parent: 2173 - uid: 2657 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 47.5,19.5 parent: 2173 - uid: 2759 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 49.5,11.5 parent: 2173 - uid: 2760 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 47.5,11.5 parent: 2173 - uid: 2761 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 44.5,11.5 parent: 2173 - uid: 2766 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 41.5,9.5 parent: 2173 - uid: 2788 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 38.5,27.5 parent: 2173 - uid: 2791 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 30.5,27.5 parent: 2173 - uid: 2826 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 46.5,11.5 parent: 2173 - uid: 2981 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 48.5,7.5 parent: 2173 - uid: 3101 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 39.5,21.5 parent: 2173 - uid: 3103 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 38.5,8.5 parent: 2173 - uid: 3108 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 41.5,8.5 parent: 2173 - uid: 3130 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 24.5,15.5 parent: 2173 - uid: 3142 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 9.5,22.5 parent: 2173 - uid: 3148 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 12.5,27.5 parent: 2173 - uid: 3687 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 42.5,7.5 parent: 2173 - uid: 3725 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 40.5,12.5 parent: 2173 - uid: 3726 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 41.5,12.5 parent: 2173 - uid: 3727 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 26.5,16.5 parent: 2173 - uid: 3728 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 19.5,13.5 parent: 2173 - uid: 3737 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 41.5,7.5 parent: 2173 - uid: 3739 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 34.5,7.5 parent: 2173 - uid: 3748 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 26.5,15.5 parent: 2173 - uid: 3750 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 27.5,15.5 parent: 2173 - uid: 3752 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 39.5,19.5 parent: 2173 - uid: 3756 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 23.5,15.5 parent: 2173 - uid: 3758 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 23.5,14.5 parent: 2173 - uid: 3759 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 24.5,14.5 parent: 2173 - uid: 3760 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 46.5,7.5 parent: 2173 - uid: 3766 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 43.5,7.5 parent: 2173 - uid: 3771 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 30.5,26.5 parent: 2173 - uid: 3772 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 30.5,28.5 parent: 2173 - uid: 3773 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 31.5,27.5 parent: 2173 - uid: 3775 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 21.5,17.5 parent: 2173 - uid: 3776 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 20.5,16.5 parent: 2173 - uid: 3777 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 20.5,17.5 parent: 2173 - uid: 3778 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 19.5,17.5 parent: 2173 - uid: 3779 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 19.5,16.5 parent: 2173 - uid: 3785 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 43.5,11.5 parent: 2173 - uid: 3798 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 48.5,11.5 parent: 2173 - uid: 3805 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 38.5,6.5 parent: 2173 - uid: 3808 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 41.5,6.5 parent: 2173 - uid: 3810 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 15.5,19.5 parent: 2173 - uid: 3860 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 16.5,19.5 parent: 2173 - uid: 3861 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 14.5,19.5 parent: 2173 - uid: 3862 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 18.5,19.5 parent: 2173 - uid: 3863 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 17.5,19.5 parent: 2173 - uid: 3864 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 13.5,19.5 parent: 2173 - uid: 3868 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 19.5,19.5 parent: 2173 - uid: 3869 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 20.5,19.5 parent: 2173 - uid: 3870 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 21.5,19.5 parent: 2173 - uid: 3871 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 22.5,19.5 parent: 2173 - uid: 3872 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 23.5,19.5 parent: 2173 - uid: 3873 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 25.5,19.5 parent: 2173 - uid: 3874 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 24.5,19.5 parent: 2173 - uid: 3875 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 26.5,19.5 parent: 2173 - uid: 3929 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 59.5,29.5 parent: 2173 - uid: 3930 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 59.5,27.5 parent: 2173 - uid: 3931 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 61.5,27.5 parent: 2173 - uid: 3932 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 59.5,23.5 parent: 2173 - uid: 3933 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 55.5,29.5 parent: 2173 - uid: 3989 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 34.5,6.5 parent: 2173 - uid: 3997 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 34.5,8.5 parent: 2173 - uid: 4039 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 42.5,27.5 parent: 2173 - uid: 4041 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 54.5,22.5 parent: 2173 - uid: 4043 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 34.5,9.5 parent: 2173 - uid: 4048 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 54.5,21.5 parent: 2173 - uid: 4049 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 47.5,20.5 parent: 2173 - uid: 4060 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 49.5,7.5 parent: 2173 - uid: 4113 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 49.5,10.5 parent: 2173 - uid: 4122 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 38.5,7.5 parent: 2173 - uid: 4244 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 49.5,8.5 parent: 2173 - uid: 4245 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 49.5,9.5 parent: 2173 - uid: 4247 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 44.5,7.5 parent: 2173 - uid: 4250 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 55.5,23.5 parent: 2173 - uid: 4251 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 57.5,23.5 parent: 2173 - uid: 4259 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 13.5,27.5 parent: 2173 - uid: 4260 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 17.5,27.5 parent: 2173 - uid: 4262 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 47.5,7.5 parent: 2173 - uid: 4327 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: 8.5,17.5 parent: 2173 - uid: 4328 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: 6.5,17.5 parent: 2173 - uid: 4329 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: 5.5,17.5 parent: 2173 - uid: 4349 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: 5.5,18.5 parent: 2173 - uid: 4354 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: 8.5,14.5 parent: 2173 - uid: 4359 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: 9.5,14.5 parent: 2173 - uid: 4365 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: 5.5,19.5 parent: 2173 - uid: 4374 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: 11.5,17.5 parent: 2173 - uid: 4382 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: 12.5,17.5 parent: 2173 - uid: 4386 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: 13.5,17.5 parent: 2173 - uid: 4387 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: 14.5,17.5 parent: 2173 - uid: 4388 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: 16.5,17.5 parent: 2173 - uid: 4389 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: 17.5,17.5 parent: 2173 - uid: 4390 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: 10.5,17.5 parent: 2173 - uid: 4391 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: 9.5,17.5 parent: 2173 - uid: 4392 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: 11.5,19.5 parent: 2173 - uid: 4393 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: 3.5,19.5 parent: 2173 - uid: 4394 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: 4.5,19.5 parent: 2173 - uid: 4395 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: 9.5,19.5 parent: 2173 - uid: 4396 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: 9.5,18.5 parent: 2173 - uid: 4397 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: 2.5,19.5 parent: 2173 - uid: 4399 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 18.5,13.5 parent: 2173 - uid: 4400 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 23.5,13.5 parent: 2173 - uid: 4980 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 49.5,21.5 parent: 2173 - uid: 5001 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 9.5,24.5 parent: 2173 - uid: 5004 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 2.5,20.5 parent: 2173 - uid: 5014 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 11.5,22.5 parent: 2173 - uid: 5016 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 10.5,22.5 parent: 2173 - uid: 6124 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 38.5,21.5 parent: 2173 @@ -40592,1243 +39384,924 @@ entities: entities: - uid: 256 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: -28.5,6.5 parent: 2173 - uid: 257 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: -30.5,7.5 parent: 2173 - uid: 348 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: -30.5,8.5 parent: 2173 - uid: 349 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: -30.5,9.5 parent: 2173 - uid: 350 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: -30.5,6.5 parent: 2173 - uid: 445 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: -3.5,19.5 parent: 2173 - uid: 446 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: -2.5,19.5 parent: 2173 - uid: 447 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 1.5,19.5 parent: 2173 - uid: 455 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 27.5,6.5 parent: 2173 - uid: 473 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: -2.5,20.5 parent: 2173 - uid: 474 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: -2.5,21.5 parent: 2173 - uid: 481 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: -2.5,22.5 parent: 2173 - uid: 482 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: -2.5,23.5 parent: 2173 - uid: 483 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: -2.5,24.5 parent: 2173 - uid: 484 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: -2.5,25.5 parent: 2173 - uid: 485 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: -3.5,25.5 parent: 2173 - uid: 488 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: -2.5,28.5 parent: 2173 - uid: 492 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 33.5,19.5 parent: 2173 - uid: 798 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 35.5,22.5 parent: 2173 - uid: 800 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 35.5,21.5 parent: 2173 - uid: 801 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 35.5,23.5 parent: 2173 - uid: 842 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: -30.5,10.5 parent: 2173 - uid: 843 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: -29.5,10.5 parent: 2173 - uid: 844 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: -28.5,10.5 parent: 2173 - uid: 845 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: -27.5,10.5 parent: 2173 - uid: 846 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: -26.5,10.5 parent: 2173 - uid: 847 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: -25.5,10.5 parent: 2173 - uid: 848 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: -24.5,10.5 parent: 2173 - uid: 849 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: -23.5,10.5 parent: 2173 - uid: 850 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: -22.5,10.5 parent: 2173 - uid: 852 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: -25.5,11.5 parent: 2173 - uid: 853 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: -22.5,11.5 parent: 2173 - uid: 854 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: -22.5,12.5 parent: 2173 - uid: 855 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: -19.5,10.5 parent: 2173 - uid: 856 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: -19.5,12.5 parent: 2173 - uid: 857 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: -19.5,13.5 parent: 2173 - uid: 993 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -30.5,5.5 parent: 2173 - uid: 996 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -34.5,5.5 parent: 2173 - uid: 997 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -41.5,7.5 parent: 2173 - uid: 998 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -34.5,6.5 parent: 2173 - uid: 999 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -38.5,7.5 parent: 2173 - uid: 1000 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -37.5,7.5 parent: 2173 - uid: 1001 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -36.5,7.5 parent: 2173 - uid: 1003 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -34.5,7.5 parent: 2173 - uid: 1004 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -38.5,6.5 parent: 2173 - uid: 1006 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -42.5,7.5 parent: 2173 - uid: 1007 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -43.5,7.5 parent: 2173 - uid: 1008 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -42.5,12.5 parent: 2173 - uid: 1009 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -42.5,13.5 parent: 2173 - uid: 1013 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -42.5,8.5 parent: 2173 - uid: 1014 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -42.5,9.5 parent: 2173 - uid: 1015 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -42.5,10.5 parent: 2173 - uid: 1016 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -42.5,11.5 parent: 2173 - uid: 1017 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -37.5,8.5 parent: 2173 - uid: 1018 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -37.5,9.5 parent: 2173 - uid: 1019 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -37.5,10.5 parent: 2173 - uid: 1020 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -38.5,10.5 parent: 2173 - uid: 1021 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -41.5,10.5 parent: 2173 - uid: 1022 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -43.5,6.5 parent: 2173 - uid: 1023 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -41.5,13.5 parent: 2173 - uid: 1024 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -40.5,13.5 parent: 2173 - uid: 1159 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: -44.5,6.5 parent: 2173 - uid: 1160 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: -45.5,6.5 parent: 2173 - uid: 1161 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: -46.5,6.5 parent: 2173 - uid: 1162 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: -46.5,1.5 parent: 2173 - uid: 1163 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: -46.5,5.5 parent: 2173 - uid: 1169 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: -46.5,9.5 parent: 2173 - uid: 1172 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: -49.5,9.5 parent: 2173 - uid: 1175 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -46.5,7.5 parent: 2173 - uid: 1176 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -46.5,11.5 parent: 2173 - uid: 1177 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -46.5,12.5 parent: 2173 - uid: 1178 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -50.5,9.5 parent: 2173 - uid: 1179 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -54.5,9.5 parent: 2173 - uid: 1180 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -53.5,9.5 parent: 2173 - uid: 1408 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -50.5,10.5 parent: 2173 - uid: 1409 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -49.5,16.5 parent: 2173 - uid: 1412 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -50.5,16.5 parent: 2173 - uid: 1414 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -46.5,10.5 parent: 2173 - uid: 1415 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -43.5,12.5 parent: 2173 - uid: 1417 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -46.5,16.5 parent: 2173 - uid: 1418 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -47.5,16.5 parent: 2173 - uid: 1419 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -48.5,16.5 parent: 2173 - uid: 1421 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -46.5,13.5 parent: 2173 - uid: 1467 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: -45.5,12.5 parent: 2173 - uid: 1486 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 33.5,14.5 parent: 2173 - uid: 1487 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 34.5,14.5 parent: 2173 - uid: 1488 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 32.5,12.5 parent: 2173 - uid: 1489 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 33.5,12.5 parent: 2173 - uid: 1533 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 53.5,4.5 parent: 2173 - uid: 1538 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 51.5,4.5 parent: 2173 - uid: 1539 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 50.5,6.5 parent: 2173 - uid: 1540 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 49.5,6.5 parent: 2173 - uid: 1541 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 50.5,5.5 parent: 2173 - uid: 1542 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 50.5,4.5 parent: 2173 - uid: 1598 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -35.5,7.5 parent: 2173 - uid: 1751 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 38.5,23.5 parent: 2173 - uid: 1752 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 30.5,15.5 parent: 2173 - - uid: 1753 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 31.5,15.5 - parent: 2173 - uid: 1754 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 29.5,15.5 parent: 2173 - uid: 1763 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 33.5,18.5 parent: 2173 + - uid: 1764 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,14.5 + parent: 2173 - uid: 1765 components: - - type: MetaData - flags: PvsPriority - type: Transform - pos: 32.5,15.5 + rot: 1.5707963267948966 rad + pos: 31.5,14.5 parent: 2173 - uid: 1784 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: -2.5,27.5 parent: 2173 - uid: 2087 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 18.5,10.5 parent: 2173 - uid: 2088 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 23.5,9.5 parent: 2173 - uid: 2089 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 23.5,10.5 parent: 2173 - uid: 2146 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 40.5,14.5 parent: 2173 - uid: 2147 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 42.5,14.5 parent: 2173 - uid: 2148 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 39.5,14.5 parent: 2173 - uid: 2150 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 41.5,14.5 parent: 2173 - uid: 2152 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 43.5,14.5 parent: 2173 + - uid: 2242 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,14.5 + parent: 2173 - uid: 2431 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 33.5,17.5 parent: 2173 - uid: 2507 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 52.5,6.5 parent: 2173 - uid: 2508 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 52.5,7.5 parent: 2173 - uid: 2509 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 52.5,8.5 parent: 2173 - uid: 2510 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 52.5,9.5 parent: 2173 - uid: 2511 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 52.5,10.5 parent: 2173 - uid: 2512 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 50.5,8.5 parent: 2173 - uid: 2513 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 51.5,8.5 parent: 2173 + - uid: 2523 + components: + - type: Transform + pos: -4.5,25.5 + parent: 2173 - uid: 2568 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 38.5,16.5 parent: 2173 - uid: 2758 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 23.5,12.5 parent: 2173 - uid: 2793 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: 51.5,12.5 parent: 2173 - uid: 2794 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: 51.5,11.5 parent: 2173 - uid: 2795 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: 52.5,11.5 parent: 2173 - uid: 2796 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: 50.5,14.5 parent: 2173 - uid: 2797 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: 51.5,14.5 parent: 2173 - uid: 2979 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 38.5,14.5 parent: 2173 - uid: 2980 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 38.5,15.5 parent: 2173 - uid: 2982 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 35.5,14.5 parent: 2173 - uid: 3050 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 44.5,14.5 parent: 2173 - uid: 3104 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 32.5,7.5 parent: 2173 - uid: 3107 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 31.5,6.5 parent: 2173 - uid: 3109 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 28.5,6.5 parent: 2173 - uid: 3119 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 32.5,19.5 parent: 2173 - uid: 3122 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 31.5,19.5 parent: 2173 - uid: 3690 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 33.5,20.5 parent: 2173 - uid: 3734 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 45.5,14.5 parent: 2173 - uid: 3735 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 33.5,15.5 parent: 2173 - uid: 3738 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 32.5,6.5 parent: 2173 - uid: 3740 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 30.5,6.5 parent: 2173 - uid: 3751 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 28.5,15.5 parent: 2173 - uid: 3765 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 35.5,17.5 parent: 2173 - uid: 3806 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 32.5,8.5 parent: 2173 - uid: 3809 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 32.5,9.5 parent: 2173 - uid: 3907 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: 28.5,19.5 parent: 2173 - uid: 3910 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 38.5,22.5 parent: 2173 - uid: 3913 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: 30.5,19.5 parent: 2173 - uid: 3988 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 29.5,6.5 parent: 2173 - uid: 4118 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 47.5,17.5 parent: 2173 - uid: 4120 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 47.5,18.5 parent: 2173 - uid: 4195 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 49.5,14.5 parent: 2173 - uid: 4238 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 35.5,16.5 parent: 2173 - uid: 4239 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 35.5,19.5 parent: 2173 - uid: 4240 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 35.5,18.5 parent: 2173 - uid: 4241 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 35.5,20.5 parent: 2173 - uid: 4242 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 48.5,14.5 parent: 2173 - uid: 4243 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 49.5,13.5 parent: 2173 - uid: 4252 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 37.5,16.5 parent: 2173 - uid: 4263 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 36.5,16.5 parent: 2173 - uid: 4281 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: 27.5,19.5 parent: 2173 - uid: 4301 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 47.5,14.5 parent: 2173 - uid: 4302 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 47.5,16.5 parent: 2173 - uid: 4303 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 47.5,15.5 parent: 2173 - uid: 4402 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 25.5,10.5 parent: 2173 - uid: 4403 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 26.5,10.5 parent: 2173 - uid: 4427 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: -46.5,15.5 parent: 2173 - uid: 4927 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 33.5,16.5 parent: 2173 @@ -41894,19 +40367,10 @@ entities: - type: Transform pos: 35.5,9.5 parent: 2173 -- proto: WeaponMailLake - entities: - - uid: 4935 - components: - - type: Transform - pos: 29.456926,16.560009 - parent: 2173 - proto: WeaponPistolMk58 entities: - uid: 4380 components: - - type: MetaData - flags: InContainer - type: Transform parent: 4274 - type: Physics @@ -42009,6 +40473,14 @@ entities: rot: -1.5707963267948966 rad pos: 12.5,21.5 parent: 2173 +- proto: WindoorSecureMailLocked + entities: + - uid: 4941 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,21.5 + parent: 2173 - proto: WindoorSecureSecurityLocked entities: - uid: 3123 @@ -42019,12 +40491,6 @@ entities: parent: 2173 - proto: WindoorServiceLocked entities: - - uid: 4050 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,21.5 - parent: 2173 - uid: 5739 components: - type: Transform diff --git a/Resources/Maps/_NF/POI/grifty.yml b/Resources/Maps/_NF/POI/grifty.yml index f4837c63c88..9061254a08d 100644 --- a/Resources/Maps/_NF/POI/grifty.yml +++ b/Resources/Maps/_NF/POI/grifty.yml @@ -6,10 +6,10 @@ tilemap: 30: FloorDark 62: FloorLaundry 71: FloorOldConcrete - 106: FloorTechMaint2 - 107: FloorTechMaint3 - 121: Lattice - 122: Plating + 109: FloorTechMaint3 + 115: FloorWhiteMini + 124: Lattice + 125: Plating entities: - proto: "" entities: @@ -24,19 +24,19 @@ entities: chunks: 0,0: ind: 0,0 - tiles: PgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAACHgAAAAAAHgAAAAADHgAAAAAAegAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAADHgAAAAAAHgAAAAADHgAAAAADawAAAAABPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAARwAAAAABRwAAAAABRwAAAAADRwAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAARwAAAAACRwAAAAACRwAAAAABRwAAAAACegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAARwAAAAAARwAAAAACRwAAAAAARwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAARwAAAAAARwAAAAABRwAAAAACRwAAAAAA + tiles: PgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAfQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAACHgAAAAAAHgAAAAADHgAAAAAAfQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAADHgAAAAAAHgAAAAADHgAAAAADbQAAAAABPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAfQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfQAAAAAAfQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAARwAAAAABRwAAAAABRwAAAAADRwAAAAABfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfQAAAAAAfQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAARwAAAAACRwAAAAACRwAAAAABRwAAAAACfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAARwAAAAAARwAAAAACRwAAAAAARwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAARwAAAAAARwAAAAABRwAAAAACRwAAAAAA version: 6 -1,0: ind: -1,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAegAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAawAAAAADegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAHgAAAAACHgAAAAADHgAAAAABHgAAAAACHgAAAAACHgAAAAABHgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAHgAAAAACHgAAAAADHgAAAAABHgAAAAADHgAAAAABHgAAAAACHgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAegAAAAAAawAAAAADawAAAAABegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAHgAAAAABHgAAAAACegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAawAAAAAAawAAAAABegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfQAAAAAAcwAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAbQAAAAADfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAcwAAAAAAcwAAAAAAfQAAAAAAHgAAAAACHgAAAAADHgAAAAABHgAAAAACHgAAAAACHgAAAAABHgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAcwAAAAAAcwAAAAAAfQAAAAAAHgAAAAACHgAAAAADHgAAAAABHgAAAAADHgAAAAABHgAAAAACHgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfQAAAAAAcwAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAbQAAAAADbQAAAAABfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAcwAAAAAAfQAAAAAAHgAAAAAAHgAAAAAAHgAAAAABHgAAAAACfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfQAAAAAAfQAAAAAAbQAAAAAAbQAAAAABfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfQAAAAAAfQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAA version: 6 0,-1: ind: 0,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAawAAAAACawAAAAACawAAAAABegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAARwAAAAABRwAAAAAARwAAAAABawAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAARwAAAAABRwAAAAAARwAAAAACawAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAARwAAAAACRwAAAAABRwAAAAACawAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAARwAAAAAARwAAAAACRwAAAAADegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAARwAAAAABRwAAAAACRwAAAAABegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAawAAAAACawAAAAABawAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAbQAAAAACbQAAAAACbQAAAAABfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAARwAAAAABRwAAAAAARwAAAAABbQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAARwAAAAABRwAAAAAARwAAAAACbQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAARwAAAAACRwAAAAABRwAAAAACbQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAARwAAAAAARwAAAAACRwAAAAADfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAARwAAAAABRwAAAAACRwAAAAABfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAbQAAAAACbQAAAAABbQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -1,-1: ind: -1,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAawAAAAADawAAAAABawAAAAABegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAawAAAAAARwAAAAACRwAAAAACRwAAAAACegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAawAAAAABRwAAAAABRwAAAAABRwAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAagAAAAAARwAAAAADRwAAAAADRwAAAAADegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAARwAAAAACRwAAAAABRwAAAAACegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAARwAAAAACRwAAAAACRwAAAAACegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAawAAAAACawAAAAADawAAAAABegAAAAAAegAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbQAAAAAARwAAAAAARwAAAAAARwAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbQAAAAAARwAAAAAARwAAAAAARwAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbQAAAAAARwAAAAAARwAAAAAARwAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAARwAAAAAARwAAAAAARwAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAARwAAAAAARwAAAAAARwAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAARwAAAAAARwAAAAAARwAAAAAAfQAAAAAAbQAAAAADbQAAAAABfQAAAAAAfQAAAAAA version: 6 - type: Broadphase - type: Physics @@ -81,165 +81,213 @@ entities: id: DirtHeavy decals: 4: -5,-6 - 5: -3,-5 - 6: -3,-4 - 7: -4,-3 - 8: -5,-2 - 9: -3,-2 - 10: -5,-4 - 11: 5,-2 - 12: 6,-3 - 13: 5,-5 - 14: 6,-5 - 15: 7,-6 - 16: 7,-4 - 17: 7,-2 - 18: 5,-6 - 19: 7,0 - 20: 4,0 - 21: 3,1 - 22: 4,2 - 23: -1,2 - 24: 0,2 - 25: 0,1 - 26: -3,1 - 27: -3,0 - 28: 0,0 - 29: -6,2 - 30: -7,1 - 31: -5,1 - 32: -4,3 - 33: -2,5 - 34: -2,6 - 35: 0,6 - 36: 1,5 - 37: 2,6 - 38: 6,6 - 39: 5,6 - 40: 7,6 - 41: 7,7 - 42: 9,4 - 43: 8,2 - 44: 7,3 - 45: 5,1 - 46: 8,1 - 47: 6,2 - 48: 6,4 - 49: 8,4 - 50: 2,2 - 51: -7,3 - 52: -6,5 - 53: -4,8 - 54: 4,1 + 5: -5,-2 + 6: -5,-4 + 7: 5,-2 + 8: 6,-3 + 9: 5,-5 + 10: 6,-5 + 11: 7,-6 + 12: 7,-4 + 13: 7,-2 + 14: 5,-6 + 15: 7,0 + 16: 4,0 + 17: 3,1 + 18: 4,2 + 19: -1,2 + 20: 0,2 + 21: 0,1 + 22: -3,1 + 23: -3,0 + 24: 0,0 + 25: -6,2 + 26: -7,1 + 27: -5,1 + 28: -4,3 + 29: -2,5 + 30: -2,6 + 31: 0,6 + 32: 1,5 + 33: 2,6 + 34: 6,6 + 35: 5,6 + 36: 7,6 + 37: 7,7 + 38: 9,4 + 39: 8,2 + 40: 7,3 + 41: 5,1 + 42: 8,1 + 43: 6,2 + 44: 6,4 + 45: 8,4 + 46: 2,2 + 47: -6,5 + 48: -4,8 + 49: 4,1 - node: + cleanable: True + color: '#FFFFFFFF' + id: DirtHeavy + decals: + 138: -8,2 + 139: -9,1 + 140: -8,3 + 141: -9,2 + 145: -9,5 + 146: -8,8 + 147: -9,8 + 148: -10,6 + 150: -7,8 + 151: -8,-2 + 152: -7,-1 + 153: -6,-2 + 154: -6,-1 + 159: -7,-2 + 160: -8,-4 + 161: -8,-6 + 162: -6,-6 + 163: -6,-5 + 169: -7,0 + - node: + color: '#FFFFFFFF' + id: DirtHeavyMonotile + decals: + 50: -3,0 + 51: -4,1 + 52: 0,2 + 53: 0,1 + 54: 1,1 + 55: 3,2 + 56: 7,1 + 57: 6,5 + 58: 8,7 + 59: 8,6 + 60: 6,8 + 61: 3,5 + 62: 2,6 + 63: -3,5 + 64: -3,5 + 65: -5,5 + 66: -6,5 + 67: -7,1 + 68: -6,1 + - node: + cleanable: True color: '#FFFFFFFF' id: DirtHeavyMonotile decals: - 55: -3,-2 - 56: -4,-4 - 57: -3,-5 - 58: -3,0 - 59: -4,1 - 60: 0,2 - 61: 0,1 - 62: 1,1 - 63: 3,2 - 64: 7,1 - 65: 6,5 - 66: 8,7 - 67: 8,6 - 68: 6,8 - 69: 3,5 - 70: 2,6 - 71: -3,5 - 72: -3,5 - 73: -5,5 - 74: -6,5 - 75: -7,1 - 76: -6,1 + 132: -10,3 + 133: -8,1 + 134: -7,3 + 143: -9,6 + 144: -9,7 + 149: -6,8 + 155: -8,-1 + 156: -8,-3 + 157: -7,-4 + 158: -7,-3 + 164: -8,-5 + 165: -7,-5 + 166: -6,-4 + 167: -7,-6 + 168: -8,0 + 170: -6,0 + 171: -8,-1 + 172: -7,-1 + 173: -6,-1 - node: color: '#FFFFFFFF' id: DirtLight decals: - 77: -4,-5 - 78: -3,-6 - 79: -4,-5 - 80: -5,-1 - 81: -4,-2 - 82: -4,1 - 83: -2,2 - 84: -1,1 - 85: -2,1 - 86: 1,2 - 87: 2,0 - 88: 3,1 - 89: 4,1 - 90: 6,-1 - 91: 6,0 - 92: 7,2 - 93: 7,2 - 94: 5,2 - 95: 7,2 - 96: 8,2 - 97: 8,4 - 98: 7,5 - 99: 8,6 - 100: 8,7 - 101: 7,8 - 102: 7,8 - 103: 6,8 - 104: 5,7 - 105: 5,6 - 106: 6,-3 - 107: 7,-5 - 108: 7,-6 - 109: 7,-6 - 110: 6,-5 - 111: 5,-6 - 112: -2,1 + 69: -5,-1 + 70: -4,1 + 71: -2,2 + 72: -1,1 + 73: -2,1 + 74: 1,2 + 75: 2,0 + 76: 3,1 + 77: 4,1 + 78: 6,-1 + 79: 6,0 + 80: 7,2 + 81: 7,2 + 82: 5,2 + 83: 7,2 + 84: 8,2 + 85: 8,4 + 86: 7,5 + 87: 8,6 + 88: 8,7 + 89: 7,8 + 90: 7,8 + 91: 6,8 + 92: 5,7 + 93: 5,6 + 94: 6,-3 + 95: 7,-5 + 96: 7,-6 + 97: 7,-6 + 98: 6,-5 + 99: 5,-6 + 100: -2,1 + - node: + cleanable: True + color: '#FFFFFFFF' + id: DirtLight + decals: + 142: -10,5 + - node: + color: '#FFFFFFFF' + id: DirtMedium + decals: + 101: -7,4 + 102: -6,3 + 103: -4,5 + 104: -4,5 + 105: -2,5 + 106: -2,6 + 107: 0,6 + 108: 0,5 + 109: -4,8 + 110: -5,8 + 111: 6,2 + 112: 9,1 + 113: 9,3 + 114: 8,4 + 115: 8,6 + 116: 8,7 + 117: 5,6 + 118: 7,2 + 119: 8,3 + 120: 5,4 + 121: 6,3 + 122: 7,-5 + 123: 7,-5 + 124: 6,-5 + 125: 6,-4 + 126: 6,-4 + 127: -3,3 + 128: 1,1 + 129: -1,0 + 130: -1,1 + 131: 6,7 - node: + cleanable: True color: '#FFFFFFFF' id: DirtMedium decals: - 113: -7,2 - 114: -7,4 - 115: -6,3 - 116: -4,5 - 117: -4,5 - 118: -2,5 - 119: -2,6 - 120: 0,6 - 121: 0,5 - 122: -4,8 - 123: -5,8 - 124: 6,2 - 125: 9,1 - 126: 9,3 - 127: 8,4 - 128: 8,6 - 129: 8,7 - 130: 5,6 - 131: 7,2 - 132: 8,3 - 133: 5,4 - 134: 6,3 - 135: 7,-5 - 136: 7,-5 - 137: 6,-5 - 138: 6,-4 - 139: 6,-4 - 140: -3,3 - 141: 1,1 - 142: -1,0 - 143: -1,1 - 144: 6,7 + 135: -10,2 + 136: -7,2 + 137: -9,3 - type: GridAtmosphere version: 2 data: tiles: 0,0: - 0: 49151 - 1: 16384 + 0: 65535 0,1: 0: 65535 1,0: @@ -247,27 +295,25 @@ entities: 1,1: 0: 65535 1,2: - 0: 64755 - 1: 12 + 0: 65535 2,0: 0: 30583 2,1: 0: 30583 2,2: - 0: 61491 + 0: 62259 -2,0: 0: 65535 -2,1: - 0: 64511 - 2: 1024 + 0: 65535 -2,2: - 0: 35054 + 0: 36607 -1,0: 0: 65535 -1,1: 0: 65535 -1,2: - 0: 39423 + 0: 40959 0,-1: 0: 61440 1,-2: @@ -279,15 +325,15 @@ entities: 2,-1: 0: 12561 -2,-1: - 0: 60620 + 0: 65535 -2,-2: - 0: 52416 + 0: 65520 -1,-2: 0: 30576 -1,-1: 0: 63351 0,2: - 0: 50431 + 0: 53247 0,3: 0: 65535 1,3: @@ -299,13 +345,21 @@ entities: 3,3: 0: 65535 -3,1: - 0: 2048 + 0: 61166 -3,3: 0: 128 -2,3: 0: 36863 -1,3: 0: 36863 + -3,0: + 0: 61166 + -3,2: + 0: 204 + -3,-2: + 0: 34944 + -3,-1: + 0: 34952 uniqueMixes: - volume: 2500 temperature: 293.15 @@ -322,41 +376,26 @@ entities: - 0 - 0 - 0 - - volume: 2500 - temperature: 293.14996 - moles: - - 20.078888 - - 75.53487 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - volume: 2500 - temperature: 293.15 - moles: - - 21.6852 - - 81.57766 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 chunkSize: 4 - type: GasTileOverlay - type: RadiationGridResistance - type: BecomesStation id: Grifty +- proto: AirAlarm + entities: + - uid: 704 + components: + - type: Transform + pos: 1.5,7.5 + parent: 1 + - type: DeviceList + devices: + - 17 + - 342 + - 771 + - 396 + - type: AtmosDevice + joinedGrid: 1 - proto: AirCanister entities: - uid: 233 @@ -377,24 +416,23 @@ entities: entities: - uid: 200 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -3.5,4.5 parent: 1 - uid: 297 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 4.5,6.5 parent: 1 + - uid: 578 + components: + - type: Transform + pos: -8.5,4.5 + parent: 1 - proto: AirlockExternal entities: - uid: 403 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: -4.5,9.5 @@ -408,8 +446,6 @@ entities: - DoorStatus: InputA - uid: 404 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: -3.5,9.5 @@ -423,8 +459,6 @@ entities: - DoorStatus: InputB - uid: 405 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: -4.5,7.5 @@ -438,8 +472,6 @@ entities: - DoorStatus: InputB - uid: 406 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: -3.5,7.5 @@ -453,20 +485,20 @@ entities: - DoorStatus: InputA - proto: AirlockGlass entities: - - uid: 375 + - uid: 7 components: - type: Transform - pos: -4.5,-0.5 + pos: -5.5,-0.5 parent: 1 - - uid: 376 + - uid: 18 components: - type: Transform - pos: -3.5,-0.5 + pos: -7.5,-0.5 parent: 1 - - uid: 377 + - uid: 34 components: - type: Transform - pos: -2.5,-0.5 + pos: -6.5,-0.5 parent: 1 - uid: 378 components: @@ -485,27 +517,10 @@ entities: parent: 1 - proto: AirlockGlassShuttle entities: - - uid: 605 - components: - - type: Transform - pos: -2.5,-6.5 - parent: 1 - uid: 606 components: - type: Transform - pos: -4.5,-6.5 - parent: 1 - - uid: 607 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,-4.5 - parent: 1 - - uid: 608 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,-3.5 + pos: -5.5,-6.5 parent: 1 - uid: 610 components: @@ -517,17 +532,6 @@ entities: - type: Transform pos: 5.5,-6.5 parent: 1 - - uid: 613 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,-5.5 - parent: 1 - - uid: 614 - components: - - type: Transform - pos: -3.5,-6.5 - parent: 1 - uid: 620 components: - type: Transform @@ -551,6 +555,34 @@ entities: rot: 1.5707963267948966 rad pos: 8.5,-3.5 parent: 1 + - uid: 794 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,-3.5 + parent: 1 + - uid: 795 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,-4.5 + parent: 1 + - uid: 796 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,-5.5 + parent: 1 + - uid: 797 + components: + - type: Transform + pos: -7.5,-6.5 + parent: 1 + - uid: 798 + components: + - type: Transform + pos: -6.5,-6.5 + parent: 1 - proto: APCBasic entities: - uid: 414 @@ -565,6 +597,11 @@ entities: parent: 1 - proto: AtmosDeviceFanTiny entities: + - uid: 8 + components: + - type: Transform + pos: -5.5,-6.5 + parent: 1 - uid: 734 components: - type: Transform @@ -595,35 +632,30 @@ entities: - type: Transform pos: 5.5,-6.5 parent: 1 - - uid: 747 - components: - - type: Transform - pos: -2.5,-6.5 - parent: 1 - - uid: 748 + - uid: 803 components: - type: Transform - pos: -3.5,-6.5 + pos: -6.5,-6.5 parent: 1 - - uid: 749 + - uid: 804 components: - type: Transform - pos: -4.5,-6.5 + pos: -7.5,-6.5 parent: 1 - - uid: 750 + - uid: 805 components: - type: Transform - pos: -5.5,-5.5 + pos: -8.5,-5.5 parent: 1 - - uid: 751 + - uid: 806 components: - type: Transform - pos: -5.5,-4.5 + pos: -8.5,-4.5 parent: 1 - - uid: 752 + - uid: 807 components: - type: Transform - pos: -5.5,-3.5 + pos: -8.5,-3.5 parent: 1 - proto: BarSignEngineChange entities: @@ -634,12 +666,25 @@ entities: parent: 1 - type: ApcPowerReceiver needsPower: False +- proto: BarSignSpacebucks + entities: + - uid: 608 + components: + - type: Transform + pos: -2.5,-0.5 + parent: 1 +- proto: BlockGameArcade + entities: + - uid: 497 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,1.5 + parent: 1 - proto: BookAurora entities: - uid: 680 components: - - type: MetaData - flags: InContainer - type: Transform parent: 530 - type: Physics @@ -648,40 +693,30 @@ entities: entities: - uid: 674 components: - - type: MetaData - flags: InContainer - type: Transform parent: 530 - type: Physics canCollide: False - uid: 675 components: - - type: MetaData - flags: InContainer - type: Transform parent: 530 - type: Physics canCollide: False - uid: 676 components: - - type: MetaData - flags: InContainer - type: Transform parent: 530 - type: Physics canCollide: False - uid: 677 components: - - type: MetaData - flags: InContainer - type: Transform parent: 530 - type: Physics canCollide: False - uid: 678 components: - - type: MetaData - flags: InContainer - type: Transform parent: 530 - type: Physics @@ -690,8 +725,6 @@ entities: entities: - uid: 694 components: - - type: MetaData - flags: InContainer - type: Transform parent: 530 - type: Physics @@ -700,8 +733,6 @@ entities: entities: - uid: 682 components: - - type: MetaData - flags: InContainer - type: Transform parent: 530 - type: Physics @@ -710,8 +741,6 @@ entities: entities: - uid: 673 components: - - type: MetaData - flags: InContainer - type: Transform parent: 530 - type: Physics @@ -720,8 +749,6 @@ entities: entities: - uid: 671 components: - - type: MetaData - flags: InContainer - type: Transform parent: 530 - type: Physics @@ -730,8 +757,6 @@ entities: entities: - uid: 226 components: - - type: MetaData - flags: InContainer - type: Transform parent: 530 - type: Physics @@ -740,8 +765,6 @@ entities: entities: - uid: 683 components: - - type: MetaData - flags: InContainer - type: Transform parent: 530 - type: Physics @@ -750,8 +773,6 @@ entities: entities: - uid: 681 components: - - type: MetaData - flags: InContainer - type: Transform parent: 530 - type: Physics @@ -760,8 +781,6 @@ entities: entities: - uid: 571 components: - - type: MetaData - flags: InContainer - type: Transform parent: 530 - type: Physics @@ -770,8 +789,6 @@ entities: entities: - uid: 686 components: - - type: MetaData - flags: InContainer - type: Transform parent: 530 - type: Physics @@ -780,8 +797,6 @@ entities: entities: - uid: 693 components: - - type: MetaData - flags: InContainer - type: Transform parent: 530 - type: Physics @@ -790,8 +805,6 @@ entities: entities: - uid: 688 components: - - type: MetaData - flags: InContainer - type: Transform parent: 530 - type: Physics @@ -800,8 +813,6 @@ entities: entities: - uid: 690 components: - - type: MetaData - flags: InContainer - type: Transform parent: 530 - type: Physics @@ -810,8 +821,6 @@ entities: entities: - uid: 689 components: - - type: MetaData - flags: InContainer - type: Transform parent: 530 - type: Physics @@ -820,8 +829,6 @@ entities: entities: - uid: 687 components: - - type: MetaData - flags: InContainer - type: Transform parent: 530 - type: Physics @@ -830,8 +837,6 @@ entities: entities: - uid: 685 components: - - type: MetaData - flags: InContainer - type: Transform parent: 530 - type: Physics @@ -840,8 +845,6 @@ entities: entities: - uid: 679 components: - - type: MetaData - flags: InContainer - type: Transform parent: 530 - type: Physics @@ -850,8 +853,6 @@ entities: entities: - uid: 684 components: - - type: MetaData - flags: InContainer - type: Transform parent: 530 - type: Physics @@ -860,8 +861,6 @@ entities: entities: - uid: 530 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 8.5,8.5 parent: 1 @@ -904,8 +903,6 @@ entities: entities: - uid: 697 components: - - type: MetaData - flags: InContainer - type: Transform parent: 530 - type: Physics @@ -914,8 +911,6 @@ entities: entities: - uid: 695 components: - - type: MetaData - flags: InContainer - type: Transform parent: 530 - type: Physics @@ -924,8 +919,6 @@ entities: entities: - uid: 696 components: - - type: MetaData - flags: InContainer - type: Transform parent: 530 - type: Physics @@ -934,8 +927,6 @@ entities: entities: - uid: 692 components: - - type: MetaData - flags: InContainer - type: Transform parent: 530 - type: Physics @@ -944,8 +935,6 @@ entities: entities: - uid: 691 components: - - type: MetaData - flags: InContainer - type: Transform parent: 530 - type: Physics @@ -959,10 +948,35 @@ entities: parent: 1 - proto: CableApcExtension entities: - - uid: 2 + - uid: 43 + components: + - type: Transform + pos: -6.5,-1.5 + parent: 1 + - uid: 45 + components: + - type: Transform + pos: -8.5,5.5 + parent: 1 + - uid: 105 + components: + - type: Transform + pos: -8.5,3.5 + parent: 1 + - uid: 106 + components: + - type: Transform + pos: -8.5,4.5 + parent: 1 + - uid: 134 + components: + - type: Transform + pos: -6.5,-0.5 + parent: 1 + - uid: 185 components: - type: Transform - pos: -3.5,-1.5 + pos: -3.5,0.5 parent: 1 - uid: 424 components: @@ -1152,7 +1166,7 @@ entities: - uid: 461 components: - type: Transform - pos: -7.5,2.5 + pos: -6.5,-4.5 parent: 1 - uid: 462 components: @@ -1232,7 +1246,7 @@ entities: - uid: 477 components: - type: Transform - pos: -2.5,-0.5 + pos: -6.5,-3.5 parent: 1 - uid: 478 components: @@ -1302,17 +1316,7 @@ entities: - uid: 491 components: - type: Transform - pos: -3.5,-0.5 - parent: 1 - - uid: 492 - components: - - type: Transform - pos: -4.5,-0.5 - parent: 1 - - uid: 493 - components: - - type: Transform - pos: -5.5,-0.5 + pos: -6.5,-2.5 parent: 1 - uid: 494 components: @@ -1324,25 +1328,10 @@ entities: - type: Transform pos: -6.5,0.5 parent: 1 - - uid: 496 - components: - - type: Transform - pos: -3.5,-2.5 - parent: 1 - - uid: 497 - components: - - type: Transform - pos: -3.5,-4.5 - parent: 1 - uid: 498 components: - type: Transform - pos: -3.5,-3.5 - parent: 1 - - uid: 499 - components: - - type: Transform - pos: -3.5,-5.5 + pos: -4.5,0.5 parent: 1 - uid: 500 components: @@ -1389,6 +1378,11 @@ entities: - type: Transform pos: 6.5,-5.5 parent: 1 + - uid: 605 + components: + - type: Transform + pos: -6.5,-5.5 + parent: 1 - uid: 634 components: - type: Transform @@ -1789,7 +1783,7 @@ entities: - uid: 409 components: - type: Transform - pos: -3.5,7.5 + pos: -2.5,6.5 parent: 1 - uid: 410 components: @@ -1811,6 +1805,16 @@ entities: - type: Transform pos: -6.5,6.5 parent: 1 + - uid: 702 + components: + - type: Transform + pos: -2.5,7.5 + parent: 1 + - uid: 703 + components: + - type: Transform + pos: -2.5,8.5 + parent: 1 - proto: CableMV entities: - uid: 416 @@ -1863,18 +1867,6 @@ entities: parent: 1 - proto: Catwalk entities: - - uid: 105 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,10.5 - parent: 1 - - uid: 106 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,10.5 - parent: 1 - uid: 108 components: - type: Transform @@ -2031,27 +2023,15 @@ entities: rot: 1.5707963267948966 rad pos: 6.5,11.5 parent: 1 - - uid: 134 + - uid: 199 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,10.5 + pos: -3.5,11.5 parent: 1 - - uid: 135 + - uid: 281 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,10.5 - parent: 1 - - uid: 199 - components: - - type: Transform - pos: -3.5,11.5 - parent: 1 - - uid: 281 - components: - - type: Transform - pos: 11.5,13.5 + pos: 11.5,13.5 parent: 1 - uid: 282 components: @@ -2123,6 +2103,14 @@ entities: - type: Transform pos: -1.624001,3.1678529 parent: 1 +- proto: ClosetWallWhite + entities: + - uid: 788 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,5.5 + parent: 1 - proto: ComputerBroken entities: - uid: 631 @@ -2137,7 +2125,7 @@ entities: components: - type: Transform rot: 1.5707963267948966 rad - pos: -5.5,8.5 + pos: -6.5,8.5 parent: 1 - proto: ComputerWithdrawBankATM entities: @@ -2170,6 +2158,18 @@ entities: parent: 1 - proto: DisposalPipe entities: + - uid: 135 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,1.5 + parent: 1 + - uid: 201 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,2.5 + parent: 1 - uid: 287 components: - type: Transform @@ -2236,18 +2236,6 @@ entities: rot: 3.141592653589793 rad pos: -4.5,3.5 parent: 1 - - uid: 396 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,2.5 - parent: 1 - - uid: 398 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,1.5 - parent: 1 - uid: 399 components: - type: Transform @@ -2260,6 +2248,11 @@ entities: rot: 1.5707963267948966 rad pos: -2.5,0.5 parent: 1 + - uid: 701 + components: + - type: Transform + pos: -4.5,4.5 + parent: 1 - proto: DisposalTrunk entities: - uid: 401 @@ -2279,8 +2272,6 @@ entities: entities: - uid: 590 components: - - type: MetaData - flags: InContainer - type: Transform parent: 586 - type: Physics @@ -2288,8 +2279,6 @@ entities: - type: InsideEntityStorage - uid: 591 components: - - type: MetaData - flags: InContainer - type: Transform parent: 586 - type: Physics @@ -2297,8 +2286,6 @@ entities: - type: InsideEntityStorage - uid: 592 components: - - type: MetaData - flags: InContainer - type: Transform parent: 586 - type: Physics @@ -2308,8 +2295,6 @@ entities: entities: - uid: 587 components: - - type: MetaData - flags: InContainer - type: Transform parent: 586 - type: Physics @@ -2317,8 +2302,6 @@ entities: - type: InsideEntityStorage - uid: 589 components: - - type: MetaData - flags: InContainer - type: Transform parent: 586 - type: Physics @@ -2326,8 +2309,6 @@ entities: - type: InsideEntityStorage - uid: 593 components: - - type: MetaData - flags: InContainer - type: Transform parent: 586 - type: Physics @@ -2337,8 +2318,6 @@ entities: entities: - uid: 602 components: - - type: MetaData - flags: InContainer - type: Transform parent: 595 - type: Physics @@ -2355,8 +2334,6 @@ entities: entities: - uid: 515 components: - - type: MetaData - flags: InContainer - type: Transform parent: 512 - type: Physics @@ -2394,8 +2371,6 @@ entities: entities: - uid: 594 components: - - type: MetaData - flags: InContainer - type: Transform parent: 586 - type: Physics @@ -2405,8 +2380,6 @@ entities: entities: - uid: 596 components: - - type: MetaData - flags: InContainer - type: Transform parent: 595 - type: Physics @@ -2414,8 +2387,6 @@ entities: - type: InsideEntityStorage - uid: 598 components: - - type: MetaData - flags: InContainer - type: Transform parent: 595 - type: Physics @@ -2423,8 +2394,6 @@ entities: - type: InsideEntityStorage - uid: 600 components: - - type: MetaData - flags: InContainer - type: Transform parent: 595 - type: Physics @@ -2441,8 +2410,6 @@ entities: entities: - uid: 516 components: - - type: MetaData - flags: InContainer - type: Transform parent: 512 - type: Physics @@ -2469,8 +2436,6 @@ entities: entities: - uid: 517 components: - - type: MetaData - flags: InContainer - type: Transform parent: 512 - type: Physics @@ -2487,8 +2452,6 @@ entities: entities: - uid: 597 components: - - type: MetaData - flags: InContainer - type: Transform parent: 595 - type: Physics @@ -2496,8 +2459,6 @@ entities: - type: InsideEntityStorage - uid: 599 components: - - type: MetaData - flags: InContainer - type: Transform parent: 595 - type: Physics @@ -2505,8 +2466,6 @@ entities: - type: InsideEntityStorage - uid: 601 components: - - type: MetaData - flags: InContainer - type: Transform parent: 595 - type: Physics @@ -2523,8 +2482,6 @@ entities: entities: - uid: 514 components: - - type: MetaData - flags: InContainer - type: Transform parent: 512 - type: Physics @@ -2534,8 +2491,6 @@ entities: entities: - uid: 588 components: - - type: MetaData - flags: InContainer - type: Transform parent: 586 - type: Physics @@ -2545,8 +2500,6 @@ entities: entities: - uid: 519 components: - - type: MetaData - flags: InContainer - type: Transform parent: 512 - type: Physics @@ -2560,16 +2513,16 @@ entities: rot: -1.5707963267948966 rad pos: 7.5,0.5 parent: 1 - - uid: 769 + - uid: 770 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,0.5 + pos: -1.5,6.5 parent: 1 - - uid: 770 + - uid: 814 components: - type: Transform - pos: -1.5,6.5 + rot: 1.5707963267948966 rad + pos: -7.5,0.5 parent: 1 - proto: ExtinguisherCabinetOpen entities: @@ -2701,15 +2654,23 @@ entities: parent: 1 - proto: FirelockGlass entities: - - uid: 757 + - uid: 37 components: - type: Transform - pos: -3.5,-0.5 + rot: -1.5707963267948966 rad + pos: -6.5,-0.5 parent: 1 - - uid: 758 + - uid: 355 components: - type: Transform - pos: -2.5,-0.5 + rot: -1.5707963267948966 rad + pos: -5.5,-0.5 + parent: 1 + - uid: 496 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-0.5 parent: 1 - uid: 759 components: @@ -2726,11 +2687,6 @@ entities: - type: Transform pos: 7.5,-0.5 parent: 1 - - uid: 765 - components: - - type: Transform - pos: -4.5,-0.5 - parent: 1 - proto: FoodBoxDonkpocket entities: - uid: 556 @@ -2752,13 +2708,6 @@ entities: - type: Transform pos: 5.264295,3.5900216 parent: 1 -- proto: FoodBoxDonkpocketGondola - entities: - - uid: 557 - components: - - type: Transform - pos: -5.766955,2.745686 - parent: 1 - proto: FoodBoxDonkpocketHonk entities: - uid: 553 @@ -2768,6 +2717,11 @@ entities: parent: 1 - proto: FoodBoxDonkpocketPizza entities: + - uid: 557 + components: + - type: Transform + pos: -5.766955,2.745686 + parent: 1 - uid: 558 components: - type: Transform @@ -2787,6 +2741,82 @@ entities: - type: Transform pos: -5.266955,2.4329686 parent: 1 +- proto: FoodBoxDonut + entities: + - uid: 812 + components: + - type: Transform + pos: -7.6037674,3.8322606 + parent: 1 + - type: Storage + storedItems: + 818: + position: 0,0 + _rotation: South + 819: + position: 1,0 + _rotation: South + 820: + position: 2,0 + _rotation: South + 821: + position: 3,0 + _rotation: South + 822: + position: 4,0 + _rotation: South + 823: + position: 5,0 + _rotation: South + - type: ContainerContainer + containers: + storagebase: !type:Container + showEnts: False + occludes: True + ents: + - 818 + - 819 + - 820 + - 821 + - 822 + - 823 + - uid: 824 + components: + - type: Transform + pos: -7.385018,3.4416356 + parent: 1 + - type: Storage + storedItems: + 825: + position: 0,0 + _rotation: South + 826: + position: 1,0 + _rotation: South + 827: + position: 2,0 + _rotation: South + 828: + position: 3,0 + _rotation: South + 829: + position: 4,0 + _rotation: South + 830: + position: 5,0 + _rotation: South + - type: ContainerContainer + containers: + storagebase: !type:Container + showEnts: False + occludes: True + ents: + - 825 + - 826 + - 827 + - 828 + - 829 + - 830 - proto: FoodBoxPizzaFilled entities: - uid: 550 @@ -2798,8 +2828,6 @@ entities: entities: - uid: 513 components: - - type: MetaData - flags: InContainer - type: Transform parent: 512 - type: Physics @@ -2812,12 +2840,84 @@ entities: - type: Transform pos: -0.22007972,5.7634063 parent: 1 +- proto: FoodDonutPink + entities: + - uid: 818 + components: + - type: Transform + parent: 812 + - type: Physics + canCollide: False + - uid: 819 + components: + - type: Transform + parent: 812 + - type: Physics + canCollide: False + - uid: 820 + components: + - type: Transform + parent: 812 + - type: Physics + canCollide: False + - uid: 821 + components: + - type: Transform + parent: 812 + - type: Physics + canCollide: False + - uid: 822 + components: + - type: Transform + parent: 812 + - type: Physics + canCollide: False + - uid: 823 + components: + - type: Transform + parent: 812 + - type: Physics + canCollide: False + - uid: 825 + components: + - type: Transform + parent: 824 + - type: Physics + canCollide: False + - uid: 826 + components: + - type: Transform + parent: 824 + - type: Physics + canCollide: False + - uid: 827 + components: + - type: Transform + parent: 824 + - type: Physics + canCollide: False + - uid: 828 + components: + - type: Transform + parent: 824 + - type: Physics + canCollide: False + - uid: 829 + components: + - type: Transform + parent: 824 + - type: Physics + canCollide: False + - uid: 830 + components: + - type: Transform + parent: 824 + - type: Physics + canCollide: False - proto: FoodMeatRotten entities: - uid: 518 components: - - type: MetaData - flags: InContainer - type: Transform parent: 512 - type: Physics @@ -2921,16 +3021,13 @@ entities: joinedGrid: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 311 + - uid: 730 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,6.5 + pos: -5.5,10.5 parent: 1 - type: AtmosDevice joinedGrid: 1 - - type: AtmosPipeColor - color: '#990000FF' - proto: GasPipeBend entities: - uid: 244 @@ -2964,21 +3061,29 @@ entities: parent: 1 - type: AtmosPipeColor color: '#03FCD3FF' - - uid: 333 + - uid: 334 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,1.5 + pos: 5.5,1.5 parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 334 + - uid: 335 components: - type: Transform - pos: 5.5,1.5 + rot: 1.5707963267948966 rad + pos: -5.5,1.5 parent: 1 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 346 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,3.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' - uid: 359 components: - type: Transform @@ -2986,6 +3091,22 @@ entities: parent: 1 - type: AtmosPipeColor color: '#990000FF' + - uid: 373 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,3.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 398 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,6.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' - proto: GasPipeFourway entities: - uid: 317 @@ -3004,6 +3125,51 @@ entities: color: '#0055CCFF' - proto: GasPipeStraight entities: + - uid: 9 + components: + - type: Transform + pos: -5.5,-1.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 13 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,3.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14 + components: + - type: Transform + pos: -7.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 36 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-0.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 42 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-1.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 202 + components: + - type: Transform + pos: -7.5,2.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' - uid: 236 components: - type: Transform @@ -3321,31 +3487,18 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 335 + - uid: 337 components: - type: Transform - pos: -2.5,0.5 + rot: 1.5707963267948966 rad + pos: -2.5,1.5 parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 336 + - uid: 338 components: - type: Transform - pos: -2.5,-0.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 337 - components: - - type: Transform - pos: -2.5,-1.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 338 - components: - - type: Transform - pos: 5.5,0.5 + pos: 5.5,0.5 parent: 1 - type: AtmosPipeColor color: '#0055CCFF' @@ -3363,35 +3516,25 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 343 + - uid: 341 components: - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,-1.5 + rot: 1.5707963267948966 rad + pos: -3.5,1.5 parent: 1 - type: AtmosPipeColor - color: '#990000FF' + color: '#0055CCFF' - uid: 344 components: - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,-0.5 + pos: -5.5,0.5 parent: 1 - type: AtmosPipeColor - color: '#990000FF' + color: '#0055CCFF' - uid: 345 components: - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,0.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 346 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,1.5 + pos: -8.5,4.5 parent: 1 - type: AtmosPipeColor color: '#990000FF' @@ -3459,22 +3602,13 @@ entities: parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 355 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,2.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - uid: 356 components: - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,3.5 + pos: -5.5,-0.5 parent: 1 - type: AtmosPipeColor - color: '#990000FF' + color: '#0055CCFF' - uid: 357 components: - type: Transform @@ -3531,6 +3665,13 @@ entities: parent: 1 - type: AtmosPipeColor color: '#990000FF' + - uid: 366 + components: + - type: Transform + pos: -7.5,1.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' - uid: 367 components: - type: Transform @@ -3563,14 +3704,28 @@ entities: parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 373 + - uid: 375 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,6.5 + rot: 3.141592653589793 rad + pos: -5.5,9.5 + parent: 1 + - uid: 376 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,7.5 parent: 1 - type: AtmosPipeColor color: '#990000FF' + - uid: 377 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,1.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 381 components: - type: Transform @@ -3600,14 +3755,6 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 533 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,6.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - uid: 617 components: - type: Transform @@ -3616,6 +3763,14 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 708 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,3.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' - uid: 767 components: - type: Transform @@ -3626,6 +3781,13 @@ entities: color: '#0055CCFF' - proto: GasPipeTJunction entities: + - uid: 35 + components: + - type: Transform + pos: -7.5,3.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' - uid: 318 components: - type: Transform @@ -3759,11 +3921,11 @@ entities: joinedGrid: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 326 + - uid: 343 components: - type: Transform rot: 3.141592653589793 rad - pos: -2.5,-2.5 + pos: -5.5,-2.5 parent: 1 - type: AtmosDevice joinedGrid: 1 @@ -3771,12 +3933,15 @@ entities: color: '#0055CCFF' - proto: GasVentScrubber entities: - - uid: 341 + - uid: 17 components: - type: Transform rot: 3.141592653589793 rad - pos: -4.5,-2.5 + pos: -7.5,-2.5 parent: 1 + - type: DeviceNetwork + deviceLists: + - 704 - type: AtmosDevice joinedGrid: 1 - type: AtmosPipeColor @@ -3787,6 +3952,11 @@ entities: rot: 3.141592653589793 rad pos: 7.5,-2.5 parent: 1 + - type: DeviceNetwork + configurators: + - invalid + deviceLists: + - 704 - type: AtmosDevice joinedGrid: 1 - type: AtmosPipeColor @@ -3801,22 +3971,37 @@ entities: joinedGrid: 1 - type: AtmosPipeColor color: '#990000FF' + - uid: 396 + components: + - type: Transform + pos: -8.5,5.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 704 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#990000FF' - uid: 771 components: - type: Transform pos: 6.5,7.5 parent: 1 + - type: DeviceNetwork + deviceLists: + - 704 - type: AtmosDevice joinedGrid: 1 - type: AtmosPipeColor color: '#990000FF' - proto: GasVolumePump entities: - - uid: 366 + - uid: 336 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,6.5 + rot: 3.141592653589793 rad + pos: -5.5,8.5 parent: 1 - type: AtmosDevice joinedGrid: 1 @@ -3831,24 +4016,6 @@ entities: parent: 1 - proto: Grille entities: - - uid: 7 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,-5.5 - parent: 1 - - uid: 8 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,-4.5 - parent: 1 - - uid: 9 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,-3.5 - parent: 1 - uid: 10 components: - type: Transform @@ -3903,18 +4070,6 @@ entities: rot: -1.5707963267948966 rad pos: 6.5,9.5 parent: 1 - - uid: 190 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,3.5 - parent: 1 - - uid: 191 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,2.5 - parent: 1 - uid: 192 components: - type: Transform @@ -3951,11 +4106,54 @@ entities: rot: 1.5707963267948966 rad pos: 3.5,7.5 parent: 1 + - uid: 333 + components: + - type: Transform + pos: -4.5,-4.5 + parent: 1 + - uid: 509 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-0.5 + parent: 1 + - uid: 533 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-0.5 + parent: 1 - uid: 565 components: - type: Transform pos: 3.5,9.5 parent: 1 + - uid: 607 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-0.5 + parent: 1 + - uid: 705 + components: + - type: Transform + pos: -4.5,-5.5 + parent: 1 + - uid: 775 + components: + - type: Transform + pos: -10.5,2.5 + parent: 1 + - uid: 776 + components: + - type: Transform + pos: -10.5,3.5 + parent: 1 + - uid: 787 + components: + - type: Transform + pos: -4.5,-3.5 + parent: 1 - proto: GrilleBroken entities: - uid: 55 @@ -4009,12 +4207,20 @@ entities: showEnts: False occludes: True ent: null +- proto: HospitalCurtains + entities: + - uid: 492 + components: + - type: Transform + pos: -8.5,7.5 + parent: 1 + - type: Door + secondsUntilStateChange: -643.5483 + state: Opening - proto: HyperlinkBookSupernanny entities: - uid: 672 components: - - type: MetaData - flags: InContainer - type: Transform parent: 530 - type: Physics @@ -4035,6 +4241,12 @@ entities: rot: -1.5707963267948966 rad pos: 1.89151,6.8016806 parent: 1 + - uid: 816 + components: + - type: Transform + parent: 815 + - type: Physics + canCollide: False - proto: LightTubeBroken entities: - uid: 632 @@ -4208,6 +4420,14 @@ entities: - type: Physics canCollide: False bodyType: Static +- proto: Mirror + entities: + - uid: 757 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,7.5 + parent: 1 - proto: PaintingSkeletonCigarette entities: - uid: 619 @@ -4264,12 +4484,13 @@ entities: The crack in the plasma chamber's gettin' bigger, and I'm worried about the containment unit. What happens if the glass breaks? -- proto: PosterBroken +- proto: PosterContrabandAmbrosiaVulgaris entities: - - uid: 509 + - uid: 44 components: - type: Transform - pos: -5.5,-2.5 + rot: -1.5707963267948966 rad + pos: -8.5,-1.5 parent: 1 - proto: PosterContrabandBorgFancy entities: @@ -4280,10 +4501,18 @@ entities: parent: 1 - proto: PosterContrabandBreadLies entities: - - uid: 568 + - uid: 809 + components: + - type: Transform + pos: -4.5,-2.5 + parent: 1 +- proto: PosterContrabandClown + entities: + - uid: 811 components: - type: Transform - pos: -1.5,-2.5 + rot: 1.5707963267948966 rad + pos: -10.5,1.5 parent: 1 - proto: PosterContrabandDonk entities: @@ -4371,10 +4600,34 @@ entities: parent: 1 - proto: PosterLegitCohibaRobustoAd entities: - - uid: 578 + - uid: 810 components: - type: Transform - pos: -1.5,-0.5 + pos: -4.5,-0.5 + parent: 1 +- proto: PosterLegitEatMeat + entities: + - uid: 758 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,4.5 + parent: 1 +- proto: PosterLegitEnlist + entities: + - uid: 793 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,8.5 + parent: 1 +- proto: PosterLegitHereForYourSafety + entities: + - uid: 190 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,6.5 parent: 1 - proto: PosterLegitHotDonkExplosion entities: @@ -4408,8 +4661,6 @@ entities: entities: - uid: 732 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 5.5,5.5 @@ -4425,8 +4676,6 @@ entities: entities: - uid: 618 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: -4.5,5.5 @@ -4450,16 +4699,16 @@ entities: parent: 1 - proto: PoweredSmallLight entities: - - uid: 580 + - uid: 48 components: - type: Transform - pos: -5.5,3.5 + rot: -1.5707963267948966 rad + pos: -5.5,-2.5 parent: 1 - - uid: 730 + - uid: 580 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,-2.5 + pos: -5.5,3.5 parent: 1 - uid: 731 components: @@ -4474,8 +4723,27 @@ entities: - type: Transform pos: 1.5,6.5 parent: 1 + - uid: 815 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,6.5 + parent: 1 + - type: ContainerContainer + containers: + light_bulb: !type:ContainerSlot + showEnts: False + occludes: True + ent: 816 + - type: ApcPowerReceiver + powerLoad: 0 - proto: Rack entities: + - uid: 191 + components: + - type: Transform + pos: -7.5,3.5 + parent: 1 - uid: 208 components: - type: Transform @@ -4520,9 +4788,16 @@ entities: - type: Transform pos: -4.5,4.5 parent: 1 -- proto: RandomSpawner +- proto: RandomSoap entities: - - uid: 107 + - uid: 765 + components: + - type: Transform + pos: -8.5,5.5 + parent: 1 +- proto: RandomSpawner + entities: + - uid: 107 components: - type: Transform pos: 8.5,3.5 @@ -4537,6 +4812,11 @@ entities: - type: Transform pos: 4.5,0.5 parent: 1 + - uid: 311 + components: + - type: Transform + pos: -8.5,2.5 + parent: 1 - uid: 616 components: - type: Transform @@ -4552,6 +4832,11 @@ entities: - type: Transform pos: -6.5,1.5 parent: 1 + - uid: 817 + components: + - type: Transform + pos: -9.5,3.5 + parent: 1 - proto: RandomVending entities: - uid: 218 @@ -4683,35 +4968,11 @@ entities: rot: -1.5707963267948966 rad pos: 4.5,-5.5 parent: 1 - - uid: 34 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,-5.5 - parent: 1 - - uid: 35 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,-4.5 - parent: 1 - - uid: 36 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,-3.5 - parent: 1 - - uid: 201 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,3.5 - parent: 1 - - uid: 202 + - uid: 184 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,2.5 + rot: 3.141592653589793 rad + pos: -2.5,-0.5 parent: 1 - uid: 203 components: @@ -4742,11 +5003,38 @@ entities: - type: Transform pos: 6.5,9.5 parent: 1 + - uid: 499 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-0.5 + parent: 1 + - uid: 613 + components: + - type: Transform + pos: -4.5,-4.5 + parent: 1 + - uid: 614 + components: + - type: Transform + pos: -4.5,-3.5 + parent: 1 - uid: 700 components: - type: Transform pos: 7.5,9.5 parent: 1 + - uid: 725 + components: + - type: Transform + pos: -4.5,-5.5 + parent: 1 + - uid: 779 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-0.5 + parent: 1 - proto: ShardGlassPlasma entities: - uid: 95 @@ -4761,6 +5049,14 @@ entities: rot: 1.5707963267948966 rad pos: 0.2400167,7.0461235 parent: 1 +- proto: SignDirectionalWash + entities: + - uid: 188 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,4.5 + parent: 1 - proto: SignSmoking entities: - uid: 706 @@ -4768,6 +5064,13 @@ entities: - type: Transform pos: -1.5,7.5 parent: 1 +- proto: SinkEmpty + entities: + - uid: 189 + components: + - type: Transform + pos: -9.5,6.5 + parent: 1 - proto: SMESBasic entities: - uid: 70 @@ -4982,8 +5285,6 @@ entities: entities: - uid: 296 components: - - type: MetaData - flags: InContainer - type: Transform parent: 563 - type: Physics @@ -4991,8 +5292,6 @@ entities: - type: InsideEntityStorage - uid: 388 components: - - type: MetaData - flags: InContainer - type: Transform parent: 563 - type: Physics @@ -5000,8 +5299,6 @@ entities: - type: InsideEntityStorage - uid: 528 components: - - type: MetaData - flags: InContainer - type: Transform parent: 563 - type: Physics @@ -5024,6 +5321,11 @@ entities: - type: Transform pos: -0.5,1.5 parent: 1 + - uid: 813 + components: + - type: Transform + pos: -9.5,2.5 + parent: 1 - proto: SpawnMobCarpHolo entities: - uid: 729 @@ -5130,6 +5432,13 @@ entities: rot: 1.5707963267948966 rad pos: 6.5,1.5 parent: 1 +- proto: ToiletDirtyWater + entities: + - uid: 326 + components: + - type: Transform + pos: -8.5,8.5 + parent: 1 - proto: VendingMachineBooze entities: - uid: 523 @@ -5144,6 +5453,13 @@ entities: - type: Transform pos: 9.5,3.5 parent: 1 +- proto: VendingMachineCoffee + entities: + - uid: 780 + components: + - type: Transform + pos: -4.5,0.5 + parent: 1 - proto: VendingMachineCondiments entities: - uid: 521 @@ -5163,19 +5479,19 @@ entities: - type: Transform pos: 3.5447173,5.482584 parent: 1 -- proto: VendingMachineRestockFlatpackVend +- proto: VendingMachineRestockDiscountDans entities: - - uid: 626 + - uid: 627 components: - type: Transform - pos: 2.7009673,5.7640285 + pos: 2.4822173,5.513855 parent: 1 -- proto: VendingMachineRestockDiscountDans +- proto: VendingMachineRestockFlatpackVend entities: - - uid: 627 + - uid: 626 components: - type: Transform - pos: 2.4822173,5.513855 + pos: 2.7009673,5.7640285 parent: 1 - proto: VendingMachineRestockGetmoreChocolateCorp entities: @@ -5200,511 +5516,438 @@ entities: parent: 1 - proto: WallReinforced entities: - - uid: 13 + - uid: 2 components: - - type: MetaData - flags: PvsPriority - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,-6.5 + pos: -4.5,-0.5 parent: 1 - - uid: 14 + - uid: 3 components: - - type: MetaData - flags: PvsPriority - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,-6.5 + pos: -3.5,-0.5 + parent: 1 + - uid: 4 + components: + - type: Transform + pos: -2.5,-0.5 parent: 1 - uid: 15 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: 4.5,-6.5 parent: 1 - uid: 16 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: 8.5,-6.5 parent: 1 - - uid: 17 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,-2.5 - parent: 1 - - uid: 18 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,-1.5 - parent: 1 - uid: 19 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-0.5 parent: 1 - uid: 20 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-0.5 parent: 1 - uid: 21 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: 4.5,-2.5 parent: 1 - uid: 22 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: 4.5,-1.5 parent: 1 - uid: 23 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: 4.5,-0.5 parent: 1 - uid: 24 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-0.5 parent: 1 - - uid: 37 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,0.5 - parent: 1 - uid: 38 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: 8.5,-0.5 parent: 1 - uid: 39 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: 8.5,-1.5 parent: 1 - uid: 40 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: 8.5,-2.5 parent: 1 - uid: 41 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: 8.5,0.5 parent: 1 - - uid: 42 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,-0.5 - parent: 1 - - uid: 43 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,-1.5 - parent: 1 - - uid: 44 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,-2.5 - parent: 1 - - uid: 45 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,0.5 - parent: 1 - uid: 46 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: 9.5,0.5 parent: 1 - uid: 47 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: -6.5,7.5 parent: 1 - - uid: 48 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,8.5 - parent: 1 - uid: 49 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: -6.5,9.5 parent: 1 - uid: 50 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: -5.5,9.5 parent: 1 - uid: 51 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: -2.5,9.5 parent: 1 - uid: 52 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: -1.5,9.5 parent: 1 - uid: 53 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: -1.5,8.5 parent: 1 - uid: 54 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: -1.5,7.5 parent: 1 - uid: 57 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: 4.5,7.5 parent: 1 - uid: 58 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: 4.5,8.5 parent: 1 - uid: 59 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: 4.5,9.5 parent: 1 - uid: 60 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: 5.5,9.5 parent: 1 - uid: 61 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: 8.5,9.5 parent: 1 - uid: 62 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: 9.5,9.5 parent: 1 - uid: 63 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: 9.5,8.5 parent: 1 - uid: 64 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: 9.5,7.5 parent: 1 - uid: 181 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 1.5,9.5 parent: 1 - uid: 183 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: -0.5,9.5 parent: 1 - - uid: 184 + - uid: 186 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad - pos: -7.5,6.5 + pos: 10.5,1.5 parent: 1 - - uid: 185 + - uid: 187 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad - pos: -7.5,1.5 + pos: 10.5,6.5 parent: 1 - - uid: 186 + - uid: 196 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad - pos: 10.5,1.5 + pos: 2.5,9.5 parent: 1 - - uid: 187 + - uid: 197 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad - pos: 10.5,6.5 + pos: 1.5,7.5 parent: 1 - - uid: 188 + - uid: 198 components: - - type: MetaData - flags: PvsPriority - type: Transform - pos: -7.5,4.5 + rot: 1.5707963267948966 rad + pos: 1.5,8.5 parent: 1 - - uid: 189 + - uid: 568 components: - - type: MetaData - flags: PvsPriority - type: Transform - pos: -7.5,5.5 + pos: -7.5,8.5 parent: 1 - - uid: 196 + - uid: 752 + components: + - type: Transform + pos: -4.5,-1.5 + parent: 1 + - uid: 769 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,9.5 + parent: 1 + - uid: 772 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,9.5 + parent: 1 + - uid: 777 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,0.5 + parent: 1 + - uid: 778 + components: + - type: Transform + pos: -4.5,-2.5 + parent: 1 + - uid: 781 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad - pos: 2.5,9.5 + pos: -9.5,9.5 parent: 1 - - uid: 197 + - uid: 782 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad - pos: 1.5,7.5 + pos: -9.5,8.5 parent: 1 - - uid: 198 + - uid: 783 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad - pos: 1.5,8.5 + pos: -9.5,7.5 + parent: 1 + - uid: 784 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,6.5 + parent: 1 + - uid: 785 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,5.5 + parent: 1 + - uid: 786 + components: + - type: Transform + pos: -10.5,4.5 + parent: 1 + - uid: 789 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,1.5 + parent: 1 + - uid: 790 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,0.5 + parent: 1 + - uid: 799 + components: + - type: Transform + pos: -8.5,-0.5 + parent: 1 + - uid: 800 + components: + - type: Transform + pos: -8.5,-1.5 + parent: 1 + - uid: 801 + components: + - type: Transform + pos: -8.5,-2.5 + parent: 1 + - uid: 802 + components: + - type: Transform + pos: -8.5,-6.5 + parent: 1 + - uid: 808 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-6.5 parent: 1 - proto: WallSolid entities: - uid: 67 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: -5.5,7.5 parent: 1 - uid: 68 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: -2.5,7.5 parent: 1 - uid: 298 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 4.5,4.5 parent: 1 - uid: 299 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 4.5,5.5 parent: 1 - uid: 300 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 3.5,4.5 parent: 1 - uid: 301 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 2.5,4.5 parent: 1 - uid: 302 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 1.5,4.5 parent: 1 - uid: 303 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 0.5,4.5 parent: 1 - uid: 304 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -0.5,4.5 parent: 1 - uid: 305 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -1.5,4.5 parent: 1 - uid: 306 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -2.5,4.5 parent: 1 - uid: 307 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -4.5,4.5 parent: 1 - uid: 308 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -5.5,4.5 parent: 1 - uid: 309 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -6.5,4.5 parent: 1 -- proto: WallSolidDiagonal - entities: - - uid: 3 + - uid: 493 + components: + - type: Transform + pos: -9.5,4.5 + parent: 1 + - uid: 747 + components: + - type: Transform + pos: -7.5,6.5 + parent: 1 + - uid: 748 components: - type: Transform pos: -7.5,7.5 parent: 1 - - uid: 4 + - uid: 749 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,0.5 + pos: -7.5,4.5 parent: 1 + - uid: 750 + components: + - type: Transform + pos: -7.5,5.5 + parent: 1 +- proto: WallSolidDiagonal + entities: - uid: 5 components: - type: Transform @@ -5717,6 +5960,17 @@ entities: rot: -1.5707963267948966 rad pos: 10.5,7.5 parent: 1 + - uid: 791 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,0.5 + parent: 1 + - uid: 792 + components: + - type: Transform + pos: -10.5,7.5 + parent: 1 - proto: WarningAir entities: - uid: 211 @@ -5747,7 +6001,6 @@ entities: - uid: 219 components: - type: MetaData - flags: InContainer name: Customer Service Resolver - type: Transform parent: 563 @@ -5761,6 +6014,18 @@ entities: - type: Transform pos: 5.5,-3.5 parent: 1 +- proto: Window + entities: + - uid: 751 + components: + - type: Transform + pos: -10.5,2.5 + parent: 1 + - uid: 774 + components: + - type: Transform + pos: -10.5,3.5 + parent: 1 - proto: Wrench entities: - uid: 718 diff --git a/Resources/Maps/_NF/Shuttles/anchor.yml b/Resources/Maps/_NF/Shuttles/anchor.yml index e29c0042bbd..1633bf44778 100644 --- a/Resources/Maps/_NF/Shuttles/anchor.yml +++ b/Resources/Maps/_NF/Shuttles/anchor.yml @@ -4480,8 +4480,6 @@ entities: - type: Transform pos: -2.5,7.5 parent: 1 - - type: RadarConsole - maxRange: 768 - proto: ComputerSalvageExpedition entities: - uid: 669 diff --git a/Resources/Maps/_NF/Shuttles/ceres.yml b/Resources/Maps/_NF/Shuttles/ceres.yml index f4342f5a2ac..63740289471 100644 --- a/Resources/Maps/_NF/Shuttles/ceres.yml +++ b/Resources/Maps/_NF/Shuttles/ceres.yml @@ -10,17 +10,17 @@ tilemap: 46: FloorGlass 51: FloorGrassLight 63: FloorLino - 90: FloorSteel - 92: FloorSteelCheckerDark - 100: FloorSteelMini - 101: FloorSteelMono - 105: FloorTechMaint - 109: FloorWhite - 110: FloorWhiteDiagonal - 114: FloorWhiteMono - 119: FloorWood - 121: Lattice - 122: Plating + 92: FloorSteel + 94: FloorSteelCheckerDark + 102: FloorSteelMini + 103: FloorSteelMono + 107: FloorTechMaint + 111: FloorWhite + 112: FloorWhiteDiagonal + 116: FloorWhiteMono + 121: FloorWood + 124: Lattice + 125: Plating entities: - proto: "" entities: @@ -35,27 +35,27 @@ entities: chunks: 0,0: ind: 0,0 - tiles: egAAAAAAegAAAAAALgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: fQAAAAAAfQAAAAAALgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -1,0: ind: -1,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALgAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALgAAAAABfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -1,-1: ind: -1,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAXAAAAAABXAAAAAADXAAAAAADXAAAAAADXAAAAAABXAAAAAACXAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAXAAAAAACXAAAAAAAXAAAAAAAXAAAAAABXAAAAAADegAAAAAAPwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAXAAAAAABXAAAAAAAXAAAAAADXAAAAAACXAAAAAACPwAAAAAAPwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAXAAAAAACXAAAAAADegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALgAAAAAAegAAAAAAegAAAAAAZQAAAAABegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAdwAAAAACdwAAAAACdwAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAZAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAdwAAAAACdwAAAAACdwAAAAACegAAAAAALgAAAAAAAAAAAAAAeQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAIgAAAAADIgAAAAACegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALgAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAHgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAIwAAAAABIgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAHgAAAAABIgAAAAABIgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAHgAAAAAAIgAAAAACIgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAHgAAAAABIgAAAAABIgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALgAAAAAAegAAAAAAIwAAAAADIgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAHgAAAAAD + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAXgAAAAAAXgAAAAACXgAAAAACXgAAAAAAXgAAAAAAfQAAAAAAPwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAXgAAAAAAXgAAAAACXgAAAAADXgAAAAADXgAAAAADPwAAAAAAPwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAXgAAAAADXgAAAAACXgAAAAAAXgAAAAABXgAAAAADfQAAAAAAPwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAXgAAAAAAXgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALgAAAAACfQAAAAAAfQAAAAAAZwAAAAADfQAAAAAAawAAAAAAawAAAAAAawAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAeQAAAAADeQAAAAAAeQAAAAADfQAAAAAAawAAAAAAawAAAAAAawAAAAAAZgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAeQAAAAABeQAAAAADeQAAAAADfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAeQAAAAAAeQAAAAADeQAAAAABfQAAAAAALgAAAAADAAAAAAAAfAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAIgAAAAAAIgAAAAADfQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALgAAAAADfQAAAAAAfQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfQAAAAAAfQAAAAAAHgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfQAAAAAAIwAAAAADIgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAHgAAAAABIgAAAAABIgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAHgAAAAACIgAAAAADIgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAHgAAAAAAIgAAAAABIgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALgAAAAABfQAAAAAAIwAAAAADIgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAHgAAAAAA version: 6 0,-1: ind: 0,-1 - tiles: XAAAAAABbQAAAAADbgAAAAABbgAAAAAAbgAAAAABbgAAAAADbgAAAAADbQAAAAACegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPwAAAAAAbQAAAAAAbgAAAAADbgAAAAAAbgAAAAAAbgAAAAADbgAAAAAAbQAAAAABegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPwAAAAAAcgAAAAADbQAAAAABbQAAAAADbQAAAAACbQAAAAADbQAAAAAAbQAAAAABegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAcgAAAAACcgAAAAABegAAAAAAcgAAAAAAcgAAAAACcgAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWgAAAAAAWgAAAAACWgAAAAAAWgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAALgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWgAAAAAAWgAAAAABWgAAAAAAWgAAAAACIgAAAAADHgAAAAADHgAAAAACIwAAAAABIwAAAAACegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWgAAAAACegAAAAAAegAAAAAAegAAAAAAegAAAAAAHgAAAAADLgAAAAABLgAAAAABHgAAAAADegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWgAAAAADegAAAAAAeQAAAAAAAAAAAAAALgAAAAAAegAAAAAAHgAAAAAAHgAAAAACHgAAAAACegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIgAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAHgAAAAACHgAAAAADegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAADHgAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAALgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIgAAAAAAIgAAAAAAIwAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIgAAAAACIgAAAAABIgAAAAABHgAAAAADegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMwAAAAAAIgAAAAABIgAAAAAAHgAAAAACegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIgAAAAABIgAAAAAAIgAAAAADHgAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIgAAAAAAIgAAAAABIwAAAAABegAAAAAALgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAABHgAAAAADegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: PwAAAAAAfQAAAAAAcAAAAAACcAAAAAACcAAAAAACcAAAAAABcAAAAAADbwAAAAADfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPwAAAAAAdAAAAAACcAAAAAAAcAAAAAABcAAAAAAAcAAAAAACcAAAAAACbwAAAAACfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPwAAAAAAfQAAAAAAbwAAAAADbwAAAAADbwAAAAADbwAAAAADbwAAAAACbwAAAAACfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAdAAAAAADdAAAAAABfQAAAAAAdAAAAAADdAAAAAAAdAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAXAAAAAACXAAAAAADXAAAAAABfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAALgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAXAAAAAAAXAAAAAACXAAAAAABIgAAAAAAHgAAAAADHgAAAAABIwAAAAACIwAAAAABfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAADfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHgAAAAABLgAAAAABLgAAAAACIwAAAAADfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAACfQAAAAAAfAAAAAAAAAAAAAAALgAAAAABfQAAAAAAHgAAAAADHgAAAAADHgAAAAADfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIgAAAAAAfQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfQAAAAAAHgAAAAACHgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAADHgAAAAABfQAAAAAAfQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfQAAAAAAfQAAAAAALgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIgAAAAADIgAAAAABIwAAAAAAfQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIgAAAAAAIgAAAAABIgAAAAACHgAAAAADfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMwAAAAAAIgAAAAABIgAAAAACHgAAAAADfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIgAAAAAAIgAAAAACIgAAAAABHgAAAAADfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIgAAAAAAIgAAAAABIwAAAAAAfQAAAAAALgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAHgAAAAACfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -1,-2: ind: -1,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALgAAAAAAegAAAAAAegAAAAAAegAAAAAALgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALgAAAAAAegAAAAAAIwAAAAADIwAAAAAAIwAAAAADegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAIwAAAAABHgAAAAADHgAAAAADHgAAAAACegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAIwAAAAAAHgAAAAABegAAAAAAZQAAAAACegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAIwAAAAACHgAAAAAAZQAAAAABXAAAAAACXAAAAAABXAAAAAACXAAAAAACXAAAAAAAXAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALgAAAAAAegAAAAAAegAAAAAAXAAAAAADXAAAAAAAXAAAAAADXAAAAAABXAAAAAAAXAAAAAABXAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAXAAAAAACXAAAAAAAXAAAAAAAXAAAAAABXAAAAAADXAAAAAADXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAXAAAAAAAXAAAAAACXAAAAAABXAAAAAABXAAAAAAAXAAAAAABXAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALgAAAAADfQAAAAAAfQAAAAAAfQAAAAAALgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALgAAAAADfQAAAAAAIwAAAAAAIwAAAAABIwAAAAADfQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAIwAAAAADHgAAAAABHgAAAAADHgAAAAACfQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAIwAAAAABHgAAAAABfQAAAAAAZwAAAAABfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAIwAAAAAAHgAAAAACZwAAAAABXgAAAAADXgAAAAABXgAAAAACXgAAAAACXgAAAAADXgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALgAAAAACfQAAAAAAfQAAAAAAXgAAAAACXgAAAAAAXgAAAAADXgAAAAABXgAAAAAAXgAAAAABXgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfQAAAAAAXgAAAAADXgAAAAADXgAAAAACXgAAAAACXgAAAAADXgAAAAACXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAXgAAAAABXgAAAAACXgAAAAAAXgAAAAAAXgAAAAACXgAAAAABXgAAAAAC version: 6 0,-2: ind: 0,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALgAAAAAAegAAAAAAegAAAAAAegAAAAAALgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAALQAAAAAALQAAAAAALQAAAAAAegAAAAAALgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAALQAAAAAALQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAABegAAAAAAbQAAAAABbQAAAAABbQAAAAADbQAAAAABbQAAAAABcgAAAAAALQAAAAAALQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAACcgAAAAABbQAAAAAAbQAAAAACbQAAAAADbQAAAAABbQAAAAADegAAAAAAegAAAAAAegAAAAAALgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAADbQAAAAABbgAAAAAAbgAAAAABbgAAAAACbgAAAAACbgAAAAAAbQAAAAADegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAABbQAAAAADbgAAAAAAbgAAAAABbgAAAAAAbgAAAAAAbgAAAAADbQAAAAABegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAALgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfQAAAAAALQAAAAAALQAAAAAALQAAAAAAfQAAAAAALgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfQAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAALQAAAAAALQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAACZwAAAAADbwAAAAACbwAAAAACbwAAAAADbwAAAAAAbwAAAAACdAAAAAAALQAAAAAALQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAACfQAAAAAAbwAAAAADbwAAAAADbwAAAAAAbwAAAAACbwAAAAABfQAAAAAAfQAAAAAAfQAAAAAALgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAACbwAAAAABcAAAAAABcAAAAAAAcAAAAAABcAAAAAAAcAAAAAABbwAAAAADfQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAABbwAAAAABcAAAAAACcAAAAAAAcAAAAAADcAAAAAABcAAAAAADbwAAAAABfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 - type: Broadphase - type: Physics @@ -83,8 +83,15 @@ entities: color: '#FFFFFFFF' id: Bot decals: - 110: 8,-11 - 111: 7,-11 + 162: 8,-10 + 163: 8,-11 + - node: + color: '#FFFFFFFF' + id: Box + decals: + 159: 7,-11 + 168: -3,-12 + 169: -2,-12 - node: color: '#FFFFFFFF' id: BrickTileDarkCornerNe @@ -421,20 +428,21 @@ entities: color: '#791500FF' id: MiniTileWhiteInnerNe decals: - 126: -3,-16 + 157: -3,-17 - node: color: '#791500FF' id: MiniTileWhiteLineE decals: 124: -3,-14 - 125: -3,-15 + 152: -3,-15 + 153: -3,-16 - node: color: '#791500FF' id: MiniTileWhiteLineN decals: - 127: -2,-16 - 128: -1,-16 - 129: 0,-16 + 154: -2,-17 + 155: -1,-17 + 156: 0,-17 - node: color: '#FFFFFFFF' id: WarnLineN @@ -644,7 +652,7 @@ entities: - 775 - 419 - 382 - - 167 + - 677 - 566 - 417 - 418 @@ -669,7 +677,7 @@ entities: devices: - 241 - 301 - - 770 + - 458 - type: AtmosDevice joinedGrid: 2 - uid: 495 @@ -692,7 +700,7 @@ entities: parent: 2 - type: DeviceList devices: - - 266 + - 283 - 265 - 299 - 769 @@ -707,7 +715,7 @@ entities: devices: - 180 - 382 - - 167 + - 422 - 416 - 415 - 419 @@ -718,14 +726,15 @@ entities: - 529 - 496 - 396 + - 677 - type: AtmosDevice joinedGrid: 2 - proto: AirCanister entities: - - uid: 339 + - uid: 802 components: - type: Transform - pos: -1.5,-11.5 + pos: 7.5,-10.5 parent: 2 - type: AtmosDevice joinedGrid: 2 @@ -733,8 +742,6 @@ entities: entities: - uid: 130 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 4.5,-10.5 parent: 2 @@ -742,8 +749,6 @@ entities: entities: - uid: 268 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -0.5,-10.5 parent: 2 @@ -763,28 +768,25 @@ entities: entities: - uid: 694 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 7.5,-19.5 parent: 2 - proto: AirlockGlass entities: - - uid: 303 + - uid: 497 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,-13.5 + pos: 0.5,-7.5 parent: 2 - - uid: 358 + - uid: 546 components: - type: Transform - pos: 1.5,-18.5 + pos: 1.5,-19.5 parent: 2 - - uid: 497 + - uid: 671 components: - type: Transform - pos: 0.5,-7.5 + pos: 1.5,-14.5 parent: 2 - proto: AirlockGlassShuttle entities: @@ -832,11 +834,6 @@ entities: - type: Transform pos: 8.5,-9.5 parent: 2 - - uid: 770 - components: - - type: Transform - pos: -1.5,-10.5 - parent: 2 - uid: 771 components: - type: Transform @@ -959,11 +956,6 @@ entities: - type: Transform pos: 2.5,-21.5 parent: 2 - - uid: 509 - components: - - type: Transform - pos: -3.5,-21.5 - parent: 2 - uid: 531 components: - type: Transform @@ -977,32 +969,32 @@ entities: - uid: 573 components: - type: Transform - pos: 4.5,-21.5 + pos: -3.5,-21.5 parent: 2 - uid: 580 components: - type: Transform - pos: 5.5,-23.5 + pos: 4.5,-21.5 parent: 2 - uid: 581 components: - type: Transform - pos: -4.5,-23.5 + pos: 5.5,-23.5 parent: 2 - uid: 582 components: - type: Transform - pos: -8.5,-23.5 + pos: -4.5,-23.5 parent: 2 - uid: 583 components: - type: Transform - pos: -9.5,-22.5 + pos: -8.5,-23.5 parent: 2 - uid: 589 components: - type: Transform - pos: -9.5,-18.5 + pos: -9.5,-22.5 parent: 2 - uid: 624 components: @@ -1017,7 +1009,7 @@ entities: - uid: 676 components: - type: Transform - pos: 9.5,-23.5 + pos: -9.5,-18.5 parent: 2 - uid: 696 components: @@ -1047,103 +1039,115 @@ entities: - uid: 707 components: - type: Transform - pos: 10.5,-22.5 + pos: 9.5,-23.5 parent: 2 - uid: 747 components: - type: Transform - pos: 10.5,-18.5 + pos: 10.5,-22.5 parent: 2 - uid: 748 components: - type: Transform - pos: 9.5,-11.5 + pos: 10.5,-18.5 parent: 2 - uid: 749 components: - type: Transform - pos: 9.5,-6.5 + pos: 9.5,-11.5 parent: 2 - uid: 776 components: - type: Transform - pos: -8.5,-11.5 + pos: 9.5,-6.5 parent: 2 - uid: 777 components: - type: Transform - pos: -8.5,-6.5 + pos: -8.5,-11.5 parent: 2 - uid: 778 components: - type: Transform - pos: -5.5,-6.5 + pos: -8.5,-6.5 parent: 2 - uid: 779 components: - type: Transform - pos: -4.5,-7.5 + pos: -5.5,-6.5 parent: 2 - uid: 780 components: - type: Transform - pos: -3.5,-8.5 + pos: -4.5,-7.5 parent: 2 - uid: 781 components: - type: Transform - pos: -1.5,-7.5 + pos: -3.5,-8.5 parent: 2 - uid: 782 components: - type: Transform - pos: 2.5,-7.5 + pos: -1.5,-7.5 parent: 2 - uid: 783 components: - type: Transform - pos: 4.5,-8.5 + pos: 2.5,-7.5 parent: 2 - uid: 784 components: - type: Transform - pos: 5.5,-7.5 + pos: 4.5,-8.5 parent: 2 - uid: 785 components: - type: Transform - pos: 6.5,-6.5 + pos: 5.5,-7.5 parent: 2 - uid: 786 components: - type: Transform - pos: -3.5,-5.5 + pos: 6.5,-6.5 parent: 2 - uid: 787 components: - type: Transform - pos: 4.5,-5.5 + pos: -3.5,-5.5 parent: 2 - uid: 788 components: - type: Transform - pos: 4.5,-1.5 + pos: 4.5,-5.5 parent: 2 - uid: 789 components: - type: Transform - pos: 2.5,0.5 + pos: 4.5,-1.5 parent: 2 - uid: 790 components: - type: Transform - pos: -1.5,0.5 + pos: 2.5,0.5 parent: 2 - uid: 791 + components: + - type: Transform + pos: -1.5,0.5 + parent: 2 + - uid: 792 components: - type: Transform pos: -3.5,-1.5 parent: 2 +- proto: BoozeDispenser + entities: + - uid: 228 + components: + - type: Transform + pos: -0.5,-13.5 + parent: 2 - proto: Bucket entities: - uid: 574 @@ -1178,11 +1182,41 @@ entities: - type: Transform pos: -7.5,-19.5 parent: 2 + - uid: 127 + components: + - type: Transform + pos: -2.5,-14.5 + parent: 2 + - uid: 128 + components: + - type: Transform + pos: -3.5,-14.5 + parent: 2 + - uid: 129 + components: + - type: Transform + pos: -5.5,-14.5 + parent: 2 - uid: 148 components: - type: Transform pos: -4.5,-13.5 parent: 2 + - uid: 149 + components: + - type: Transform + pos: -1.5,-14.5 + parent: 2 + - uid: 158 + components: + - type: Transform + pos: -0.5,-14.5 + parent: 2 + - uid: 167 + components: + - type: Transform + pos: -0.5,-15.5 + parent: 2 - uid: 184 components: - type: Transform @@ -1208,11 +1242,6 @@ entities: - type: Transform pos: 7.5,-21.5 parent: 2 - - uid: 226 - components: - - type: Transform - pos: -3.5,-15.5 - parent: 2 - uid: 456 components: - type: Transform @@ -1293,11 +1322,6 @@ entities: - type: Transform pos: -5.5,-13.5 parent: 2 - - uid: 510 - components: - - type: Transform - pos: -4.5,-14.5 - parent: 2 - uid: 511 components: - type: Transform @@ -1408,31 +1432,11 @@ entities: - type: Transform pos: -5.5,-11.5 parent: 2 - - uid: 539 - components: - - type: Transform - pos: -4.5,-15.5 - parent: 2 - uid: 543 components: - type: Transform pos: -5.5,-18.5 parent: 2 - - uid: 545 - components: - - type: Transform - pos: -2.5,-15.5 - parent: 2 - - uid: 546 - components: - - type: Transform - pos: -1.5,-15.5 - parent: 2 - - uid: 547 - components: - - type: Transform - pos: -0.5,-15.5 - parent: 2 - uid: 548 components: - type: Transform @@ -1640,67 +1644,52 @@ entities: parent: 2 - proto: CableHV entities: - - uid: 234 + - uid: 119 components: - type: Transform pos: -3.5,-11.5 parent: 2 - - uid: 235 + - uid: 229 components: - type: Transform - pos: -3.5,-10.5 + pos: -1.5,-11.5 parent: 2 - - uid: 236 + - uid: 237 components: - type: Transform - pos: -2.5,-11.5 + pos: -1.5,-11.5 parent: 2 - - uid: 237 + - uid: 539 components: - type: Transform - pos: -1.5,-11.5 + pos: -3.5,-10.5 parent: 2 - - uid: 238 + - uid: 709 components: - type: Transform - pos: -1.5,-12.5 + pos: -2.5,-11.5 parent: 2 - proto: CableMV entities: - - uid: 149 + - uid: 168 components: - type: Transform - pos: -2.5,-15.5 + pos: -2.5,-10.5 parent: 2 - uid: 227 components: - type: Transform pos: 1.5,-10.5 parent: 2 - - uid: 228 - components: - - type: Transform - pos: -1.5,-15.5 - parent: 2 - uid: 231 components: - type: Transform pos: 2.5,-10.5 parent: 2 - - uid: 394 - components: - - type: Transform - pos: 1.5,-15.5 - parent: 2 - - uid: 459 - components: - - type: Transform - pos: -1.5,-12.5 - parent: 2 - - uid: 460 + - uid: 238 components: - type: Transform - pos: -1.5,-11.5 + pos: -3.5,-10.5 parent: 2 - uid: 461 components: @@ -1717,11 +1706,6 @@ entities: - type: Transform pos: 0.5,-10.5 parent: 2 - - uid: 464 - components: - - type: Transform - pos: 0.5,-15.5 - parent: 2 - uid: 467 components: - type: Transform @@ -1780,15 +1764,40 @@ entities: - uid: 570 components: - type: Transform - pos: -0.5,-15.5 + pos: 2.5,-16.5 + parent: 2 + - uid: 794 + components: + - type: Transform + pos: 0.5,-16.5 + parent: 2 + - uid: 795 + components: + - type: Transform + pos: -0.5,-16.5 + parent: 2 + - uid: 796 + components: + - type: Transform + pos: -1.5,-16.5 + parent: 2 + - uid: 797 + components: + - type: Transform + pos: -2.5,-16.5 + parent: 2 + - uid: 798 + components: + - type: Transform + pos: -3.5,-16.5 parent: 2 - proto: CableTerminal entities: - - uid: 472 + - uid: 179 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,-11.5 + rot: -1.5707963267948966 rad + pos: -2.5,-11.5 parent: 2 - proto: CarpetGreen entities: @@ -1877,11 +1886,11 @@ entities: parent: 2 - proto: ChairFolding entities: - - uid: 709 + - uid: 460 components: - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,-19.5 + rot: -1.5707963267948966 rad + pos: 6.5,-18.5 parent: 2 - proto: ChairOfficeDark entities: @@ -1997,14 +2006,14 @@ entities: parent: 2 - proto: ClosetChefFilled entities: - - uid: 662 + - uid: 799 components: - type: Transform - pos: 3.5,-19.5 + pos: 4.5,-18.5 parent: 2 - proto: ComputerShuttle entities: - - uid: 168 + - uid: 437 components: - type: Transform pos: 7.5,-7.5 @@ -2019,10 +2028,10 @@ entities: parent: 2 - proto: ComputerWallmountWithdrawBankATM entities: - - uid: 466 + - uid: 338 components: - type: Transform - pos: 1.5,-14.5 + pos: 1.5,-15.5 parent: 2 - type: Physics canCollide: False @@ -2049,7 +2058,7 @@ entities: - uid: 64 components: - type: Transform - pos: 1.5527847,-15.358986 + pos: 1.5,-16.2 parent: 2 - type: Physics canCollide: False @@ -2147,13 +2156,27 @@ entities: parent: 2 - proto: DrinkShaker entities: - - uid: 378 + - uid: 379 components: - type: Transform pos: 5.537535,-15.421177 parent: 2 +- proto: Dropper + entities: + - uid: 472 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5348911,-3.6397347 + parent: 2 - proto: EmergencyLight entities: + - uid: 1 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-19.5 + parent: 2 - uid: 186 components: - type: Transform @@ -2202,7 +2225,7 @@ entities: components: - type: Transform rot: 1.5707963267948966 rad - pos: 2.5,-14.5 + pos: 2.5,-15.5 parent: 2 - uid: 738 components: @@ -2274,12 +2297,7 @@ entities: parent: 2 - proto: FirelockGlass entities: - - uid: 167 - components: - - type: Transform - pos: 1.5,-15.5 - parent: 2 - - uid: 180 + - uid: 180 components: - type: Transform pos: -5.5,-11.5 @@ -2292,12 +2310,12 @@ entities: - uid: 415 components: - type: Transform - pos: -0.5,-14.5 + pos: -0.5,-15.5 parent: 2 - uid: 416 components: - type: Transform - pos: 0.5,-14.5 + pos: 0.5,-15.5 parent: 2 - uid: 417 components: @@ -2312,7 +2330,7 @@ entities: - uid: 419 components: - type: Transform - pos: 1.5,-18.5 + pos: 1.5,-19.5 parent: 2 - uid: 465 components: @@ -2323,8 +2341,17 @@ entities: - uid: 566 components: - type: Transform - pos: 1.5,-13.5 + pos: 1.5,-14.5 parent: 2 + - uid: 677 + components: + - type: Transform + pos: 1.5,-17.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 588 + - 65 - proto: Fireplace entities: - uid: 331 @@ -2366,24 +2393,24 @@ entities: parent: 2 - proto: FoodShakerPepper entities: - - uid: 405 + - uid: 406 components: - type: Transform pos: 3.3708684,-16.52611 parent: 2 - - uid: 406 + - uid: 407 components: - type: Transform pos: 3.6000352,-16.484415 parent: 2 - proto: FoodShakerSalt entities: - - uid: 233 + - uid: 378 components: - type: Transform pos: 3.5062852,-16.28636 parent: 2 - - uid: 407 + - uid: 409 components: - type: Transform pos: 3.297952,-16.33848 @@ -2408,14 +2435,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 229 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,-18.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - uid: 256 components: - type: Transform @@ -2432,22 +2451,22 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 267 + - uid: 284 components: - type: Transform rot: -1.5707963267948966 rad - pos: 6.5,-11.5 + pos: 5.5,-11.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 274 + - uid: 297 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,-11.5 + rot: 3.141592653589793 rad + pos: 2.5,-19.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#990000FF' - uid: 315 components: - type: Transform @@ -2456,34 +2475,26 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 401 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,-14.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 454 + - uid: 394 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,-19.5 + pos: -3.5,-15.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 626 + - uid: 411 components: - type: Transform - pos: 5.5,-18.5 + rot: 3.141592653589793 rad + pos: -1.5,-11.5 parent: 2 - type: AtmosPipeColor - color: '#990000FF' - - uid: 685 + color: '#0055CCFF' + - uid: 454 components: - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,-19.5 + rot: -1.5707963267948966 rad + pos: -3.5,-19.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' @@ -2504,37 +2515,28 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' -- proto: GasPipeStraight - entities: - - uid: 73 + - uid: 547 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,-19.5 + pos: 2.5,-16.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 127 +- proto: GasPipeStraight + entities: + - uid: 3 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,-13.5 + rot: 3.141592653589793 rad + pos: -5.5,-13.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 128 + - uid: 73 components: - type: Transform rot: 1.5707963267948966 rad - pos: 1.5,-13.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 129 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,-15.5 + pos: 7.5,-19.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' @@ -2546,14 +2548,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 158 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,-18.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - uid: 162 components: - type: Transform @@ -2562,14 +2556,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 176 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,-13.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 178 components: - type: Transform @@ -2726,14 +2712,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 273 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,-11.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 281 components: - type: Transform @@ -2741,14 +2719,13 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 283 + - uid: 282 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,-13.5 + pos: 2.5,-18.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#990000FF' - uid: 288 components: - type: Transform @@ -2770,6 +2747,30 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' + - uid: 292 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-19.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 303 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 304 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' - uid: 308 components: - type: Transform @@ -2801,6 +2802,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 316 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-19.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' - uid: 317 components: - type: Transform @@ -2836,6 +2845,22 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' + - uid: 340 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 341 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' - uid: 342 components: - type: Transform @@ -2848,15 +2873,31 @@ entities: components: - type: Transform rot: -1.5707963267948966 rad - pos: -0.5,-15.5 + pos: 1.5,-14.5 parent: 2 - type: AtmosPipeColor - color: '#990000FF' + color: '#0055CCFF' + - uid: 347 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 349 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,-13.5 + rot: -1.5707963267948966 rad + pos: -1.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 350 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-14.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' @@ -2864,47 +2905,54 @@ entities: components: - type: Transform rot: 1.5707963267948966 rad - pos: 2.5,-13.5 + pos: 4.5,-19.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#990000FF' - uid: 352 components: - type: Transform rot: -1.5707963267948966 rad - pos: 0.5,-15.5 + pos: 0.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 353 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-15.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 355 + - uid: 358 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,-13.5 + rot: -1.5707963267948966 rad + pos: 2.5,-14.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 402 + - uid: 383 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,-18.5 + pos: 3.5,-13.5 parent: 2 - type: AtmosPipeColor - color: '#990000FF' - - uid: 423 + color: '#0055CCFF' + - uid: 402 components: - type: Transform rot: -1.5707963267948966 rad - pos: -3.5,-13.5 + pos: -3.5,-14.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 437 + - uid: 403 components: - type: Transform rot: -1.5707963267948966 rad - pos: -2.5,-15.5 + pos: 1.5,-16.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' @@ -2946,13 +2994,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 671 - components: - - type: Transform - pos: -3.5,-16.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - uid: 672 components: - type: Transform @@ -2967,13 +3008,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 677 - components: - - type: Transform - pos: -5.5,-14.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 678 components: - type: Transform @@ -3054,21 +3088,6 @@ entities: color: '#0055CCFF' - proto: GasPipeTJunction entities: - - uid: 179 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,-13.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 182 - components: - - type: Transform - pos: -3.5,-15.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - uid: 206 components: - type: Transform @@ -3107,30 +3126,38 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 292 + - uid: 273 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-15.5 + rot: 1.5707963267948966 rad + pos: -5.5,-14.5 parent: 2 - type: AtmosPipeColor - color: '#990000FF' - - uid: 316 + color: '#0055CCFF' + - uid: 287 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,-16.5 + rot: 3.141592653589793 rad + pos: 3.5,-14.5 parent: 2 - type: AtmosPipeColor - color: '#990000FF' - - uid: 347 + color: '#0055CCFF' + - uid: 339 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,-13.5 + rot: 1.5707963267948966 rad + pos: 5.5,-10.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 355 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' - uid: 359 components: - type: Transform @@ -3139,10 +3166,10 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 422 + - uid: 513 components: - type: Transform - pos: -1.5,-15.5 + pos: -0.5,-16.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' @@ -3156,11 +3183,21 @@ entities: color: '#0055CCFF' - proto: GasPort entities: - - uid: 240 + - uid: 412 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,-11.5 + rot: -1.5707963267948966 rad + pos: 7.5,-10.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 +- proto: GasPressurePump + entities: + - uid: 267 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-10.5 parent: 2 - type: AtmosDevice joinedGrid: 2 @@ -3168,11 +3205,14 @@ entities: color: '#0055CCFF' - proto: GasVentPump entities: - - uid: 266 + - uid: 283 components: - type: Transform - pos: 6.5,-10.5 + pos: 5.5,-9.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 585 - type: AtmosDevice joinedGrid: 2 - type: AtmosPipeColor @@ -3196,6 +3236,18 @@ entities: joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 458 + components: + - type: Transform + pos: -1.5,-10.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 494 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 496 components: - type: Transform @@ -3295,12 +3347,15 @@ entities: joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 353 + - uid: 422 components: - type: Transform rot: 3.141592653589793 rad - pos: -1.5,-16.5 + pos: -0.5,-17.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 588 - type: AtmosDevice joinedGrid: 2 - type: AtmosPipeColor @@ -3476,7 +3531,6 @@ entities: - uid: 98 components: - type: Transform - rot: -1.5707963267948966 rad pos: -7.5,-12.5 parent: 2 - uid: 123 @@ -3494,16 +3548,15 @@ entities: - type: Transform pos: 8.5,-15.5 parent: 2 - - uid: 276 + - uid: 274 components: - type: Transform - pos: 8.5,-23.5 + pos: -1.5,-15.5 parent: 2 - - uid: 298 + - uid: 276 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,-14.5 + pos: 8.5,-23.5 parent: 2 - uid: 302 components: @@ -3513,13 +3566,11 @@ entities: - uid: 330 components: - type: Transform - rot: -1.5707963267948966 rad pos: -7.5,-13.5 parent: 2 - uid: 398 components: - type: Transform - rot: -1.5707963267948966 rad pos: -7.5,-17.5 parent: 2 - uid: 623 @@ -3574,10 +3625,10 @@ entities: parent: 2 - proto: Gyroscope entities: - - uid: 403 + - uid: 266 components: - type: Transform - pos: 7.5,-10.5 + pos: 8.5,-9.5 parent: 2 - proto: HospitalCurtainsOpen entities: @@ -3650,7 +3701,7 @@ entities: parent: 2 - proto: KitchenKnife entities: - - uid: 380 + - uid: 405 components: - type: Transform pos: 5.541848,-15.96916 @@ -3678,12 +3729,12 @@ entities: parent: 2 - proto: LargeBeaker entities: - - uid: 1 + - uid: 232 components: - type: Transform pos: 4.6986766,-15.301495 parent: 2 - - uid: 379 + - uid: 380 components: - type: Transform pos: 4.9903436,-15.44743 @@ -3735,21 +3786,21 @@ entities: - uid: 377 components: - type: Transform - pos: 2.665164,-19.025154 + pos: 2.665164,-18.025154 parent: 2 - proto: OilJarGhee entities: - uid: 376 components: - type: Transform - pos: 2.3039377,-19.24173 + pos: 2.3039377,-18.24173 parent: 2 - proto: OilJarOlive entities: - uid: 365 components: - type: Transform - pos: 2.6987016,-19.387365 + pos: 2.6987016,-18.387365 parent: 2 - proto: PaperBin10 entities: @@ -3760,19 +3811,19 @@ entities: parent: 2 - proto: PortableGeneratorPacmanShuttle entities: - - uid: 409 + - uid: 176 components: - type: Transform - pos: -3.5,-10.5 + pos: -2.5,-11.5 parent: 2 - type: FuelGenerator on: False - type: Physics bodyType: Static - - uid: 411 + - uid: 234 components: - type: Transform - pos: -3.5,-11.5 + pos: -1.5,-11.5 parent: 2 - type: FuelGenerator on: False @@ -3790,6 +3841,11 @@ entities: - type: Transform pos: -8.5,-20.5 parent: 2 + - uid: 226 + components: + - type: Transform + pos: 0.5,-18.5 + parent: 2 - uid: 455 components: - type: Transform @@ -3800,119 +3856,86 @@ entities: - type: Transform pos: -6.5,-22.5 parent: 2 - - uid: 571 - components: - - type: Transform - pos: 0.5,-19.5 - parent: 2 - proto: Poweredlight entities: - uid: 106 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-6.5 parent: 2 - uid: 201 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: 7.5,-17.5 parent: 2 - uid: 258 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 0.5,-21.5 parent: 2 - uid: 389 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-6.5 parent: 2 - uid: 390 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 0.5,-11.5 parent: 2 - uid: 391 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-1.5 parent: 2 - uid: 392 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-5.5 parent: 2 - uid: 393 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 6.5,-8.5 parent: 2 - uid: 395 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 4.5,-13.5 parent: 2 - - uid: 397 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,-17.5 - parent: 2 - uid: 400 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: -5.5,-9.5 parent: 2 - uid: 408 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -0.5,-13.5 parent: 2 - uid: 430 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: -5.5,-12.5 parent: 2 - uid: 578 components: - - type: MetaData - flags: PvsPriority - type: Transform - pos: 9.5,-19.5 + pos: 9.5,-19.5 + parent: 2 + - uid: 662 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-18.5 parent: 2 - proto: PoweredSmallLight entities: @@ -3984,6 +4007,12 @@ entities: parent: 2 - proto: RandomPainting entities: + - uid: 236 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-20.5 + parent: 2 - uid: 664 components: - type: Transform @@ -3994,11 +4023,6 @@ entities: - type: Transform pos: -4.5,-12.5 parent: 2 - - uid: 697 - components: - - type: Transform - pos: 1.5,-19.5 - parent: 2 - proto: RandomPosterAny entities: - uid: 62 @@ -4028,10 +4052,10 @@ entities: parent: 2 - proto: SheetPlasma entities: - - uid: 341 + - uid: 697 components: - type: Transform - pos: -2.5199935,-10.448381 + pos: -2,-10.5 parent: 2 - proto: ShuttersNormalOpen entities: @@ -4316,37 +4340,36 @@ entities: - type: DeviceLinkSink links: - 744 - - uid: 383 + - uid: 385 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,-15.5 + pos: -0.5,-15.5 parent: 2 - type: DeviceLinkSink links: - - 744 - - uid: 385 + - 387 + - uid: 386 components: - type: Transform - pos: -0.5,-14.5 + pos: 0.5,-15.5 parent: 2 - type: DeviceLinkSink links: - 387 - - uid: 386 + - uid: 466 components: - type: Transform - pos: 0.5,-14.5 + rot: -1.5707963267948966 rad + pos: 1.5,-17.5 parent: 2 - type: DeviceLinkSink links: - - 387 + - 744 - proto: ShuttleWindow entities: - uid: 85 components: - type: Transform - rot: -1.5707963267948966 rad pos: -7.5,-13.5 parent: 2 - uid: 187 @@ -4489,27 +4512,24 @@ entities: - type: Transform pos: 8.5,-15.5 parent: 2 - - uid: 297 + - uid: 362 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,-14.5 + pos: 8.5,-16.5 parent: 2 - - uid: 362 + - uid: 401 components: - type: Transform - pos: 8.5,-16.5 + pos: -1.5,-15.5 parent: 2 - uid: 431 components: - type: Transform - rot: -1.5707963267948966 rad pos: -7.5,-12.5 parent: 2 - uid: 432 components: - type: Transform - rot: -1.5707963267948966 rad pos: -7.5,-17.5 parent: 2 - uid: 542 @@ -4692,14 +4712,31 @@ entities: components: - type: Transform rot: 1.5707963267948966 rad - pos: 1.5,-17.5 + pos: 1.5,-18.5 parent: 2 - type: DeviceLinkSource linkedPorts: 313: - Pressed: Toggle - 383: + 466: - Pressed: Toggle +- proto: SignBar + entities: + - uid: 545 + components: + - type: Transform + pos: -1.5,-13.5 + parent: 2 + - uid: 800 + components: + - type: Transform + pos: -4.5,-21.5 + parent: 2 + - uid: 803 + components: + - type: Transform + pos: -7.5,-18.5 + parent: 2 - proto: SignDirectionalFood entities: - uid: 607 @@ -4715,6 +4752,13 @@ entities: rot: 3.141592653589793 rad pos: 4.5,-12.5 parent: 2 +- proto: SignElectricalMed + entities: + - uid: 801 + components: + - type: Transform + pos: -0.5,-11.5 + parent: 2 - proto: SinkWide entities: - uid: 221 @@ -4725,10 +4769,17 @@ entities: parent: 2 - proto: SMESBasic entities: - - uid: 474 + - uid: 459 components: - type: Transform - pos: -2.5,-11.5 + pos: -3.5,-11.5 + parent: 2 +- proto: soda_dispenser + entities: + - uid: 235 + components: + - type: Transform + pos: 0.5,-13.5 parent: 2 - proto: SpawnMobAlexander entities: @@ -4774,10 +4825,10 @@ entities: parent: 2 - proto: SpawnPointServiceWorker entities: - - uid: 412 + - uid: 626 components: - type: Transform - pos: 0.5,-13.5 + pos: 0.5,-14.5 parent: 2 - proto: SprayBottleSpaceCleaner entities: @@ -4786,38 +4837,24 @@ entities: - type: Transform pos: 9.812354,-21.703634 parent: 2 -- proto: SubstationWallBasic +- proto: SubstationBasic entities: - - uid: 338 + - uid: 510 components: - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,-12.5 + pos: -3.5,-10.5 parent: 2 - proto: SuitStorageWallmountEVA entities: - - uid: 458 - components: - - type: Transform - pos: 2.5,-9.5 - parent: 2 - - type: Physics - canCollide: False - uid: 493 components: - type: Transform - pos: 3.5,-9.5 + pos: 2.5,-9.5 parent: 2 - type: Physics canCollide: False - proto: Table entities: - - uid: 3 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-19.5 - parent: 2 - uid: 169 components: - type: Transform @@ -4828,6 +4865,16 @@ entities: - type: Transform pos: 8.5,-8.5 parent: 2 + - uid: 182 + components: + - type: Transform + pos: 2.5,-18.5 + parent: 2 + - uid: 240 + components: + - type: Transform + pos: 3.5,-18.5 + parent: 2 - uid: 363 components: - type: Transform @@ -4875,29 +4922,28 @@ entities: parent: 2 - proto: TableCounterMetal entities: - - uid: 304 + - uid: 305 components: - type: Transform rot: 1.5707963267948966 rad - pos: 1.5,-15.5 + pos: 1.5,-16.5 parent: 2 - - uid: 305 + - uid: 464 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,-16.5 + pos: 1.5,-17.5 parent: 2 - proto: TableCounterWood entities: - - uid: 287 + - uid: 770 components: - type: Transform - pos: 0.5,-14.5 + pos: 0.5,-15.5 parent: 2 - - uid: 350 + - uid: 793 components: - type: Transform - pos: -0.5,-14.5 + pos: -0.5,-15.5 parent: 2 - proto: TableReinforcedGlass entities: @@ -4918,6 +4964,11 @@ entities: - type: Transform pos: -6.5,-9.5 parent: 2 + - uid: 397 + components: + - type: Transform + pos: 0.5,-13.5 + parent: 2 - uid: 424 components: - type: Transform @@ -4953,6 +5004,11 @@ entities: - type: Transform pos: -3.5,-14.5 parent: 2 + - uid: 509 + components: + - type: Transform + pos: -0.5,-13.5 + parent: 2 - proto: Thruster entities: - uid: 105 @@ -5003,7 +5059,7 @@ entities: parent: 2 - proto: VariantCubeBox entities: - - uid: 232 + - uid: 233 components: - type: Transform pos: 4.6436033,-16.34774 @@ -5031,10 +5087,10 @@ entities: parent: 2 - proto: VendingMachineCondiments entities: - - uid: 513 + - uid: 571 components: - type: Transform - pos: -0.5,-14.5 + pos: -0.5,-15.5 parent: 2 - proto: VendingMachineDinnerware entities: @@ -5068,506 +5124,366 @@ entities: entities: - uid: 4 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 3.5,-0.5 parent: 2 - uid: 5 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -2.5,-0.5 parent: 2 - uid: 6 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -2.5,-6.5 parent: 2 - uid: 8 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -1.5,-0.5 parent: 2 - uid: 9 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 3.5,-6.5 parent: 2 - uid: 10 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 2.5,-0.5 parent: 2 - uid: 13 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 3.5,-1.5 parent: 2 - uid: 14 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 3.5,-5.5 parent: 2 - uid: 16 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 2.5,-6.5 parent: 2 - uid: 19 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -1.5,-6.5 parent: 2 - uid: 21 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -2.5,-5.5 parent: 2 - uid: 23 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -2.5,-1.5 parent: 2 - uid: 33 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 1.5,-7.5 parent: 2 - uid: 34 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -0.5,-7.5 parent: 2 - uid: 41 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -7.5,-11.5 parent: 2 - uid: 42 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -6.5,-11.5 parent: 2 - uid: 43 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -4.5,-11.5 parent: 2 - uid: 44 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -4.5,-10.5 parent: 2 - uid: 45 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -4.5,-9.5 parent: 2 - uid: 46 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -4.5,-8.5 parent: 2 - uid: 47 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -5.5,-7.5 parent: 2 - uid: 53 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 6.5,-7.5 parent: 2 - uid: 56 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 9.5,-10.5 parent: 2 - uid: 57 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 5.5,-8.5 parent: 2 - uid: 58 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 4.5,-9.5 parent: 2 - uid: 59 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 1.5,-9.5 parent: 2 - uid: 60 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -0.5,-9.5 parent: 2 - uid: 61 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -3.5,-9.5 parent: 2 - uid: 66 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -4.5,-12.5 parent: 2 - uid: 67 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -3.5,-12.5 parent: 2 - uid: 68 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -2.5,-12.5 parent: 2 - uid: 69 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -1.5,-12.5 parent: 2 - uid: 70 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -0.5,-12.5 parent: 2 - uid: 71 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -0.5,-11.5 parent: 2 - uid: 72 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 0.5,-12.5 parent: 2 + - uid: 74 + components: + - type: Transform + pos: 1.5,-18.5 + parent: 2 - uid: 75 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 4.5,-12.5 parent: 2 - uid: 76 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 4.5,-11.5 parent: 2 - uid: 77 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 5.5,-11.5 parent: 2 - uid: 78 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 6.5,-11.5 parent: 2 - uid: 79 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 7.5,-11.5 parent: 2 - uid: 80 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 8.5,-11.5 parent: 2 - uid: 81 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 8.5,-12.5 parent: 2 - uid: 89 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -8.5,-7.5 parent: 2 - uid: 112 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 1.5,-20.5 parent: 2 - uid: 117 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 2.5,-20.5 parent: 2 - - uid: 119 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 1.5,-19.5 - parent: 2 - uid: 121 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 7.5,-18.5 parent: 2 - uid: 122 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 8.5,-17.5 parent: 2 - uid: 157 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 4.5,-20.5 parent: 2 - uid: 159 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 0.5,-20.5 parent: 2 - uid: 166 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -3.5,-20.5 parent: 2 - - uid: 282 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 1.5,-14.5 - parent: 2 - - uid: 284 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 1.5,-17.5 - parent: 2 - uid: 285 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 1.5,-12.5 parent: 2 - uid: 286 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 5.5,-21.5 parent: 2 + - uid: 298 + components: + - type: Transform + pos: 1.5,-13.5 + parent: 2 - uid: 307 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 5.5,-22.5 parent: 2 - uid: 356 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -2.5,-9.5 parent: 2 - uid: 357 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 9.5,-22.5 parent: 2 - uid: 381 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 9.5,-18.5 parent: 2 - uid: 384 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -4.5,-20.5 parent: 2 + - uid: 474 + components: + - type: Transform + pos: 1.5,-15.5 + parent: 2 - uid: 489 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 2.5,-9.5 parent: 2 - uid: 491 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 3.5,-9.5 parent: 2 - uid: 541 components: - - type: MetaData - flags: PvsPriority - type: Transform - rot: 1.5707963267948966 rad pos: -8.5,-22.5 parent: 2 - uid: 579 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 7.5,-20.5 parent: 2 - uid: 627 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -7.5,-18.5 parent: 2 - uid: 630 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 6.5,-20.5 parent: 2 - uid: 631 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -6.5,-20.5 parent: 2 - uid: 658 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 3.5,-20.5 parent: 2 - uid: 660 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 5.5,-20.5 parent: 2 - uid: 675 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 10.5,-19.5 parent: 2 + - uid: 685 + components: + - type: Transform + pos: -1.5,-13.5 + parent: 2 - uid: 693 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -4.5,-21.5 parent: 2 - uid: 725 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 8.5,-18.5 parent: 2 @@ -5756,17 +5672,17 @@ entities: parent: 2 - proto: WindoorSecure entities: - - uid: 74 + - uid: 423 components: - type: Transform rot: -1.5707963267948966 rad - pos: -1.5,-13.5 + pos: -1.5,-14.5 parent: 2 - proto: Wrench entities: - - uid: 340 + - uid: 804 components: - type: Transform - pos: -2.5408268,-10.469231 + pos: 7.5,-10.5 parent: 2 ... diff --git a/Resources/Maps/_NF/Shuttles/point.yml b/Resources/Maps/_NF/Shuttles/point.yml index 30920107a27..0a89f62071b 100644 --- a/Resources/Maps/_NF/Shuttles/point.yml +++ b/Resources/Maps/_NF/Shuttles/point.yml @@ -6,12 +6,12 @@ tilemap: 20: FloorBrokenWood 71: FloorOldConcrete 72: FloorOldConcreteMono - 90: FloorSteel - 97: FloorSteelDirty - 106: FloorTechMaint2 - 119: FloorWood - 121: Lattice - 122: Plating + 92: FloorSteel + 99: FloorSteelDirty + 108: FloorTechMaint2 + 121: FloorWood + 124: Lattice + 125: Plating entities: - proto: "" entities: @@ -26,19 +26,19 @@ entities: chunks: 0,0: ind: 0,0 - tiles: YQAAAAAAegAAAAAAYQAAAAAAdwAAAAAAFAAAAAAAdwAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAFAAAAAAAFAAAAAAAdwAAAAAAFAAAAAAARwAAAAAASAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAASAAAAAAARwAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAWgAAAAAAegAAAAAAeQAAAAAAWgAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWgAAAAAAeQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAAAegAAAAAAegAAAAAAWgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWgAAAAAAYQAAAAAAWgAAAAAAYQAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAagAAAAAAWgAAAAAAYQAAAAAAegAAAAAAYQAAAAAAegAAAAAAegAAAAAAeQAAAAAAWgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAagAAAAAAegAAAAAAegAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: YwAAAAAAfQAAAAAAYwAAAAAAeQAAAAACFAAAAAAEeQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAFAAAAAAEFAAAAAAAeQAAAAACFAAAAAAERwAAAAACSAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAASAAAAAACRwAAAAACfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAXAAAAAAAfQAAAAAAfAAAAAAAXAAAAAADfAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAXAAAAAAAfAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfAAAAAAAfAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAXAAAAAAAfQAAAAAAfQAAAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAABYwAAAAAAXAAAAAAAYwAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbAAAAAAAXAAAAAAAYwAAAAAAfQAAAAAAYwAAAAAAfQAAAAAAfQAAAAAAfAAAAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbAAAAAAAfQAAAAAAfQAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAfQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -1,0: ind: -1,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWgAAAAAAeQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAeQAAAAAAWgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAWgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAeQAAAAAAWgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWgAAAAAAeQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAagAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAagAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAADfAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfAAAAAAAXAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAXAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfAAAAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAfAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAbAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfQAAAAAAbAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 0,-1: ind: 0,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -1,-1: ind: -1,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAA version: 6 - type: Broadphase - type: Physics @@ -348,7 +348,7 @@ entities: 0: 49152 1: 11878 -1,2: - 0: 36044 + 0: 36556 1: 16418 0,-1: 0: 61440 @@ -401,8 +401,6 @@ entities: entities: - uid: 157 components: - - type: MetaData - flags: InContainer - type: Transform parent: 281 - type: InstantAction @@ -412,14 +410,13 @@ entities: - uid: 4 components: - type: Transform + rot: 3.141592653589793 rad pos: 1.5,7.5 parent: 1 - type: DeviceList devices: - - 159 - - 175 - - 245 - - 180 + - 115 + - 9 - type: AtmosDevice joinedGrid: 1 - uid: 58 @@ -429,17 +426,14 @@ entities: parent: 1 - type: DeviceList devices: - - 114 - - 172 - - 170 - - 177 - 104 - - 210 + - 116 + - 162 - type: AtmosDevice joinedGrid: 1 - proto: AirCanister entities: - - uid: 208 + - uid: 45 components: - type: Transform pos: -0.5,8.5 @@ -457,60 +451,22 @@ entities: entities: - uid: 16 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 3.5,6.5 parent: 1 -- proto: AirSensor - entities: - - uid: 209 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,9.5 - parent: 1 - - uid: 210 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,1.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 58 - - uid: 245 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,9.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 4 - proto: APCBasic entities: - - uid: 13 + - uid: 24 components: - type: Transform - pos: -1.5,7.5 + pos: 4.5,11.5 parent: 1 - uid: 64 components: - type: Transform pos: 2.5,2.5 parent: 1 - - uid: 115 - components: - - type: Transform - pos: 8.5,1.5 - parent: 1 - - uid: 116 - components: - - type: Transform - pos: 4.5,11.5 - parent: 1 - proto: AtmosDeviceFanTiny entities: - uid: 126 @@ -859,11 +815,6 @@ entities: - type: Transform pos: 0.5,0.5 parent: 1 - - uid: 78 - components: - - type: Transform - pos: 0.5,-0.5 - parent: 1 - uid: 79 components: - type: Transform @@ -882,47 +833,7 @@ entities: - uid: 83 components: - type: Transform - pos: 7.5,1.5 - parent: 1 - - uid: 84 - components: - - type: Transform - pos: 7.5,2.5 - parent: 1 - - uid: 85 - components: - - type: Transform - pos: 7.5,3.5 - parent: 1 - - uid: 86 - components: - - type: Transform - pos: 3.5,0.5 - parent: 1 - - uid: 87 - components: - - type: Transform - pos: 2.5,0.5 - parent: 1 - - uid: 135 - components: - - type: Transform - pos: 8.5,1.5 - parent: 1 - - uid: 136 - components: - - type: Transform - pos: 7.5,0.5 - parent: 1 - - uid: 137 - components: - - type: Transform - pos: 7.5,-0.5 - parent: 1 - - uid: 138 - components: - - type: Transform - pos: 8.5,-0.5 + pos: 1.5,8.5 parent: 1 - uid: 147 components: @@ -949,11 +860,6 @@ entities: - type: Transform pos: 3.5,8.5 parent: 1 - - uid: 152 - components: - - type: Transform - pos: 3.5,9.5 - parent: 1 - uid: 153 components: - type: Transform @@ -974,41 +880,16 @@ entities: - type: Transform pos: -0.5,9.5 parent: 1 - - uid: 162 - components: - - type: Transform - pos: 5.5,11.5 - parent: 1 - - uid: 169 - components: - - type: Transform - pos: 0.5,10.5 - parent: 1 - - uid: 257 + - uid: 175 components: - type: Transform - pos: -1.5,7.5 + pos: 6.5,1.5 parent: 1 - uid: 296 components: - type: Transform pos: 5.5,9.5 parent: 1 - - uid: 297 - components: - - type: Transform - pos: 6.5,9.5 - parent: 1 - - uid: 298 - components: - - type: Transform - pos: 7.5,9.5 - parent: 1 - - uid: 299 - components: - - type: Transform - pos: 8.5,9.5 - parent: 1 - uid: 300 components: - type: Transform @@ -1024,31 +905,11 @@ entities: - type: Transform pos: -1.5,2.5 parent: 1 - - uid: 303 - components: - - type: Transform - pos: -1.5,3.5 - parent: 1 - - uid: 304 - components: - - type: Transform - pos: -1.5,4.5 - parent: 1 - uid: 305 components: - type: Transform pos: -0.5,8.5 parent: 1 - - uid: 306 - components: - - type: Transform - pos: -1.5,8.5 - parent: 1 - - uid: 308 - components: - - type: Transform - pos: -2.5,7.5 - parent: 1 - proto: CableHV entities: - uid: 10 @@ -1093,21 +954,6 @@ entities: parent: 1 - proto: CableMV entities: - - uid: 24 - components: - - type: Transform - pos: 2.5,8.5 - parent: 1 - - uid: 32 - components: - - type: Transform - pos: 1.5,8.5 - parent: 1 - - uid: 37 - components: - - type: Transform - pos: 0.5,8.5 - parent: 1 - uid: 65 components: - type: Transform @@ -1133,40 +979,10 @@ entities: - type: Transform pos: 2.5,2.5 parent: 1 - - uid: 129 - components: - - type: Transform - pos: 3.5,1.5 - parent: 1 - - uid: 130 - components: - - type: Transform - pos: 4.5,1.5 - parent: 1 - - uid: 131 - components: - - type: Transform - pos: 5.5,1.5 - parent: 1 - - uid: 132 - components: - - type: Transform - pos: 6.5,1.5 - parent: 1 - - uid: 133 - components: - - type: Transform - pos: 7.5,1.5 - parent: 1 - - uid: 134 - components: - - type: Transform - pos: 8.5,1.5 - parent: 1 - - uid: 142 + - uid: 84 components: - type: Transform - pos: 3.5,8.5 + pos: 4.5,7.5 parent: 1 - uid: 143 components: @@ -1203,21 +1019,6 @@ entities: - type: Transform pos: 3.5,5.5 parent: 1 - - uid: 212 - components: - - type: Transform - pos: -0.5,8.5 - parent: 1 - - uid: 319 - components: - - type: Transform - pos: -1.5,8.5 - parent: 1 - - uid: 320 - components: - - type: Transform - pos: -1.5,7.5 - parent: 1 - proto: Chair entities: - uid: 284 @@ -1425,6 +1226,8 @@ entities: pos: 1.5,1.5 parent: 1 - type: DeviceNetwork + configurators: + - invalid deviceLists: - 58 - proto: FirelockEdge @@ -1435,9 +1238,6 @@ entities: rot: -1.5707963267948966 rad pos: 1.5,10.5 parent: 1 - - type: DeviceNetwork - deviceLists: - - 4 - proto: FirelockFrame entities: - uid: 11 @@ -1461,391 +1261,248 @@ entities: parent: 1 - proto: GasPassiveVent entities: - - uid: 272 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,6.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - type: AtmosPipeColor - color: '#990000FF' -- proto: GasPipeBend - entities: - - uid: 5 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,0.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 9 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,9.5 - parent: 1 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 178 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,2.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 179 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,2.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 183 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,0.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 192 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,2.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 193 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,2.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 195 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,2.5 - parent: 1 - - uid: 197 - components: - - type: Transform - pos: 8.5,1.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 207 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,9.5 - parent: 1 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 213 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,0.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 214 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,1.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 215 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,0.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 216 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,-0.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 224 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,-0.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' -- proto: GasPipeStraight - entities: - - uid: 60 - components: - - type: Transform - pos: 3.5,4.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 69 - components: - - type: Transform - pos: 3.5,5.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 181 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,1.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 184 + - uid: 86 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,1.5 + pos: -2.5,10.5 parent: 1 + - type: AtmosDevice + joinedGrid: 1 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 185 + color: '#990000FF' +- proto: GasPipeBend + entities: + - uid: 69 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,1.5 + rot: 3.141592653589793 rad + pos: -2.5,4.5 parent: 1 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 187 + color: '#990000FF' + - uid: 78 components: - type: Transform - pos: 0.5,7.5 + pos: -1.5,4.5 parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 189 + - uid: 131 components: - type: Transform - pos: 0.5,5.5 + rot: 1.5707963267948966 rad + pos: 3.5,9.5 parent: 1 - type: AtmosPipeColor - color: '#990000FF' - - uid: 190 + color: '#0055CCFF' + - uid: 136 components: - type: Transform - pos: 0.5,4.5 + rot: 3.141592653589793 rad + pos: -1.5,1.5 parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 191 + - uid: 152 components: - type: Transform - pos: 0.5,3.5 + pos: 2.5,1.5 parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 196 + - uid: 169 components: - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,1.5 + rot: -1.5707963267948966 rad + pos: 4.5,9.5 parent: 1 - type: AtmosPipeColor - color: '#990000FF' - - uid: 198 + color: '#0055CCFF' + - uid: 170 components: - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,2.5 + pos: 4.5,1.5 parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 202 + - uid: 172 components: - type: Transform rot: 3.141592653589793 rad - pos: 3.5,6.5 + pos: 3.5,1.5 parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 217 +- proto: GasPipeStraight + entities: + - uid: 5 components: - type: Transform rot: 1.5707963267948966 rad - pos: 7.5,0.5 + pos: -0.5,8.5 parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 218 + - uid: 8 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,-0.5 + rot: -1.5707963267948966 rad + pos: -1.5,8.5 parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 219 + - uid: 32 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,-0.5 + pos: -2.5,5.5 parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 220 + - uid: 37 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,-0.5 + pos: -2.5,6.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 87 + components: + - type: Transform + pos: -1.5,3.5 parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 221 + - uid: 114 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,-0.5 + pos: -1.5,2.5 parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 223 + - uid: 129 components: - type: Transform rot: 1.5707963267948966 rad - pos: 0.5,-0.5 + pos: 1.5,1.5 parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 226 + - uid: 132 components: - type: Transform - pos: 3.5,3.5 + rot: 3.141592653589793 rad + pos: 3.5,5.5 parent: 1 - type: AtmosPipeColor color: '#0055CCFF' -- proto: GasPipeTJunction - entities: - - uid: 8 + - uid: 133 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,0.5 + rot: 3.141592653589793 rad + pos: 3.5,4.5 parent: 1 - type: AtmosPipeColor - color: '#990000FF' - - uid: 45 + color: '#0055CCFF' + - uid: 134 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,6.5 + rot: 1.5707963267948966 rad + pos: -0.5,1.5 parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 173 + - uid: 137 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,7.5 + rot: 3.141592653589793 rad + pos: 3.5,3.5 parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 182 + - uid: 138 components: - type: Transform - pos: 4.5,1.5 + rot: 3.141592653589793 rad + pos: 3.5,6.5 parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 186 + - uid: 142 components: - type: Transform rot: 3.141592653589793 rad - pos: 3.5,1.5 + pos: 3.5,2.5 parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 222 + - uid: 171 components: - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,-0.5 + rot: 1.5707963267948966 rad + pos: 0.5,1.5 parent: 1 - type: AtmosPipeColor color: '#990000FF' -- proto: GasPort - entities: - - uid: 206 + - uid: 176 components: - type: Transform - pos: 4.5,10.5 + pos: -2.5,7.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor - color: '#0335FCFF' -- proto: GasPressurePump + color: '#990000FF' +- proto: GasPipeTJunction entities: - - uid: 188 + - uid: 46 components: - type: Transform - pos: 3.5,8.5 + rot: 1.5707963267948966 rad + pos: 3.5,7.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0055CCFF' -- proto: GasVentPump - entities: - - uid: 114 + - uid: 173 components: - type: Transform rot: 1.5707963267948966 rad - pos: 0.5,1.5 + pos: -2.5,8.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' +- proto: GasPort + entities: + - uid: 130 + components: + - type: Transform + pos: 4.5,10.5 parent: 1 - - type: DeviceNetwork - deviceLists: - - 58 - type: AtmosDevice joinedGrid: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 170 +- proto: GasPressurePump + entities: + - uid: 13 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,0.5 + rot: 3.141592653589793 rad + pos: -2.5,9.5 parent: 1 - - type: DeviceNetwork - deviceLists: - - 58 - type: AtmosDevice joinedGrid: 1 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 171 + color: '#990000FF' + - uid: 60 components: - type: Transform - pos: 7.5,3.5 + pos: 3.5,8.5 parent: 1 - type: AtmosDevice joinedGrid: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 180 +- proto: GasVentPump + entities: + - uid: 9 components: - type: Transform rot: -1.5707963267948966 rad @@ -1858,24 +1515,27 @@ entities: joinedGrid: 1 - type: AtmosPipeColor color: '#0055CCFF' -- proto: GasVentScrubber - entities: - - uid: 172 + - uid: 116 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,0.5 + rot: 3.141592653589793 rad + pos: 4.5,0.5 parent: 1 - type: DeviceNetwork + configurators: + - invalid deviceLists: - 58 - type: AtmosDevice joinedGrid: 1 - type: AtmosPipeColor - color: '#990000FF' - - uid: 175 + color: '#0055CCFF' +- proto: GasVentScrubber + entities: + - uid: 115 components: - type: Transform + rot: -1.5707963267948966 rad pos: 0.5,8.5 parent: 1 - type: DeviceNetwork @@ -1885,23 +1545,15 @@ entities: joinedGrid: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 176 + - uid: 162 components: - type: Transform - rot: -1.5707963267948966 rad + rot: 3.141592653589793 rad pos: 2.5,0.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 177 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,1.5 - parent: 1 - type: DeviceNetwork + configurators: + - invalid deviceLists: - 58 - type: AtmosDevice @@ -2037,17 +1689,16 @@ entities: - type: Transform pos: 0.5,10.5 parent: 1 - - uid: 46 + - uid: 52 components: - type: Transform rot: 1.5707963267948966 rad - pos: -1.5,8.5 + pos: -0.5,1.5 parent: 1 - - uid: 52 + - uid: 135 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,1.5 + pos: -1.5,8.5 parent: 1 - uid: 168 components: @@ -2228,61 +1879,45 @@ entities: entities: - uid: 237 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 3.5,0.5 parent: 1 - uid: 238 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 0.5,1.5 parent: 1 - uid: 239 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: 7.5,1.5 parent: 1 - uid: 240 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 4.5,10.5 parent: 1 - uid: 241 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: -0.5,10.5 parent: 1 - uid: 242 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 2.5,5.5 parent: 1 - uid: 291 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: -2.5,7.5 parent: 1 - uid: 292 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: -1.5,3.5 @@ -2304,6 +1939,12 @@ entities: parent: 1 - proto: RandomSpawner entities: + - uid: 85 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,9.5 + parent: 1 - uid: 233 components: - type: Transform @@ -2314,11 +1955,6 @@ entities: - type: Transform pos: 1.5,8.5 parent: 1 - - uid: 235 - components: - - type: Transform - pos: 3.5,9.5 - parent: 1 - proto: ResearchAndDevelopmentServer entities: - uid: 110 @@ -2385,8 +2021,6 @@ entities: entities: - uid: 253 components: - - type: MetaData - flags: InContainer - type: Transform parent: 252 - type: Stack @@ -2435,13 +2069,6 @@ entities: - type: Transform pos: 3.5,1.5 parent: 1 -- proto: SpawnPointScientist - entities: - - uid: 261 - components: - - type: Transform - pos: 2.5,9.5 - parent: 1 - proto: SubstationBasic entities: - uid: 55 @@ -2510,45 +2137,33 @@ entities: entities: - uid: 22 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: -1.5,7.5 parent: 1 - uid: 36 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 4.5,6.5 parent: 1 - uid: 38 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 5.5,7.5 parent: 1 - uid: 41 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 1.5,7.5 parent: 1 - uid: 211 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 6.5,0.5 parent: 1 - uid: 273 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 1.5,5.5 @@ -2582,85 +2197,61 @@ entities: entities: - uid: 3 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -0.5,-0.5 parent: 1 - uid: 6 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 1.5,2.5 parent: 1 - uid: 7 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 0.5,2.5 parent: 1 - uid: 12 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 3.5,-0.5 parent: 1 - uid: 33 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 5.5,2.5 parent: 1 - uid: 35 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 4.5,2.5 parent: 1 - uid: 44 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -1.5,10.5 parent: 1 - uid: 47 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -1.5,9.5 parent: 1 - uid: 49 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 4.5,11.5 parent: 1 - uid: 50 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 0.5,11.5 parent: 1 - uid: 117 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 2.5,6.5 parent: 1 - uid: 282 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: -2.5,3.5 @@ -2669,60 +2260,44 @@ entities: entities: - uid: 2 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 8.5,1.5 parent: 1 - uid: 14 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 5.5,-0.5 parent: 1 - uid: 18 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 8.5,0.5 parent: 1 - uid: 161 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 6.5,2.5 parent: 1 - uid: 174 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 2.5,-0.5 parent: 1 - uid: 229 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 1.5,0.5 parent: 1 - uid: 255 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 2.5,2.5 parent: 1 - uid: 311 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 4.5,-0.5 parent: 1 @@ -2837,8 +2412,6 @@ entities: entities: - uid: 307 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 6.5,1.5 parent: 1 diff --git a/Resources/Prototypes/Access/misc.yml b/Resources/Prototypes/Access/misc.yml index 81ff4fcf5d5..7c88b3183a1 100644 --- a/Resources/Prototypes/Access/misc.yml +++ b/Resources/Prototypes/Access/misc.yml @@ -17,6 +17,7 @@ - Brig - Lawyer - Engineering + - Mail # Frontier - Medical - Mercenary # Frontier - Pilot # Frontier diff --git a/Resources/Prototypes/Catalog/VendingMachines/Inventories/engivend.yml b/Resources/Prototypes/Catalog/VendingMachines/Inventories/engivend.yml index 292d93ab452..0c11ae10c2e 100644 --- a/Resources/Prototypes/Catalog/VendingMachines/Inventories/engivend.yml +++ b/Resources/Prototypes/Catalog/VendingMachines/Inventories/engivend.yml @@ -11,3 +11,5 @@ GeigerCounter: 10 # Frontier PowerCellMedium: 15 # NetworkConfigurator: 15 + ShipyardRCD: 10 + ShipyardRCDAmmo: 20 diff --git a/Resources/Prototypes/Catalog/VendingMachines/Inventories/tankdispenser.yml b/Resources/Prototypes/Catalog/VendingMachines/Inventories/tankdispenser.yml index 92b23af20ac..58963623b58 100644 --- a/Resources/Prototypes/Catalog/VendingMachines/Inventories/tankdispenser.yml +++ b/Resources/Prototypes/Catalog/VendingMachines/Inventories/tankdispenser.yml @@ -3,6 +3,8 @@ startingInventory: # EmergencyOxygenTankFilled: 5 # ExtendedEmergencyOxygenTankFilled: 5 + AirTankFilled: 10 + DoubleEmergencyAirTankFilled: 10 OxygenTankFilled: 10 DoubleEmergencyOxygenTankFilled: 10 # EmergencyNitrogenTankFilled: 5 @@ -16,5 +18,6 @@ PlasmaTankFilled: 10 OxygenTankFilled: 10 emaggedInventory: + DoubleEmergencyAirTankFilled: 1 DoubleEmergencyOxygenTankFilled: 1 DoubleEmergencyNitrogenTankFilled: 1 diff --git a/Resources/Prototypes/DeltaV/Body/Organs/harpy.yml b/Resources/Prototypes/DeltaV/Body/Organs/harpy.yml new file mode 100644 index 00000000000..2d47ecd352d --- /dev/null +++ b/Resources/Prototypes/DeltaV/Body/Organs/harpy.yml @@ -0,0 +1,34 @@ +- type: entity + id: OrganHarpyLungs + parent: BaseHumanOrgan + name: lungs + description: "An advanced pair of avian lungs. Filters oxygen by way of moving air constantly through air sacs." + components: + - type: Sprite + layers: + - state: lung-l + - state: lung-r + - type: Lung + - type: Metabolizer + updateFrequency: 2.0 + removeEmpty: true + solutionOnBody: false + solution: "Lung" + metabolizerTypes: [ Human ] + groups: + - id: Gas + rateModifier: 200.0 + - type: SolutionContainerManager + solutions: + organ: + reagents: + - ReagentId: Nutriment + Quantity: 10 + Lung: + maxVol: 100.0 + canReact: false + food: + maxVol: 5 + reagents: + - ReagentId: UncookedAnimalProteins + Quantity: 5 diff --git a/Resources/Prototypes/DeltaV/Body/Parts/harpy.yml b/Resources/Prototypes/DeltaV/Body/Parts/harpy.yml new file mode 100644 index 00000000000..358cb1de11f --- /dev/null +++ b/Resources/Prototypes/DeltaV/Body/Parts/harpy.yml @@ -0,0 +1,186 @@ +- type: entity + id: PartHarpy + parent: BaseItem + name: "harpy body part" + abstract: true + components: + - type: Damageable + damageContainer: Biological + - type: BodyPart + - type: ContainerContainer + containers: + bodypart: !type:Container + ents: [] + - type: StaticPrice #DynamicPrice + price: 100 + - type: Tag + tags: + - Trash + +- type: entity + id: TorsoHarpy + name: "harpy torso" + parent: PartHarpy + components: + - type: Sprite + netsync: false + sprite: DeltaV/Mobs/Species/Harpy/parts.rsi + state: "torso_m" + - type: Icon + sprite: DeltaV/Mobs/Species/Harpy/parts.rsi + state: "torso_m" + - type: BodyPart + partType: Torso + +- type: entity + id: HeadHarpy + name: "harpy head" + parent: PartHarpy + components: + - type: Sprite + netsync: false + sprite: DeltaV/Mobs/Species/Harpy/parts.rsi + state: "head_m" + - type: Icon + sprite: DeltaV/Mobs/Species/Harpy/parts.rsi + state: "head_m" + - type: BodyPart + partType: Head + vital: true + - type: Input + context: "ghost" + - type: InputMover + - type: GhostOnMove + - type: Tag + tags: + - Head + +- type: entity + id: LeftArmHarpy + name: "left harpy arm" + parent: PartHarpy + components: + - type: Sprite + netsync: false + sprite: DeltaV/Mobs/Species/Harpy/parts.rsi + state: "l_arm" + - type: Icon + sprite: DeltaV/Mobs/Species/Harpy/parts.rsi + state: "l_arm" + - type: BodyPart + partType: Arm + symmetry: Left + +- type: entity + id: RightArmHarpy + name: "right harpy arm" + parent: PartHarpy + components: + - type: Sprite + netsync: false + sprite: DeltaV/Mobs/Species/Harpy/parts.rsi + state: "r_arm" + - type: Icon + sprite: DeltaV/Mobs/Species/Harpy/parts.rsi + state: "r_arm" + - type: BodyPart + partType: Arm + symmetry: Right + +- type: entity + id: LeftHandHarpy + name: "left harpy hand" + parent: PartHarpy + components: + - type: Sprite + netsync: false + sprite: DeltaV/Mobs/Species/Harpy/parts.rsi + state: "l_hand" + - type: Icon + sprite: DeltaV/Mobs/Species/Harpy/parts.rsi + state: "l_hand" + - type: BodyPart + partType: Hand + symmetry: Left + +- type: entity + id: RightHandHarpy + name: "right harpy hand" + parent: PartHarpy + components: + - type: Sprite + netsync: false + sprite: DeltaV/Mobs/Species/Harpy/parts.rsi + state: "r_hand" + - type: Icon + sprite: DeltaV/Mobs/Species/Harpy/parts.rsi + state: "r_hand" + - type: BodyPart + partType: Hand + symmetry: Right + +- type: entity + id: LeftLegHarpy + name: "left harpy leg" + parent: PartHarpy + components: + - type: Sprite + netsync: false + sprite: DeltaV/Mobs/Species/Harpy/parts.rsi + state: "l_leg" + - type: Icon + sprite: DeltaV/Mobs/Species/Harpy/parts.rsi + state: "l_leg" + - type: BodyPart + partType: Leg + symmetry: Left + - type: MovementBodyPart + +- type: entity + id: RightLegHarpy + name: "right harpy leg" + parent: PartHarpy + components: + - type: Sprite + netsync: false + sprite: DeltaV/Mobs/Species/Harpy/parts.rsi + state: "r_leg" + - type: Icon + sprite: DeltaV/Mobs/Species/Harpy/parts.rsi + state: "r_leg" + - type: BodyPart + partType: Leg + symmetry: Right + - type: MovementBodyPart + +- type: entity + id: LeftFootHarpy + name: "left harpy foot" + parent: PartHarpy + components: + - type: Sprite + netsync: false + sprite: DeltaV/Mobs/Species/Harpy/parts.rsi + state: "l_foot" + - type: Icon + sprite: DeltaV/Mobs/Species/Harpy/parts.rsi + state: "l_foot" + - type: BodyPart + partType: Foot + symmetry: Left + +- type: entity + id: RightFootHarpy + name: "right harpy foot" + parent: PartHarpy + components: + - type: Sprite + netsync: false + sprite: DeltaV/Mobs/Species/Harpy/parts.rsi + state: "r_foot" + - type: Icon + sprite: DeltaV/Mobs/Species/Harpy/parts.rsi + state: "r_foot" + - type: BodyPart + partType: Foot + symmetry: Right diff --git a/Resources/Prototypes/DeltaV/Body/Prototypes/harpy.yml b/Resources/Prototypes/DeltaV/Body/Prototypes/harpy.yml new file mode 100644 index 00000000000..5b3615c55d8 --- /dev/null +++ b/Resources/Prototypes/DeltaV/Body/Prototypes/harpy.yml @@ -0,0 +1,50 @@ +- type: body + id: Harpy + name: "harpy" + root: torso + slots: + head: + part: HeadHarpy + connections: + - torso + organs: + brain: OrganHumanBrain + eyes: OrganHumanEyes + torso: + part: TorsoHarpy + connections: + - left arm + - right arm + - left leg + - right leg + organs: + heart: OrganHumanHeart + lungs: OrganHarpyLungs + stomach: OrganAnimalStomach + liver: OrganAnimalLiver + kidneys: OrganAnimalKidneys + right arm: + part: RightArmHarpy + connections: + - right hand + left arm: + part: LeftArmHarpy + connections: + - left hand + right hand: + part: RightHandHarpy + left hand: + part: LeftHandHarpy + right leg: + part: RightLegHarpy + connections: + - right foot + left leg: + part: LeftLegHarpy + connections: + - left foot + right foot: + part: RightFootHarpy + left foot: + part: LeftFootHarpy + diff --git a/Resources/Prototypes/DeltaV/Damage/modifier_sets.yml b/Resources/Prototypes/DeltaV/Damage/modifier_sets.yml index 3df356598e2..2622c518e1d 100644 --- a/Resources/Prototypes/DeltaV/Damage/modifier_sets.yml +++ b/Resources/Prototypes/DeltaV/Damage/modifier_sets.yml @@ -4,3 +4,10 @@ Cold: 0.8 Heat: 1.3 Poison: 0.9 + +- type: damageModifierSet + id: Harpy + coefficients: + Blunt: 1.15 + Slash: 1.15 + Piercing: 1.15 diff --git a/Resources/Prototypes/DeltaV/Entities/Mobs/Customization/Markings/harpy.yml b/Resources/Prototypes/DeltaV/Entities/Mobs/Customization/Markings/harpy.yml new file mode 100644 index 00000000000..9118692a082 --- /dev/null +++ b/Resources/Prototypes/DeltaV/Entities/Mobs/Customization/Markings/harpy.yml @@ -0,0 +1,229 @@ +# All the Harpy customization + +# Ears Markings +- type: marking + id: HarpyWingDefault + bodyPart: RArm + markingCategory: Arms + speciesRestriction: [Harpy] + coloring: + default: + type: + !type:CategoryColoring + category: Hair + fallbackTypes: + - !type:SimpleColoring + color: "#964b00" + sprites: + - sprite: DeltaV/Mobs/Customization/Harpy/harpy_wings.rsi + state: harpy + +- type: marking + id: HarpyWingClassic + bodyPart: RArm + markingCategory: Arms + speciesRestriction: [Harpy] + coloring: + default: + type: + !type:CategoryColoring + category: Hair + fallbackTypes: + - !type:SimpleColoring + color: "#964b00" + sprites: + - sprite: DeltaV/Mobs/Customization/Harpy/harpy_wings.rsi + state: classicharpy + +- type: marking + id: HarpyWingFolded + bodyPart: RArm + markingCategory: Arms + speciesRestriction: [Harpy] + coloring: + default: + type: + !type:CategoryColoring + category: Hair + fallbackTypes: + - !type:SimpleColoring + color: "#964b00" + sprites: + - sprite: DeltaV/Mobs/Customization/Harpy/harpy_wings.rsi + state: harpyfolded + +- type: marking + id: HarpyEarsDefault + bodyPart: Head + markingCategory: HeadTop + speciesRestriction: [Harpy] + coloring: + default: + type: + !type:CategoryColoring + category: Hair + fallbackTypes: + - !type:SimpleColoring + color: "#964b00" + sprites: + - sprite: DeltaV/Mobs/Customization/Harpy/harpy_ears.rsi + state: harpy_ears_default + +- type: marking + id: HarpyTailPhoenix + bodyPart: Tail + markingCategory: Tail + speciesRestriction: [Harpy] + coloring: + default: + type: + !type:CategoryColoring + category: Hair + fallbackTypes: + - !type:SimpleColoring + color: "#964b00" + sprites: + - sprite: DeltaV/Mobs/Customization/Harpy/harpy_tails.rsi + state: phoenix_tail + +- type: marking + id: HarpyTailRooster + bodyPart: Tail + markingCategory: Tail + speciesRestriction: [Harpy] + coloring: + default: + type: + !type:CategoryColoring + category: Hair + fallbackTypes: + - !type:SimpleColoring + sprites: + - sprite: DeltaV/Mobs/Customization/Harpy/harpy_tails.rsi + state: rooster_tail + + +- type: marking + id: HarpyTailFinch + bodyPart: Tail + markingCategory: Tail + speciesRestriction: [Harpy] + coloring: + default: + type: + !type:CategoryColoring + category: Hair + fallbackTypes: + - !type:SimpleColoring + sprites: + - sprite: DeltaV/Mobs/Customization/Harpy/harpy_tailsx72.rsi + state: finch_tail + +- type: marking + id: HarpyWing2ToneClassic + bodyPart: RArm + markingCategory: Arms + speciesRestriction: [Harpy] + sprites: + - sprite: DeltaV/Mobs/Customization/Harpy/harpy_wings.rsi + state: harpy2tone1 + - sprite: DeltaV/Mobs/Customization/Harpy/harpy_wings.rsi + state: harpy2tone2 + +- type: marking + id: HarpyWing3ToneClassic + bodyPart: RArm + markingCategory: Arms + speciesRestriction: [Harpy] + sprites: + - sprite: DeltaV/Mobs/Customization/Harpy/harpy_wings.rsi + state: harpy3tone1 + - sprite: DeltaV/Mobs/Customization/Harpy/harpy_wings.rsi + state: harpy3tone2 + - sprite: DeltaV/Mobs/Customization/Harpy/harpy_wings.rsi + state: harpy3tone3 + +- type: marking + id: HarpyWingSpeckledClassic + bodyPart: RArm + markingCategory: Arms + speciesRestriction: [Harpy] + sprites: + - sprite: DeltaV/Mobs/Customization/Harpy/harpy_wings.rsi + state: harpyspeckled1 + - sprite: DeltaV/Mobs/Customization/Harpy/harpy_wings.rsi + state: harpyspeckled2 + +- type: marking + id: HarpyWingUndertoneClassic + bodyPart: RArm + markingCategory: Arms + speciesRestriction: [Harpy] + sprites: + - sprite: DeltaV/Mobs/Customization/Harpy/harpy_wings.rsi + state: harpyundertone1 + - sprite: DeltaV/Mobs/Customization/Harpy/harpy_wings.rsi + state: harpyundertone2 + +- type: marking + id: HarpyWingTipsClassic + bodyPart: RArm + markingCategory: Arms + speciesRestriction: [Harpy] + sprites: + - sprite: DeltaV/Mobs/Customization/Harpy/harpy_wings.rsi + state: harpywingtip1 + - sprite: DeltaV/Mobs/Customization/Harpy/harpy_wings.rsi + state: harpywingtip2 + +- type: marking + id: HarpyChestDefault + bodyPart: Chest + markingCategory: Chest + speciesRestriction: [Harpy] + coloring: + default: + type: + !type:CategoryColoring + category: Hair + fallbackTypes: + - !type:SimpleColoring + color: "#964b00" + sprites: + - sprite: DeltaV/Mobs/Customization/Harpy/harpy_chest.rsi + state: upper + - sprite: DeltaV/Mobs/Customization/Harpy/harpy_chest.rsi + state: lower + +- type: marking + id: HarpyLegsDefault + bodyPart: LLeg + markingCategory: Legs + speciesRestriction: [Harpy] + coloring: + default: + type: + !type:CategoryColoring + category: Hair + fallbackTypes: + - !type:SimpleColoring + color: "#964b00" + sprites: + - sprite: DeltaV/Mobs/Customization/Harpy/harpy_legs.rsi + state: thighs + +- type: marking + id: HarpyFeetDefault + bodyPart: RFoot + markingCategory: Legs + speciesRestriction: [Harpy] + coloring: + default: + fallbackTypes: + - !type:SimpleColoring + color: "#964b00" + sprites: + - sprite: DeltaV/Mobs/Customization/Harpy/harpy_legs.rsi + state: feet + - sprite: DeltaV/Mobs/Customization/Harpy/harpy_legs.rsi + state: talons diff --git a/Resources/Prototypes/DeltaV/Entities/Mobs/Player/harpy.yml b/Resources/Prototypes/DeltaV/Entities/Mobs/Player/harpy.yml new file mode 100644 index 00000000000..e2541def035 --- /dev/null +++ b/Resources/Prototypes/DeltaV/Entities/Mobs/Player/harpy.yml @@ -0,0 +1,28 @@ +- type: entity + save: false + name: Urist McHarpy + parent: MobHarpyBase + id: MobHarpy + components: + - type: CombatMode + - type: InteractionPopup + successChance: 1 + interactSuccessString: hugging-success-generic + interactSuccessSound: /Audio/Effects/thudswoosh.ogg + messagePerceivedByOthers: hugging-success-generic-others + - type: MindContainer + showExamineInfo: true + - type: Input + context: "human" + - type: MobMover + - type: InputMover + - type: Respirator + - type: Alerts + - type: Actions + - type: Eye + - type: CameraRecoil + - type: Examiner + - type: CanHostGuardian + - type: NpcFactionMember + factions: + - NanoTrasen diff --git a/Resources/Prototypes/DeltaV/Entities/Mobs/Species/harpy.yml b/Resources/Prototypes/DeltaV/Entities/Mobs/Species/harpy.yml new file mode 100644 index 00000000000..a4498299c9a --- /dev/null +++ b/Resources/Prototypes/DeltaV/Entities/Mobs/Species/harpy.yml @@ -0,0 +1,207 @@ +- type: entity + save: false + name: Urist McHarpy + parent: BaseMobHuman + id: MobHarpyBase + abstract: true + components: + - type: HarpySinger + - type: Instrument + allowPercussion: false + program: 52 + - type: SwappableInstrument + instrumentList: + "Voice": {52: 0} + "Trumpet": {56: 0} + "Electric": {27: 0} + "Bass": {33: 0} + "Rock": {29: 0} + "Acoustic": {24: 0} + "Flute": {73: 0} + "Sax": {66: 0} + - type: UserInterface + interfaces: + - key: enum.InstrumentUiKey.Key + type: InstrumentBoundUserInterface + - key: enum.VoiceMaskUIKey.Key + type: VoiceMaskBoundUserInterface + - key: enum.HumanoidMarkingModifierKey.Key + type: HumanoidMarkingModifierBoundUserInterface + - key: enum.StrippingUiKey.Key + type: StrippableBoundUserInterface + - type: Sprite + scale: 0.9, 0.9 + layers: + - map: [ "enum.HumanoidVisualLayers.Chest" ] + - map: [ "enum.HumanoidVisualLayers.Head" ] + - map: [ "enum.HumanoidVisualLayers.Snout" ] + - map: [ "enum.HumanoidVisualLayers.Eyes" ] + - map: [ "enum.HumanoidVisualLayers.LArm" ] + - map: [ "enum.HumanoidVisualLayers.RLeg" ] + - map: [ "enum.HumanoidVisualLayers.LLeg" ] + - map: [ "underpants" ] + - map: [ "undershirt" ] + - map: [ "socks" ] + - map: [ "jumpsuit" ] + - map: ["enum.HumanoidVisualLayers.LFoot"] + - map: ["enum.HumanoidVisualLayers.RFoot"] + - map: ["enum.HumanoidVisualLayers.LHand"] + - map: ["enum.HumanoidVisualLayers.RHand"] + - map: [ "enum.HumanoidVisualLayers.Handcuffs" ] + color: "#ffffff" + sprite: Objects/Misc/handcuffs.rsi + state: body-overlay-2 + visible: false + - map: [ "id" ] + - map: [ "gloves" ] + - map: [ "shoes" ] + - map: [ "ears" ] + - map: [ "outerClothing" ] + - map: [ "eyes" ] + - map: [ "belt" ] + - map: [ "neck" ] + - map: [ "back" ] + - map: [ "enum.HumanoidVisualLayers.FacialHair" ] + - map: [ "enum.HumanoidVisualLayers.HeadSide" ] + - map: [ "enum.HumanoidVisualLayers.Tail" ] + - map: [ "pocket1" ] + - map: [ "pocket2" ] + - map: [ "clownedon" ] # Dynamically generated + sprite: "Effects/creampie.rsi" + state: "creampie_human" + visible: false +# Yes, RArm has to be down here + - map: [ "enum.HumanoidVisualLayers.RArm" ] + - map: [ "enum.HumanoidVisualLayers.Hair" ] + - map: [ "enum.HumanoidVisualLayers.HeadTop" ] + - map: [ "mask" ] + - map: [ "head" ] + - map: [ "singingLayer" ] + sprite: DeltaV/Effects/harpysinger.rsi + state: singing_music_notes + visible: false + - type: HumanoidAppearance + species: Harpy + - type: Fixtures + fixtures: # TODO: This needs a second fixture just for mob collisions. + fix1: + shape: + !type:PhysShapeCircle + radius: 0.32 + density: 90 + restitution: 0.0 + mask: + - MobMask + layer: + - MobLayer + - type: Body + prototype: Harpy + - type: Damageable + damageModifierSet: Harpy + - type: MeleeWeapon + soundHit: + collection: AlienClaw + animation: WeaponArcClaw + damage: + types: + Piercing: 5 + - type: Speech + speechSounds: Harpy + speechVerb: Harpy + - type: Vocal + sounds: + Male: SoundsHarpy + Female: SoundsHarpy + Unsexed: SoundsHarpy + - type: GenericVisualizer + visuals: + enum.HarpyVisualLayers.Singing: + singingLayer: + False: {visible: false} + True: {visible: true} + - type: MovementSpeedModifier + baseWalkSpeed: 2.5 + baseSprintSpeed: 5.0 + - type: Inventory + speciesId: harpy + templateId: digitigrade + - type: HarpyVisuals + - type: UltraVision + +- type: entity + save: false + name: Urist McHands + parent: MobHumanDummy + id: MobHarpyDummy + noSpawn: true + description: A dummy Harpy meant to be used in character setup. + components: + - type: HumanoidAppearance + species: Harpy + - type: Inventory + speciesId: harpy + - type: Sprite + scale: 0.9, 0.9 + layers: + - map: [ "enum.HumanoidVisualLayers.Chest" ] + - map: [ "enum.HumanoidVisualLayers.Head" ] + - map: [ "enum.HumanoidVisualLayers.Snout" ] + - map: [ "enum.HumanoidVisualLayers.Eyes" ] + - map: [ "enum.HumanoidVisualLayers.LArm" ] + - map: [ "enum.HumanoidVisualLayers.RLeg" ] + - map: [ "enum.HumanoidVisualLayers.LLeg" ] + - map: [ "underpants" ] + - map: [ "undershirt" ] + - map: [ "socks" ] + - map: [ "jumpsuit" ] + - map: ["enum.HumanoidVisualLayers.LFoot"] + - map: ["enum.HumanoidVisualLayers.RFoot"] + - map: ["enum.HumanoidVisualLayers.LHand"] + - map: ["enum.HumanoidVisualLayers.RHand"] + - map: [ "id" ] + - map: [ "gloves" ] + - map: [ "shoes" ] + - map: [ "ears" ] + - map: [ "outerClothing" ] + - map: [ "eyes" ] + - map: [ "belt" ] + - map: [ "neck" ] + - map: [ "back" ] + - map: [ "enum.HumanoidVisualLayers.FacialHair" ] + - map: [ "enum.HumanoidVisualLayers.HeadSide" ] + - map: [ "enum.HumanoidVisualLayers.HeadTop" ] + - map: [ "enum.HumanoidVisualLayers.Tail" ] + - map: [ "pocket1" ] + - map: [ "pocket2" ] + - map: [ "clownedon" ] # Dynamically generated + sprite: "Effects/creampie.rsi" + state: "creampie_human" + visible: false +# Yes, RArm has to be down here + - map: [ "enum.HumanoidVisualLayers.RArm" ] + - map: [ "enum.HumanoidVisualLayers.Hair" ] + - map: [ "mask" ] + - map: [ "head" ] + +- type: entity + id: ActionHarpyPlayMidi + name: Play MIDI + description: Sing your heart out! Right click yourself to set an instrument. + noSpawn: true + components: + - type: InstantAction + checkCanInteract: false + icon: DeltaV/Interface/Actions/harpy_sing.png + event: !type:OpenUiActionEvent + key: enum.InstrumentUiKey.Key + +- type: entity + id: ActionSyrinxChangeVoiceMask + name: Set name + description: Change the name others hear to something else. + noSpawn: true + components: + - type: InstantAction + icon: DeltaV/Interface/Actions/harpy_syrinx.png + itemIconStyle: BigAction + event: !type:VoiceMaskSetNameEvent diff --git a/Resources/Prototypes/DeltaV/Entities/Objects/Misc/implanters.yml b/Resources/Prototypes/DeltaV/Entities/Objects/Misc/implanters.yml new file mode 100644 index 00000000000..9849642f939 --- /dev/null +++ b/Resources/Prototypes/DeltaV/Entities/Objects/Misc/implanters.yml @@ -0,0 +1,7 @@ +- type: entity + id: BionicSyrinxImplanter + name: bionic syrinx implanter + parent: BaseImplantOnlyImplanterSyndi + components: + - type: Implanter + implant: BionicSyrinxImplant diff --git a/Resources/Prototypes/DeltaV/Entities/Objects/Misc/subdermal_implants.yml b/Resources/Prototypes/DeltaV/Entities/Objects/Misc/subdermal_implants.yml new file mode 100644 index 00000000000..93a9641f7be --- /dev/null +++ b/Resources/Prototypes/DeltaV/Entities/Objects/Misc/subdermal_implants.yml @@ -0,0 +1,17 @@ +- type: entity + parent: BaseSubdermalImplant + id: BionicSyrinxImplant + name: bionic syrinx implant + description: This implant lets a harpy adjust their voice to whoever they can think of. + noSpawn: true + components: + - type: SubdermalImplant + implantAction: ActionSyrinxChangeVoiceMask + whitelist: + components: + - HarpySinger + - type: VoiceMasker + - type: Tag + tags: + - SubdermalImplant + - BionicSyrinxImplant diff --git a/Resources/Prototypes/DeltaV/Entities/Structures/Doors/Windoors/windoor.yml b/Resources/Prototypes/DeltaV/Entities/Structures/Doors/Windoors/windoor.yml index dd5c09c4d0a..fb0895f62cb 100644 --- a/Resources/Prototypes/DeltaV/Entities/Structures/Doors/Windoors/windoor.yml +++ b/Resources/Prototypes/DeltaV/Entities/Structures/Doors/Windoors/windoor.yml @@ -4,7 +4,7 @@ suffix: Mail, Locked components: - type: AccessReader - access: [["Service"]] + access: [["Mail"]] # Frontier - Service