diff --git a/Content.Server/DeltaV/StationEvents/Events/FugitiveRule.cs b/Content.Server/DeltaV/StationEvents/Events/FugitiveRule.cs index 3b9969c4433..009f15faa64 100644 --- a/Content.Server/DeltaV/StationEvents/Events/FugitiveRule.cs +++ b/Content.Server/DeltaV/StationEvents/Events/FugitiveRule.cs @@ -3,11 +3,14 @@ using Content.Server.StationEvents.Components; using Content.Shared.GameTicking.Components; using Content.Shared.Ghost; +using Content.Shared.Hands.EntitySystems; using Content.Shared.Humanoid; using Content.Shared.Humanoid.Prototypes; +using Content.Shared.Inventory; using Content.Shared.Paper; using Content.Shared.Popups; using Content.Shared.Random.Helpers; +using Content.Shared.Storage.EntitySystems; using Robust.Shared.Physics.Components; using Robust.Shared.Utility; @@ -15,8 +18,11 @@ namespace Content.Server.StationEvents.Events; public sealed class FugitiveRule : StationEventSystem { + [Dependency] private readonly InventorySystem _inventory = default!; [Dependency] private readonly PaperSystem _paper = default!; + [Dependency] private readonly SharedHandsSystem _hands = default!; [Dependency] private readonly SharedPopupSystem _popup = default!; + [Dependency] private readonly SharedStorageSystem _storage = default!; public override void Initialize() { @@ -47,9 +53,7 @@ protected override void ActiveTick(EntityUid uid, FugitiveRuleComponent comp, Ga foreach (var xform in consoles) { - var report = Spawn(comp.ReportPaper, xform.Coordinates); - var paper = Comp(report); - _paper.SetContent((report, paper), comp.Report); + SpawnReport(comp, xform); } // prevent any possible funnies @@ -60,18 +64,42 @@ protected override void ActiveTick(EntityUid uid, FugitiveRuleComponent comp, Ga private void OnEntitySelected(Entity ent, ref AfterAntagEntitySelectedEvent args) { - if (ent.Comp.NextAnnounce != null) + var (uid, comp) = ent; + if (comp.NextAnnounce != null) { Log.Error("Fugitive rule spawning multiple fugitives isn't supported, sorry."); return; } var fugi = args.EntityUid; - ent.Comp.Report = GenerateReport(fugi, ent.Comp).ToMarkup(); - ent.Comp.Station = StationSystem.GetOwningStation(fugi); - ent.Comp.NextAnnounce = Timing.CurTime + ent.Comp.AnnounceDelay; + comp.Report = GenerateReport(fugi, comp).ToMarkup(); + comp.Station = StationSystem.GetOwningStation(fugi); + comp.NextAnnounce = Timing.CurTime + comp.AnnounceDelay; _popup.PopupEntity(Loc.GetString("fugitive-spawn"), fugi, fugi); + + // give the fugi a report so they know what their charges are + var report = SpawnReport(comp, Transform(fugi)); + + // try to insert it into their bag + if (_inventory.TryGetSlotEntity(fugi, "back", out var backpack)) + { + _storage.Insert(backpack.Value, report, out _, playSound: false); + } + else + { + // no bag somehow, at least pick it up + _hands.TryPickup(fugi, report); + } + } + + private Entity SpawnReport(FugitiveRuleComponent rule, TransformComponent xform) + { + var report = Spawn(rule.ReportPaper, xform.Coordinates); + var paper = Comp(report); + var ent = (report, paper); + _paper.SetContent(ent, rule.Report); + return ent; } private FormattedMessage GenerateReport(EntityUid uid, FugitiveRuleComponent rule) diff --git a/Content.Server/DeltaV/Xenoarchaeology/XenoArtifacts/Effects/Components/GlimmerArtifactComponent.cs b/Content.Server/DeltaV/Xenoarchaeology/XenoArtifacts/Effects/Components/GlimmerArtifactComponent.cs new file mode 100644 index 00000000000..a096fc354a0 --- /dev/null +++ b/Content.Server/DeltaV/Xenoarchaeology/XenoArtifacts/Effects/Components/GlimmerArtifactComponent.cs @@ -0,0 +1,24 @@ +using Content.Server.DeltaV.Xenoarchaeology.XenoArtifacts.Effects.Systems; +using Content.Shared.Destructible.Thresholds; + +namespace Content.Server.DeltaV.Xenoarchaeology.XenoArtifacts.Effects.Components; + +/// +/// Raises or lowers glimmer when this artifact is triggered. +/// +[RegisterComponent, Access(typeof(GlimmerArtifactSystem))] +public sealed partial class GlimmerArtifactComponent : Component +{ + /// + /// If glimmer is not in this range it won't do anything. + /// Prevents the trigger being too extreme or too beneficial. + /// + [DataField(required: true)] + public MinMax Range; + + /// + /// Number to add to glimmer when triggering. + /// + [DataField(required: true)] + public int Change; +} diff --git a/Content.Server/DeltaV/Xenoarchaeology/XenoArtifacts/Effects/Components/PsionicProducingArtifactComponent.cs b/Content.Server/DeltaV/Xenoarchaeology/XenoArtifacts/Effects/Components/PsionicProducingArtifactComponent.cs new file mode 100644 index 00000000000..b4d58c9913e --- /dev/null +++ b/Content.Server/DeltaV/Xenoarchaeology/XenoArtifacts/Effects/Components/PsionicProducingArtifactComponent.cs @@ -0,0 +1,22 @@ +using Content.Server.DeltaV.Xenoarchaeology.XenoArtifacts.Effects.Systems; + +namespace Content.Server.DeltaV.Xenoarchaeology.XenoArtifacts.Effects.Components; + +/// +/// Makes people in a radius around it psionic when triggered. +/// +[RegisterComponent, Access(typeof(PsionicProducingArtifactSystem))] +public sealed partial class PsionicProducingArtifactComponent : Component +{ + /// + /// Range to look for potential psionics in. + /// + [DataField(required: true)] + public float Range; + + /// + /// Number of times this node can trigger before it switches to doing nothing. + /// + [DataField] + public int Limit = 1; +} diff --git a/Content.Server/DeltaV/Xenoarchaeology/XenoArtifacts/Effects/Systems/GlimmerArtifactSystem.cs b/Content.Server/DeltaV/Xenoarchaeology/XenoArtifacts/Effects/Systems/GlimmerArtifactSystem.cs new file mode 100644 index 00000000000..059e1a8cc92 --- /dev/null +++ b/Content.Server/DeltaV/Xenoarchaeology/XenoArtifacts/Effects/Systems/GlimmerArtifactSystem.cs @@ -0,0 +1,27 @@ +using Content.Server.DeltaV.Xenoarchaeology.XenoArtifacts.Effects.Components; +using Content.Server.Xenoarchaeology.XenoArtifacts.Events; +using Content.Shared.Psionics.Glimmer; + +namespace Content.Server.DeltaV.Xenoarchaeology.XenoArtifacts.Effects.Systems; + +public sealed class GlimmerArtifactSystem : EntitySystem +{ + [Dependency] private readonly GlimmerSystem _glimmer = default!; + + public override void Initialize() + { + base.Initialize(); + + SubscribeLocalEvent(OnActivated); + } + + private void OnActivated(Entity ent, ref ArtifactActivatedEvent args) + { + var range = ent.Comp.Range; + var current = _glimmer.Glimmer; + if (current < range.Min || current > range.Max) + return; + + _glimmer.Glimmer += ent.Comp.Change; + } +} diff --git a/Content.Server/DeltaV/Xenoarchaeology/XenoArtifacts/Effects/Systems/PsionicProducingArtifactSystem.cs b/Content.Server/DeltaV/Xenoarchaeology/XenoArtifacts/Effects/Systems/PsionicProducingArtifactSystem.cs new file mode 100644 index 00000000000..d77c00134cf --- /dev/null +++ b/Content.Server/DeltaV/Xenoarchaeology/XenoArtifacts/Effects/Systems/PsionicProducingArtifactSystem.cs @@ -0,0 +1,38 @@ +using Content.Server.DeltaV.Xenoarchaeology.XenoArtifacts.Effects.Components; +using Content.Server.Xenoarchaeology.XenoArtifacts; +using Content.Server.Xenoarchaeology.XenoArtifacts.Events; +using Content.Server.Psionics; + +public sealed class PsionicProducingArtifactSystem : EntitySystem +{ + [Dependency] private readonly ArtifactSystem _artifact = default!; + [Dependency] private readonly EntityLookupSystem _lookup = default!; + [Dependency] private readonly PsionicsSystem _psionics = default!; + + public const string NodeDataPsionicAmount = "nodeDataPsionicAmount"; + + public override void Initialize() + { + base.Initialize(); + + SubscribeLocalEvent(OnActivated); + } + + private void OnActivated(Entity ent, ref ArtifactActivatedEvent args) + { + var (uid, comp) = ent; + if (!_artifact.TryGetNodeData(uid, NodeDataPsionicAmount, out int amount)) + amount = 0; + + if (amount >= comp.Limit) + return; + + var coords = Transform(uid).Coordinates; + foreach (var target in _lookup.GetEntitiesInRange(coords, comp.Range)) + { + _psionics.TryMakePsionic(target); + } + + _artifact.SetNodeData(uid, NodeDataPsionicAmount, amount + 1); + } +} diff --git a/Content.Server/DeltaV/Xenoarchaeology/XenoArtifacts/Triggers/Components/ArtifactMetapsionicTriggerComponent.cs b/Content.Server/DeltaV/Xenoarchaeology/XenoArtifacts/Triggers/Components/ArtifactMetapsionicTriggerComponent.cs new file mode 100644 index 00000000000..7ac1d63e6ad --- /dev/null +++ b/Content.Server/DeltaV/Xenoarchaeology/XenoArtifacts/Triggers/Components/ArtifactMetapsionicTriggerComponent.cs @@ -0,0 +1,8 @@ +namespace Content.Server.DeltaV.Xenoarchaeology.XenoArtifacts.Triggers.Components; + +/// +/// Triggers if a psionic power is used nearby. +/// Requires MetapsionicPowerComponent to be added too. +/// +[RegisterComponent] +public sealed partial class ArtifactMetapsionicTriggerComponent : Component; diff --git a/Content.Server/DeltaV/Xenoarchaeology/XenoArtifacts/Triggers/Systems/ArtifactMetapsionicTriggerSystem.cs b/Content.Server/DeltaV/Xenoarchaeology/XenoArtifacts/Triggers/Systems/ArtifactMetapsionicTriggerSystem.cs new file mode 100644 index 00000000000..8d9a216d658 --- /dev/null +++ b/Content.Server/DeltaV/Xenoarchaeology/XenoArtifacts/Triggers/Systems/ArtifactMetapsionicTriggerSystem.cs @@ -0,0 +1,22 @@ +using Content.Server.DeltaV.Xenoarchaeology.XenoArtifacts.Triggers.Components; +using Content.Server.Xenoarchaeology.XenoArtifacts.Triggers.Systems; +using Content.Shared.Abilities.Psionics; + +namespace Content.Server.Xenoarchaeology.XenoArtifacts.Triggers.Systems; + +public sealed class ArtifactMetapsionicTriggerSystem : EntitySystem +{ + [Dependency] private readonly ArtifactSystem _artifact = default!; + + public override void Initialize() + { + base.Initialize(); + + SubscribeLocalEvent(OnPowerDetected); + } + + private void OnPowerDetected(Entity ent, ref PsionicPowerDetectedEvent args) + { + _artifact.TryActivateArtifact(ent); + } +} diff --git a/Content.Server/Nyanotrasen/Psionics/PsionicsSystem.cs b/Content.Server/Nyanotrasen/Psionics/PsionicsSystem.cs index 889a0d27225..6519d519aa9 100644 --- a/Content.Server/Nyanotrasen/Psionics/PsionicsSystem.cs +++ b/Content.Server/Nyanotrasen/Psionics/PsionicsSystem.cs @@ -128,21 +128,31 @@ private void OnStamHit(EntityUid uid, AntiPsionicWeaponComponent component, Stam args.FlatModifier += component.PsychicStaminaDamage; } - public void RollPsionics(EntityUid uid, PotentialPsionicComponent component, bool applyGlimmer = true, float multiplier = 1f) + /// + /// Makes the entity psionic if it is possible. + /// Ignores rolling and rerolling prevention. + /// + public bool TryMakePsionic(Entity ent) { - if (HasComp(uid)) - return; + if (HasComp(ent)) + return false; if (!_cfg.GetCVar(CCVars.PsionicRollsEnabled)) - return; + return false; + + var warn = CompOrNull(ent)?.Warn ?? true; + _psionicAbilitiesSystem.AddPsionics(ent, warn); + return true; + } + + public void RollPsionics(EntityUid uid, PotentialPsionicComponent component, bool applyGlimmer = true, float multiplier = 1f) + { var chance = component.Chance; - var warn = true; if (TryComp(uid, out var bonus)) { chance *= bonus.Multiplier; chance += bonus.FlatBonus; - warn = bonus.Warn; } if (applyGlimmer) @@ -153,7 +163,7 @@ public void RollPsionics(EntityUid uid, PotentialPsionicComponent component, boo chance = Math.Clamp(chance, 0, 1); if (_random.Prob(chance)) - _psionicAbilitiesSystem.AddPsionics(uid, warn); + TryMakePsionic((uid, component)); } public void RerollPsionics(EntityUid uid, PotentialPsionicComponent? psionic = null, float bonusMuliplier = 1f) diff --git a/Content.Shared/Nyanotrasen/Abilities/Psionics/Abilities/MassSleep/MassSleepPowerSystem.cs b/Content.Shared/Nyanotrasen/Abilities/Psionics/Abilities/MassSleep/MassSleepPowerSystem.cs index f1a95e43016..e8ad6bed299 100644 --- a/Content.Shared/Nyanotrasen/Abilities/Psionics/Abilities/MassSleep/MassSleepPowerSystem.cs +++ b/Content.Shared/Nyanotrasen/Abilities/Psionics/Abilities/MassSleep/MassSleepPowerSystem.cs @@ -44,7 +44,7 @@ private void OnShutdown(EntityUid uid, MassSleepPowerComponent component, Compon private void OnPowerUsed(EntityUid uid, MassSleepPowerComponent component, MassSleepPowerActionEvent args) { - var duration = 30; // Duration of the mass sleep + var duration = 5; // Duration of the mass sleep foreach (var entity in _lookup.GetEntitiesInRange(args.Target, component.Radius)) { if (HasComp(entity) && entity != uid && !HasComp(entity)) diff --git a/Content.Shared/Nyanotrasen/Abilities/Psionics/SharedPsionicAbilitiesSystem.cs b/Content.Shared/Nyanotrasen/Abilities/Psionics/SharedPsionicAbilitiesSystem.cs index 2739d5ba31a..734c7aa00e8 100644 --- a/Content.Shared/Nyanotrasen/Abilities/Psionics/SharedPsionicAbilitiesSystem.cs +++ b/Content.Shared/Nyanotrasen/Abilities/Psionics/SharedPsionicAbilitiesSystem.cs @@ -7,111 +7,118 @@ using Robust.Shared.Random; using Robust.Shared.Serialization; -namespace Content.Shared.Abilities.Psionics +namespace Content.Shared.Abilities.Psionics; + +public sealed class SharedPsionicAbilitiesSystem : EntitySystem { - public sealed class SharedPsionicAbilitiesSystem : EntitySystem + [Dependency] private readonly SharedActionsSystem _actions = default!; + [Dependency] private readonly EntityLookupSystem _lookup = default!; + [Dependency] private readonly SharedPopupSystem _popups = default!; + [Dependency] private readonly ISharedAdminLogManager _adminLogger = default!; + [Dependency] private readonly GlimmerSystem _glimmerSystem = default!; + [Dependency] private readonly IRobustRandom _robustRandom = default!; + + public override void Initialize() { - [Dependency] private readonly SharedActionsSystem _actions = default!; - [Dependency] private readonly EntityLookupSystem _lookup = default!; - [Dependency] private readonly SharedPopupSystem _popups = default!; - [Dependency] private readonly ISharedAdminLogManager _adminLogger = default!; - [Dependency] private readonly GlimmerSystem _glimmerSystem = default!; - [Dependency] private readonly IRobustRandom _robustRandom = default!; - - public override void Initialize() - { - base.Initialize(); - SubscribeLocalEvent(OnInit); - SubscribeLocalEvent(OnShutdown); - SubscribeLocalEvent(OnPowerUsed); + base.Initialize(); + SubscribeLocalEvent(OnInit); + SubscribeLocalEvent(OnShutdown); + SubscribeLocalEvent(OnPowerUsed); - SubscribeLocalEvent(OnMobStateChanged); - } + SubscribeLocalEvent(OnMobStateChanged); + } - private void OnPowerUsed(EntityUid uid, PsionicComponent component, PsionicPowerUsedEvent args) + private void OnPowerUsed(EntityUid uid, PsionicComponent component, PsionicPowerUsedEvent args) + { + var ev = new PsionicPowerDetectedEvent(uid, args.Power); + var coords = Transform(uid).Coordinates; + foreach (var ent in _lookup.GetEntitiesInRange(coords, 10f)) { - foreach (var entity in _lookup.GetEntitiesInRange(uid, 10f)) + if (ent.Owner != uid && !(TryComp(ent, out var insul) && !insul.Passthrough)) { - if (HasComp(entity) && entity != uid && !(TryComp(entity, out var insul) && !insul.Passthrough)) - { - _popups.PopupEntity(Loc.GetString("metapsionic-pulse-power", ("power", args.Power)), entity, entity, PopupType.LargeCaution); - args.Handled = true; - return; - } + RaiseLocalEvent(ent, ref ev); + _popups.PopupEntity(Loc.GetString("metapsionic-pulse-power", ("power", args.Power)), ent, ent, PopupType.LargeCaution); + args.Handled = true; } } + } - private void OnInit(EntityUid uid, PsionicsDisabledComponent component, ComponentInit args) - { - SetPsionicsThroughEligibility(uid); - } + private void OnInit(EntityUid uid, PsionicsDisabledComponent component, ComponentInit args) + { + SetPsionicsThroughEligibility(uid); + } - private void OnShutdown(EntityUid uid, PsionicsDisabledComponent component, ComponentShutdown args) - { - SetPsionicsThroughEligibility(uid); - } + private void OnShutdown(EntityUid uid, PsionicsDisabledComponent component, ComponentShutdown args) + { + SetPsionicsThroughEligibility(uid); + } - private void OnMobStateChanged(EntityUid uid, PsionicComponent component, MobStateChangedEvent args) - { - SetPsionicsThroughEligibility(uid); - } + private void OnMobStateChanged(EntityUid uid, PsionicComponent component, MobStateChangedEvent args) + { + SetPsionicsThroughEligibility(uid); + } - /// - /// Checks whether the entity is eligible to use its psionic ability. This should be run after anything that could effect psionic eligibility. - /// - public void SetPsionicsThroughEligibility(EntityUid uid) - { - PsionicComponent? component = null; - if (!Resolve(uid, ref component, false)) - return; + /// + /// Checks whether the entity is eligible to use its psionic ability. This should be run after anything that could effect psionic eligibility. + /// + public void SetPsionicsThroughEligibility(EntityUid uid) + { + PsionicComponent? component = null; + if (!Resolve(uid, ref component, false)) + return; - if (component.PsionicAbility == null) - return; + if (component.PsionicAbility == null) + return; - _actions.TryGetActionData( component.PsionicAbility, out var actionData ); + _actions.TryGetActionData( component.PsionicAbility, out var actionData ); - if (actionData == null) - return; + if (actionData == null) + return; - _actions.SetEnabled(actionData.Owner, IsEligibleForPsionics(uid)); - } + _actions.SetEnabled(actionData.Owner, IsEligibleForPsionics(uid)); + } - private bool IsEligibleForPsionics(EntityUid uid) - { - return !HasComp(uid) - && (!TryComp(uid, out var mobstate) || mobstate.CurrentState == MobState.Alive); - } + private bool IsEligibleForPsionics(EntityUid uid) + { + return !HasComp(uid) + && (!TryComp(uid, out var mobstate) || mobstate.CurrentState == MobState.Alive); + } - public void LogPowerUsed(EntityUid uid, string power, int minGlimmer = 8, int maxGlimmer = 12) - { - _adminLogger.Add(Database.LogType.Psionics, Database.LogImpact.Medium, $"{ToPrettyString(uid):player} used {power}"); - var ev = new PsionicPowerUsedEvent(uid, power); - RaiseLocalEvent(uid, ev, false); + public void LogPowerUsed(EntityUid uid, string power, int minGlimmer = 8, int maxGlimmer = 12) + { + _adminLogger.Add(Database.LogType.Psionics, Database.LogImpact.Medium, $"{ToPrettyString(uid):player} used {power}"); + var ev = new PsionicPowerUsedEvent(uid, power); + RaiseLocalEvent(uid, ev, false); - _glimmerSystem.Glimmer += _robustRandom.Next(minGlimmer, maxGlimmer); - } + _glimmerSystem.Glimmer += _robustRandom.Next(minGlimmer, maxGlimmer); } +} - public sealed class PsionicPowerUsedEvent : HandledEntityEventArgs - { - public EntityUid User { get; } - public string Power = string.Empty; +/// +/// Event raised on a metapsionic entity when someone used a psionic power nearby. +/// +[ByRefEvent] +public record struct PsionicPowerDetectedEvent(EntityUid Psionic, string Power); - public PsionicPowerUsedEvent(EntityUid user, string power) - { - User = user; - Power = power; - } +public sealed class PsionicPowerUsedEvent : HandledEntityEventArgs +{ + public EntityUid User { get; } + public string Power = string.Empty; + + public PsionicPowerUsedEvent(EntityUid user, string power) + { + User = user; + Power = power; } +} - [Serializable] - [NetSerializable] - public sealed class PsionicsChangedEvent : EntityEventArgs +[Serializable] +[NetSerializable] +public sealed class PsionicsChangedEvent : EntityEventArgs +{ + public readonly NetEntity Euid; + public PsionicsChangedEvent(NetEntity euid) { - public readonly NetEntity Euid; - public PsionicsChangedEvent(NetEntity euid) - { - Euid = euid; - } + Euid = euid; } } diff --git a/Resources/Changelog/DeltaVChangelog.yml b/Resources/Changelog/DeltaVChangelog.yml index 83cf17d9fff..f448d0ef513 100644 --- a/Resources/Changelog/DeltaVChangelog.yml +++ b/Resources/Changelog/DeltaVChangelog.yml @@ -1,66 +1,4 @@ Entries: -- author: FluffiestFloof - changes: - - message: Added the ability for Oni Syndicate agents to buy the Kanabou and Tousei-Gusoku - set. - type: Add - id: 41 - time: '2023-10-03T21:45:06.0000000+00:00' -- author: DebugOk - changes: - - message: Nanotrasen R&D has cooked up some new hardlight technology - type: Add - id: 42 - time: '2023-10-03T22:23:09.0000000+00:00' -- author: FluffiestFloof - changes: - - message: Martial artist finally gets a new coat of paint for their PDA. - type: Tweak - id: 43 - time: '2023-10-04T00:20:48.0000000+00:00' -- author: FluffiestFloof - changes: - - message: Changed the glass texture to be more visible. - type: Tweak - id: 44 - time: '2023-10-05T19:22:26.0000000+00:00' -- author: FluffiestFloof - changes: - - message: The Organic Resources Department now uses better filing system, no more - bureaucracy errors. - type: Remove - id: 45 - time: '2023-10-05T19:22:35.0000000+00:00' -- author: FluffiestFloof - changes: - - message: Added dogvision colorblindness. - type: Add - id: 46 - time: '2023-10-05T19:26:42.0000000+00:00' -- author: FluffiestFloof - changes: - - message: Added a pistol in .38 for the Mantis. - type: Add - id: 47 - time: '2023-10-05T19:28:00.0000000+00:00' -- author: FluffiestFloof - changes: - - message: Added Lollipop and Gumball candies. - type: Add - id: 48 - time: '2023-10-05T19:29:04.0000000+00:00' -- author: FluffiestFloof - changes: - - message: Mantis gets their own access. - type: Tweak - id: 49 - time: '2023-10-05T20:55:12.0000000+00:00' -- author: FluffiestFloof - changes: - - message: Added mediborgs as round start job. - type: Add - id: 50 - time: '2023-10-06T15:30:42.0000000+00:00' - author: Colin-Tel changes: - message: Added Edge Station. @@ -3586,3 +3524,76 @@ id: 540 time: '2024-09-11T12:17:05.0000000+00:00' url: https://github.com/DeltaV-Station/Delta-v/pull/1769 +- author: DisposableCrewmember42 + changes: + - message: Added blue and purple tomato soup, made using Blue Tomatoes. + type: Add + id: 541 + time: '2024-09-12T00:51:50.0000000+00:00' + url: https://github.com/DeltaV-Station/Delta-v/pull/1781 +- author: deltanedas + changes: + - message: Artifacts can now interact with the noosphere in several ways. + type: Add + id: 542 + time: '2024-09-12T01:25:59.0000000+00:00' + url: https://github.com/DeltaV-Station/Delta-v/pull/1785 +- author: TadJohnson00 + changes: + - message: Remove justice helm from construction graph. + type: Remove + id: 543 + time: '2024-09-12T13:00:52.0000000+00:00' + url: https://github.com/DeltaV-Station/Delta-v/pull/1815 +- author: deltanedas + changes: + - message: Fugitives now get a copy of their warrant before the station does. + type: Tweak + id: 544 + time: '2024-09-12T13:30:42.0000000+00:00' + url: https://github.com/DeltaV-Station/Delta-v/pull/1797 +- author: deltanedas + changes: + - message: Artifacts can no longer become sentient. + type: Remove + id: 545 + time: '2024-09-12T15:26:19.0000000+00:00' + url: https://github.com/DeltaV-Station/Delta-v/pull/1818 +- author: TadJohnson00 + changes: + - message: Mass sleep duration reduced from 30s to 5s. + type: Tweak + id: 546 + time: '2024-09-14T02:26:13.0000000+00:00' + url: https://github.com/DeltaV-Station/Delta-v/pull/1816 +- author: Fox + changes: + - message: New Emergency Shuttle "NTES Titan" coming soon to a station near you! + type: Add + id: 547 + time: '2024-09-14T23:35:51.0000000+00:00' + url: https://github.com/DeltaV-Station/Delta-v/pull/1722 +- author: Fox + changes: + - message: Edge Station has finished being refit, new sec, new evac, and a vox-safe + service area! + type: Add + id: 548 + time: '2024-09-15T00:30:06.0000000+00:00' + url: https://github.com/DeltaV-Station/Delta-v/pull/1599 +- author: adeinitas + changes: + - message: Shoukou's Epistemics has moved and there is a new library where it was. + type: Tweak + id: 549 + time: '2024-09-15T02:55:08.0000000+00:00' + url: https://github.com/DeltaV-Station/Delta-v/pull/1703 +- author: Colin-Tel + changes: + - message: Chibi's max population has been lowered from 10 to 4. + type: Tweak + - message: Asterisk's max population has been lowered from 70 to 50. + type: Tweak + id: 550 + time: '2024-09-15T03:34:07.0000000+00:00' + url: https://github.com/DeltaV-Station/Delta-v/pull/1758 diff --git a/Resources/Locale/en-US/deltav/xenoarchaeology/artifact-hints.ftl b/Resources/Locale/en-US/deltav/xenoarchaeology/artifact-hints.ftl new file mode 100644 index 00000000000..ef450187981 --- /dev/null +++ b/Resources/Locale/en-US/deltav/xenoarchaeology/artifact-hints.ftl @@ -0,0 +1,7 @@ +# effects + +artifact-effect-hint-noosphere = Noöspheric shift + +# triggers + +artifact-trigger-hint-psionic = Psionic disturbance diff --git a/Resources/Maps/Shuttles/DeltaV/NTES_Titan.yml b/Resources/Maps/Shuttles/DeltaV/NTES_Titan.yml new file mode 100644 index 00000000000..902aff3b8e4 --- /dev/null +++ b/Resources/Maps/Shuttles/DeltaV/NTES_Titan.yml @@ -0,0 +1,5226 @@ +meta: + format: 6 + postmapinit: false +tilemap: + 0: Space + 15: FloorBar + 32: FloorDark + 64: FloorKitchen + 82: FloorRGlass + 83: FloorReinforced + 97: FloorSteel + 108: FloorSteelMono + 116: FloorWhite + 129: Lattice + 130: Plating +entities: +- proto: "" + entities: + - uid: 1 + components: + - type: MetaData + name: grid + - type: Transform + pos: -0.515625,-0.484375 + parent: invalid + - type: MapGrid + chunks: + 0,0: + ind: 0,0 + tiles: ggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 0,-1: + ind: 0,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,0: + ind: -1,0 + tiles: YQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAUgAAAAAAUgAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAggAAAAAAbAAAAAAAbAAAAAAAUgAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAYQAAAAAAggAAAAAAbAAAAAAAbAAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAUgAAAAAAUgAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAggAAAAAAbAAAAAAAbAAAAAAAdAAAAAAAggAAAAAAggAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAggAAAAAAggAAAAAAIAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAdAAAAAAAdAAAAAAAggAAAAAAYQAAAAAAUgAAAAAAUgAAAAAAYQAAAAAAggAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAUwAAAAAAgQAAAAAAAAAAAAAAdAAAAAAAdAAAAAAAggAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAggAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAUwAAAAAAgQAAAAAAAAAAAAAAdAAAAAAAdAAAAAAAggAAAAAAYQAAAAAAUgAAAAAAUgAAAAAAYQAAAAAAggAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAUwAAAAAAgQAAAAAAAAAAAAAAdAAAAAAAggAAAAAAggAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAggAAAAAAggAAAAAAIAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAUgAAAAAAUgAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAggAAAAAAbAAAAAAAbAAAAAAAUgAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAYQAAAAAAggAAAAAAbAAAAAAAbAAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAUgAAAAAAUgAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAggAAAAAAbAAAAAAAbAAAAAAAYQAAAAAAYQAAAAAAggAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAggAAAAAAYQAAAAAAYQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAADwAAAAAADwAAAAAAggAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAggAAAAAAQAAAAAAAQAAAAAAAggAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAAAADwAAAAAAggAAAAAAggAAAAAAYQAAAAAAYQAAAAAAggAAAAAAggAAAAAAQAAAAAAAQAAAAAAAUwAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAAAADwAAAAAAggAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAggAAAAAAQAAAAAAAQAAAAAAAUwAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAAAADwAAAAAAggAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAggAAAAAAQAAAAAAAQAAAAAAAUwAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,-1: + ind: -1,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAggAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAggAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAUwAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAUwAAAAAAUwAAAAAAggAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAggAAAAAAggAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYQAAAAAAggAAAAAAggAAAAAAggAAAAAAYQAAAAAAYQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAggAAAAAAggAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAYQAAAAAAYQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAggAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAUgAAAAAAUgAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAggAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAA + version: 6 + -2,0: + ind: -2,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAbAAAAAAAbAAAAAAAggAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAbAAAAAAAbAAAAAAAggAAAAAAYQAAAAAAUgAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAbAAAAAAAbAAAAAAAggAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAUwAAAAAAdAAAAAAAdAAAAAAAdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAUwAAAAAAdAAAAAAAdAAAAAAAdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAUwAAAAAAdAAAAAAAdAAAAAAAdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAbAAAAAAAbAAAAAAAggAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAbAAAAAAAbAAAAAAAggAAAAAAYQAAAAAAUgAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAbAAAAAAAbAAAAAAAggAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAUwAAAAAA + version: 6 + -2,1: + ind: -2,1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,1: + ind: -1,1 + tiles: ggAAAAAAggAAAAAAggAAAAAAYQAAAAAAUgAAAAAAUgAAAAAAYQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAggAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAggAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -2,-1: + ind: -2,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAA + version: 6 + - type: Broadphase + - type: Physics + bodyStatus: InAir + angularDamping: 0.05 + linearDamping: 0.05 + fixedRotation: False + bodyType: Dynamic + - type: Fixtures + fixtures: {} + - type: OccluderTree + - type: SpreaderGrid + - type: Shuttle + - type: Gravity + gravityShakeSound: !type:SoundPathSpecifier + path: /Audio/Effects/alert.ogg + - type: GridPathfinding + - type: DecalGrid + chunkCollection: + version: 2 + nodes: + - node: + color: '#334E6DC8' + id: BrickTileWhiteCornerNe + decals: + 7: -10,12 + - node: + color: '#9FED5896' + id: BrickTileWhiteCornerNe + decals: + 13: -15,11 + 22: -7,11 + - node: + color: '#334E6DC8' + id: BrickTileWhiteCornerNw + decals: + 4: -13,12 + - node: + color: '#9FED5896' + id: BrickTileWhiteCornerNw + decals: + 14: -16,11 + 21: -8,11 + - node: + color: '#334E6DC8' + id: BrickTileWhiteInnerNe + decals: + 3: -14,10 + 9: -10,10 + - node: + color: '#9FED5896' + id: BrickTileWhiteInnerNe + decals: + 12: -15,10 + 16: -17,10 + 17: -9,10 + 18: -7,10 + - node: + color: '#DE3A3A96' + id: BrickTileWhiteInnerNe + decals: + 47: -10,2 + - node: + color: '#334E6DC8' + id: BrickTileWhiteInnerNw + decals: + 2: -13,10 + 10: -9,10 + - node: + color: '#52B4E996' + id: BrickTileWhiteInnerNw + decals: + 35: -13,2 + - node: + color: '#9FED5896' + id: BrickTileWhiteInnerNw + decals: + 11: -14,10 + 15: -16,10 + 19: -8,10 + 20: -6,10 + - node: + color: '#DE3A3A96' + id: BrickTileWhiteInnerSe + decals: + 54: -10,8 + - node: + color: '#52B4E996' + id: BrickTileWhiteInnerSw + decals: + 29: -13,8 + - node: + color: '#334E6DC8' + id: BrickTileWhiteLineE + decals: + 8: -10,11 + 105: -10,18 + 106: -10,17 + 107: -10,16 + 108: -10,15 + 109: -10,14 + - node: + color: '#DE3A3A96' + id: BrickTileWhiteLineE + decals: + 42: -10,7 + 43: -10,6 + 44: -10,5 + 45: -10,4 + 46: -10,3 + - node: + color: '#334E6DC8' + id: BrickTileWhiteLineN + decals: + 5: -12,12 + 6: -11,12 + - node: + color: '#52B4E996' + id: BrickTileWhiteLineN + decals: + 36: -19,2 + 37: -18,2 + 38: -17,2 + 39: -16,2 + 40: -15,2 + 41: -14,2 + - node: + color: '#DE3A3A96' + id: BrickTileWhiteLineN + decals: + 48: -9,2 + 49: -8,2 + 50: -7,2 + 51: -6,2 + 52: -5,2 + 53: -4,2 + - node: + color: '#52B4E996' + id: BrickTileWhiteLineS + decals: + 23: -19,8 + 24: -18,8 + 25: -17,8 + 26: -16,8 + 27: -15,8 + 28: -14,8 + - node: + color: '#DE3A3A96' + id: BrickTileWhiteLineS + decals: + 55: -9,8 + 56: -8,8 + 57: -7,8 + 58: -6,8 + 59: -5,8 + 60: -4,8 + - node: + color: '#EFB34196' + id: BrickTileWhiteLineS + decals: + 61: -16,-3 + 62: -15,-3 + 63: -14,-3 + 64: -13,-3 + 65: -12,-3 + 66: -11,-3 + 67: -10,-3 + 68: -8,-3 + 69: -9,-3 + 70: -7,-3 + - node: + color: '#334E6DC8' + id: BrickTileWhiteLineW + decals: + 1: -13,11 + 110: -13,18 + 111: -13,17 + 112: -13,16 + 113: -13,15 + 114: -13,14 + - node: + color: '#52B4E996' + id: BrickTileWhiteLineW + decals: + 30: -13,7 + 31: -13,6 + 32: -13,5 + 33: -13,4 + 34: -13,3 + - node: + color: '#52B4E996' + id: CheckerNESW + decals: + 133: -15,6 + 134: -15,5 + 135: -15,4 + - node: + color: '#DE3A3A96' + id: CheckerNESW + decals: + 127: -4,6 + 128: -4,5 + 129: -4,4 + 130: -8,6 + 131: -8,5 + 132: -8,4 + - node: + color: '#EFB34196' + id: CheckerNESW + decals: + 136: -16,-5 + 137: -15,-5 + 138: -14,-5 + 139: -13,-5 + 140: -12,-5 + 141: -11,-5 + 142: -9,-5 + 143: -10,-5 + 144: -8,-5 + 145: -16,-7 + 146: -14,-7 + 147: -13,-7 + 148: -12,-7 + 149: -11,-7 + 150: -10,-7 + 151: -9,-7 + 152: -12,-6 + 153: -11,-6 + - node: + color: '#DE3A3A96' + id: ThickEastOverlayTrimline + decals: + 121: -5,6 + 122: -5,5 + 123: -5,4 + - node: + color: '#0096FFFF' + id: ThinNorthOverlayTrimline + decals: + 73: -15,-7 + - node: + color: '#FF0000FF' + id: ThinNorthOverlayTrimline + decals: + 71: -8,-7 + - node: + color: '#0096FFFF' + id: ThinSouthOverlayTrimline + decals: + 74: -15,-7 + - node: + color: '#FF0000FF' + id: ThinSouthOverlayTrimline + decals: + 72: -8,-7 + - node: + color: '#52B4E996' + id: ThinWestOverlayTrimline + decals: + 118: -17,6 + 119: -17,5 + 120: -17,4 + - node: + color: '#FFFFFFFF' + id: WarnLineE + decals: + 75: -21,2 + 76: -21,1 + 77: -21,0 + 90: -21,10 + 91: -21,9 + 92: -21,8 + 93: -1,10 + 94: -1,9 + 95: -1,8 + 96: -1,2 + 97: -1,1 + 98: -1,0 + - node: + color: '#FFFFFFFF' + id: WarnLineS + decals: + 78: -22,2 + 79: -22,1 + 80: -22,0 + 81: -2,2 + 82: -2,1 + 83: -2,0 + 84: -2,10 + 85: -2,9 + 86: -2,8 + 87: -22,10 + 88: -22,9 + 89: -22,8 + - type: GridAtmosphere + version: 2 + data: + tiles: + 0,0: + 0: 257 + -1,0: + 0: 4063 + 0,2: + 0: 257 + -1,2: + 0: 4063 + -4,0: + 0: 40959 + -4,-1: + 0: 65520 + -5,0: + 0: 4079 + -4,1: + 0: 39867 + -5,1: + 0: 3822 + -4,2: + 0: 49151 + -5,2: + 0: 4079 + -4,3: + 0: 47931 + -3,0: + 0: 32767 + -3,1: + 0: 30583 + -3,2: + 0: 32767 + -3,3: + 0: 30519 + -4,4: + 0: 2184 + 1: 48 + -3,-1: + 0: 65523 + -3,4: + 0: 1911 + -2,0: + 0: 12287 + -2,1: + 0: 12287 + -2,2: + 0: 16383 + -2,3: + 0: 13107 + 1: 34952 + -2,-1: + 0: 13104 + 1: 2184 + -1,1: + 0: 273 + 1: 1092 + -2,4: + 1: 248 + -4,-3: + 1: 45056 + -5,-3: + 1: 32768 + -4,-2: + 0: 65520 + -3,-3: + 1: 28672 + -3,-2: + 0: 65520 + -2,-3: + 1: 28672 + -2,-2: + 0: 13104 + 1: 34952 + -6,0: + 0: 3790 + -6,2: + 0: 3790 + -6,1: + 1: 2184 + -5,3: + 1: 17476 + -5,4: + 1: 196 + -5,-2: + 1: 17476 + -5,-1: + 1: 1092 + uniqueMixes: + - volume: 2500 + temperature: 293.15 + moles: + - 21.824879 + - 82.10312 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + immutable: True + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + chunkSize: 4 + - type: GasTileOverlay + - type: RadiationGridResistance +- proto: AirAlarm + entities: + - uid: 732 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,6.5 + parent: 1 + - type: DeviceList + devices: + - 414 + - 484 + - 239 + - 240 + - 243 + - 242 + - 235 + - 234 + - 672 + - 673 + - 739 + - uid: 733 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,4.5 + parent: 1 + - type: DeviceList + devices: + - 451 + - 407 + - 236 + - 237 + - 241 + - 238 + - 235 + - 234 + - 672 + - 673 + - 738 + - uid: 734 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,16.5 + parent: 1 + - type: DeviceList + devices: + - 415 + - 485 + - 243 + - 242 + - uid: 735 + components: + - type: Transform + pos: -18.5,7.5 + parent: 1 + - type: DeviceList + devices: + - 481 + - 408 + - 238 + - 239 + - uid: 736 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,3.5 + parent: 1 + - type: DeviceList + devices: + - 480 + - 411 + - 240 + - 241 + - uid: 737 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,-7.5 + parent: 1 + - type: DeviceList + devices: + - 406 + - 452 + - 237 + - 236 +- proto: AirCanister + entities: + - uid: 714 + components: + - type: Transform + pos: -15.5,-6.5 + parent: 1 +- proto: AirlockCommandGlassLocked + entities: + - uid: 698 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,13.5 + parent: 1 + - uid: 699 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,13.5 + parent: 1 +- proto: AirlockEngineeringLocked + entities: + - uid: 696 + components: + - type: Transform + pos: -11.5,-3.5 + parent: 1 + - uid: 697 + components: + - type: Transform + pos: -10.5,-3.5 + parent: 1 +- proto: AirlockExternalGlass + entities: + - uid: 163 + components: + - type: Transform + pos: -19.5,10.5 + parent: 1 + - uid: 164 + components: + - type: Transform + pos: -19.5,8.5 + parent: 1 + - uid: 165 + components: + - type: Transform + pos: -19.5,2.5 + parent: 1 + - uid: 166 + components: + - type: Transform + pos: -19.5,0.5 + parent: 1 + - uid: 167 + components: + - type: Transform + pos: -2.5,2.5 + parent: 1 + - uid: 168 + components: + - type: Transform + pos: -2.5,0.5 + parent: 1 + - uid: 169 + components: + - type: Transform + pos: -2.5,10.5 + parent: 1 + - uid: 170 + components: + - type: Transform + pos: -2.5,8.5 + parent: 1 +- proto: AirlockExternalGlassShuttleLocked + entities: + - uid: 248 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,0.5 + parent: 1 + - uid: 249 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,2.5 + parent: 1 + - uid: 250 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,10.5 + parent: 1 + - uid: 251 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,8.5 + parent: 1 + - uid: 252 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,10.5 + parent: 1 + - uid: 253 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,8.5 + parent: 1 + - uid: 254 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,2.5 + parent: 1 + - uid: 255 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,0.5 + parent: 1 +- proto: AirlockMedicalGlassLocked + entities: + - uid: 491 + components: + - type: Transform + pos: -15.5,3.5 + parent: 1 + - uid: 492 + components: + - type: Transform + pos: -15.5,7.5 + parent: 1 +- proto: AirlockSecurityGlassLocked + entities: + - uid: 495 + components: + - type: Transform + pos: -6.5,3.5 + parent: 1 + - uid: 496 + components: + - type: Transform + pos: -6.5,7.5 + parent: 1 +- proto: AirSensor + entities: + - uid: 738 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,1.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 733 + - uid: 739 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,9.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 732 +- proto: APCBasic + entities: + - uid: 282 + components: + - type: MetaData + name: APC (Aft) + - type: Transform + pos: -12.5,-3.5 + parent: 1 + - uid: 284 + components: + - type: MetaData + name: APC (Fore) + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,16.5 + parent: 1 +- proto: APCHighCapacity + entities: + - uid: 283 + components: + - type: MetaData + name: APC (Centre) + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,7.5 + parent: 1 +- proto: AtmosDeviceFanDirectional + entities: + - uid: 94 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,0.5 + parent: 1 + - uid: 95 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,2.5 + parent: 1 + - uid: 96 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,10.5 + parent: 1 + - uid: 97 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,8.5 + parent: 1 + - uid: 109 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,8.5 + parent: 1 + - uid: 110 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,2.5 + parent: 1 + - uid: 111 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,0.5 + parent: 1 + - uid: 112 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,10.5 + parent: 1 +- proto: BarSignZocalo + entities: + - uid: 741 + components: + - type: Transform + pos: -15.5,16.5 + parent: 1 +- proto: BedsheetMedical + entities: + - uid: 197 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,6.5 + parent: 1 + - uid: 198 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,6.5 + parent: 1 +- proto: BlastDoorUnlinkedBridgeOpen + entities: + - uid: 710 + components: + - type: Transform + pos: -9.5,19.5 + parent: 1 + - uid: 711 + components: + - type: Transform + pos: -10.5,19.5 + parent: 1 + - uid: 712 + components: + - type: Transform + pos: -11.5,19.5 + parent: 1 + - uid: 713 + components: + - type: Transform + pos: -12.5,19.5 + parent: 1 +- proto: BoozeDispenser + entities: + - uid: 508 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,14.5 + parent: 1 +- proto: ButtonFrameCaution + entities: + - uid: 709 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,17.5 + parent: 1 +- proto: CableApcExtension + entities: + - uid: 511 + components: + - type: Transform + pos: -8.5,16.5 + parent: 1 + - uid: 512 + components: + - type: Transform + pos: -9.5,16.5 + parent: 1 + - uid: 513 + components: + - type: Transform + pos: -10.5,16.5 + parent: 1 + - uid: 514 + components: + - type: Transform + pos: -11.5,16.5 + parent: 1 + - uid: 515 + components: + - type: Transform + pos: -10.5,17.5 + parent: 1 + - uid: 516 + components: + - type: Transform + pos: -12.5,16.5 + parent: 1 + - uid: 517 + components: + - type: Transform + pos: -12.5,17.5 + parent: 1 + - uid: 518 + components: + - type: Transform + pos: -10.5,18.5 + parent: 1 + - uid: 519 + components: + - type: Transform + pos: -12.5,18.5 + parent: 1 + - uid: 520 + components: + - type: Transform + pos: -10.5,15.5 + parent: 1 + - uid: 521 + components: + - type: Transform + pos: -10.5,14.5 + parent: 1 + - uid: 522 + components: + - type: Transform + pos: -15.5,14.5 + parent: 1 + - uid: 523 + components: + - type: Transform + pos: -15.5,13.5 + parent: 1 + - uid: 524 + components: + - type: Transform + pos: -15.5,12.5 + parent: 1 + - uid: 525 + components: + - type: Transform + pos: -15.5,11.5 + parent: 1 + - uid: 526 + components: + - type: Transform + pos: -15.5,10.5 + parent: 1 + - uid: 527 + components: + - type: Transform + pos: -14.5,10.5 + parent: 1 + - uid: 528 + components: + - type: Transform + pos: -13.5,10.5 + parent: 1 + - uid: 529 + components: + - type: Transform + pos: -11.5,10.5 + parent: 1 + - uid: 530 + components: + - type: Transform + pos: -10.5,10.5 + parent: 1 + - uid: 531 + components: + - type: Transform + pos: -9.5,10.5 + parent: 1 + - uid: 532 + components: + - type: Transform + pos: -8.5,10.5 + parent: 1 + - uid: 533 + components: + - type: Transform + pos: -7.5,10.5 + parent: 1 + - uid: 534 + components: + - type: Transform + pos: -6.5,10.5 + parent: 1 + - uid: 535 + components: + - type: Transform + pos: -12.5,10.5 + parent: 1 + - uid: 536 + components: + - type: Transform + pos: -6.5,11.5 + parent: 1 + - uid: 537 + components: + - type: Transform + pos: -6.5,12.5 + parent: 1 + - uid: 538 + components: + - type: Transform + pos: -6.5,13.5 + parent: 1 + - uid: 539 + components: + - type: Transform + pos: -6.5,14.5 + parent: 1 + - uid: 540 + components: + - type: Transform + pos: -13.5,9.5 + parent: 1 + - uid: 541 + components: + - type: Transform + pos: -13.5,8.5 + parent: 1 + - uid: 542 + components: + - type: Transform + pos: -13.5,7.5 + parent: 1 + - uid: 543 + components: + - type: Transform + pos: -14.5,8.5 + parent: 1 + - uid: 544 + components: + - type: Transform + pos: -15.5,8.5 + parent: 1 + - uid: 545 + components: + - type: Transform + pos: -15.5,7.5 + parent: 1 + - uid: 546 + components: + - type: Transform + pos: -15.5,6.5 + parent: 1 + - uid: 547 + components: + - type: Transform + pos: -15.5,5.5 + parent: 1 + - uid: 548 + components: + - type: Transform + pos: -16.5,5.5 + parent: 1 + - uid: 549 + components: + - type: Transform + pos: -17.5,5.5 + parent: 1 + - uid: 550 + components: + - type: Transform + pos: -18.5,5.5 + parent: 1 + - uid: 551 + components: + - type: Transform + pos: -21.5,9.5 + parent: 1 + - uid: 552 + components: + - type: Transform + pos: -20.5,9.5 + parent: 1 + - uid: 553 + components: + - type: Transform + pos: -20.5,8.5 + parent: 1 + - uid: 554 + components: + - type: Transform + pos: -19.5,8.5 + parent: 1 + - uid: 555 + components: + - type: Transform + pos: -18.5,8.5 + parent: 1 + - uid: 556 + components: + - type: Transform + pos: -16.5,8.5 + parent: 1 + - uid: 557 + components: + - type: Transform + pos: -17.5,8.5 + parent: 1 + - uid: 558 + components: + - type: Transform + pos: -0.5,9.5 + parent: 1 + - uid: 559 + components: + - type: Transform + pos: -1.5,9.5 + parent: 1 + - uid: 560 + components: + - type: Transform + pos: -1.5,8.5 + parent: 1 + - uid: 561 + components: + - type: Transform + pos: -2.5,8.5 + parent: 1 + - uid: 562 + components: + - type: Transform + pos: -3.5,8.5 + parent: 1 + - uid: 563 + components: + - type: Transform + pos: -4.5,8.5 + parent: 1 + - uid: 564 + components: + - type: Transform + pos: -5.5,8.5 + parent: 1 + - uid: 565 + components: + - type: Transform + pos: -6.5,8.5 + parent: 1 + - uid: 566 + components: + - type: Transform + pos: -7.5,8.5 + parent: 1 + - uid: 567 + components: + - type: Transform + pos: -8.5,8.5 + parent: 1 + - uid: 568 + components: + - type: Transform + pos: -10.5,8.5 + parent: 1 + - uid: 569 + components: + - type: Transform + pos: -9.5,8.5 + parent: 1 + - uid: 570 + components: + - type: Transform + pos: -12.5,8.5 + parent: 1 + - uid: 571 + components: + - type: Transform + pos: -11.5,8.5 + parent: 1 + - uid: 572 + components: + - type: Transform + pos: -11.5,7.5 + parent: 1 + - uid: 573 + components: + - type: Transform + pos: -11.5,6.5 + parent: 1 + - uid: 574 + components: + - type: Transform + pos: -11.5,5.5 + parent: 1 + - uid: 575 + components: + - type: Transform + pos: -11.5,4.5 + parent: 1 + - uid: 576 + components: + - type: Transform + pos: -11.5,3.5 + parent: 1 + - uid: 577 + components: + - type: Transform + pos: -11.5,2.5 + parent: 1 + - uid: 578 + components: + - type: Transform + pos: -11.5,1.5 + parent: 1 + - uid: 579 + components: + - type: Transform + pos: -6.5,7.5 + parent: 1 + - uid: 580 + components: + - type: Transform + pos: -6.5,6.5 + parent: 1 + - uid: 581 + components: + - type: Transform + pos: -6.5,5.5 + parent: 1 + - uid: 582 + components: + - type: Transform + pos: -5.5,5.5 + parent: 1 + - uid: 583 + components: + - type: Transform + pos: -4.5,5.5 + parent: 1 + - uid: 584 + components: + - type: Transform + pos: -3.5,5.5 + parent: 1 + - uid: 585 + components: + - type: Transform + pos: -21.5,1.5 + parent: 1 + - uid: 586 + components: + - type: Transform + pos: -20.5,1.5 + parent: 1 + - uid: 587 + components: + - type: Transform + pos: -20.5,2.5 + parent: 1 + - uid: 588 + components: + - type: Transform + pos: -19.5,2.5 + parent: 1 + - uid: 589 + components: + - type: Transform + pos: -18.5,2.5 + parent: 1 + - uid: 590 + components: + - type: Transform + pos: -17.5,2.5 + parent: 1 + - uid: 591 + components: + - type: Transform + pos: -16.5,2.5 + parent: 1 + - uid: 592 + components: + - type: Transform + pos: -15.5,2.5 + parent: 1 + - uid: 593 + components: + - type: Transform + pos: -14.5,2.5 + parent: 1 + - uid: 594 + components: + - type: Transform + pos: -13.5,2.5 + parent: 1 + - uid: 595 + components: + - type: Transform + pos: -12.5,2.5 + parent: 1 + - uid: 596 + components: + - type: Transform + pos: -10.5,2.5 + parent: 1 + - uid: 597 + components: + - type: Transform + pos: -9.5,2.5 + parent: 1 + - uid: 598 + components: + - type: Transform + pos: -8.5,2.5 + parent: 1 + - uid: 599 + components: + - type: Transform + pos: -7.5,2.5 + parent: 1 + - uid: 600 + components: + - type: Transform + pos: -6.5,2.5 + parent: 1 + - uid: 601 + components: + - type: Transform + pos: -4.5,2.5 + parent: 1 + - uid: 602 + components: + - type: Transform + pos: -3.5,2.5 + parent: 1 + - uid: 603 + components: + - type: Transform + pos: -2.5,2.5 + parent: 1 + - uid: 604 + components: + - type: Transform + pos: -1.5,2.5 + parent: 1 + - uid: 605 + components: + - type: Transform + pos: -5.5,2.5 + parent: 1 + - uid: 606 + components: + - type: Transform + pos: -1.5,1.5 + parent: 1 + - uid: 607 + components: + - type: Transform + pos: -0.5,1.5 + parent: 1 + - uid: 608 + components: + - type: Transform + pos: -15.5,1.5 + parent: 1 + - uid: 609 + components: + - type: Transform + pos: -15.5,0.5 + parent: 1 + - uid: 610 + components: + - type: Transform + pos: -15.5,-0.5 + parent: 1 + - uid: 611 + components: + - type: Transform + pos: -15.5,-1.5 + parent: 1 + - uid: 612 + components: + - type: Transform + pos: -15.5,-2.5 + parent: 1 + - uid: 613 + components: + - type: Transform + pos: -6.5,1.5 + parent: 1 + - uid: 614 + components: + - type: Transform + pos: -6.5,0.5 + parent: 1 + - uid: 615 + components: + - type: Transform + pos: -6.5,-0.5 + parent: 1 + - uid: 616 + components: + - type: Transform + pos: -6.5,-1.5 + parent: 1 + - uid: 617 + components: + - type: Transform + pos: -6.5,-2.5 + parent: 1 + - uid: 618 + components: + - type: Transform + pos: -12.5,-3.5 + parent: 1 + - uid: 619 + components: + - type: Transform + pos: -12.5,-4.5 + parent: 1 + - uid: 620 + components: + - type: Transform + pos: -12.5,-5.5 + parent: 1 + - uid: 621 + components: + - type: Transform + pos: -13.5,-5.5 + parent: 1 + - uid: 622 + components: + - type: Transform + pos: -14.5,-5.5 + parent: 1 + - uid: 623 + components: + - type: Transform + pos: -11.5,-5.5 + parent: 1 + - uid: 624 + components: + - type: Transform + pos: -10.5,-5.5 + parent: 1 + - uid: 625 + components: + - type: Transform + pos: -9.5,-5.5 + parent: 1 + - uid: 626 + components: + - type: Transform + pos: -8.5,-5.5 + parent: 1 +- proto: CableHV + entities: + - uid: 275 + components: + - type: Transform + pos: -6.5,-4.5 + parent: 1 + - uid: 276 + components: + - type: Transform + pos: -6.5,-5.5 + parent: 1 + - uid: 277 + components: + - type: Transform + pos: -6.5,-6.5 + parent: 1 + - uid: 278 + components: + - type: Transform + pos: -8.5,-5.5 + parent: 1 + - uid: 279 + components: + - type: Transform + pos: -7.5,-5.5 + parent: 1 + - uid: 280 + components: + - type: Transform + pos: -9.5,-4.5 + parent: 1 + - uid: 281 + components: + - type: Transform + pos: -8.5,-4.5 + parent: 1 + - uid: 627 + components: + - type: Transform + pos: -10.5,-4.5 + parent: 1 + - uid: 628 + components: + - type: Transform + pos: -10.5,-3.5 + parent: 1 + - uid: 629 + components: + - type: Transform + pos: -10.5,-2.5 + parent: 1 + - uid: 630 + components: + - type: Transform + pos: -10.5,-1.5 + parent: 1 + - uid: 631 + components: + - type: Transform + pos: -10.5,-0.5 + parent: 1 + - uid: 632 + components: + - type: Transform + pos: -10.5,0.5 + parent: 1 + - uid: 633 + components: + - type: Transform + pos: -10.5,1.5 + parent: 1 + - uid: 634 + components: + - type: Transform + pos: -10.5,2.5 + parent: 1 + - uid: 635 + components: + - type: Transform + pos: -10.5,3.5 + parent: 1 + - uid: 636 + components: + - type: Transform + pos: -10.5,4.5 + parent: 1 + - uid: 637 + components: + - type: Transform + pos: -10.5,5.5 + parent: 1 + - uid: 638 + components: + - type: Transform + pos: -10.5,6.5 + parent: 1 + - uid: 639 + components: + - type: Transform + pos: -10.5,7.5 + parent: 1 + - uid: 640 + components: + - type: Transform + pos: -10.5,8.5 + parent: 1 + - uid: 641 + components: + - type: Transform + pos: -10.5,9.5 + parent: 1 + - uid: 642 + components: + - type: Transform + pos: -10.5,10.5 + parent: 1 + - uid: 643 + components: + - type: Transform + pos: -10.5,11.5 + parent: 1 + - uid: 644 + components: + - type: Transform + pos: -10.5,12.5 + parent: 1 + - uid: 645 + components: + - type: Transform + pos: -10.5,13.5 + parent: 1 + - uid: 646 + components: + - type: Transform + pos: -10.5,14.5 + parent: 1 + - uid: 647 + components: + - type: Transform + pos: -10.5,15.5 + parent: 1 + - uid: 648 + components: + - type: Transform + pos: -10.5,16.5 + parent: 1 + - uid: 649 + components: + - type: Transform + pos: -9.5,16.5 + parent: 1 + - uid: 650 + components: + - type: Transform + pos: -9.5,17.5 + parent: 1 + - uid: 651 + components: + - type: Transform + pos: -9.5,18.5 + parent: 1 +- proto: CableMV + entities: + - uid: 285 + components: + - type: Transform + pos: -9.5,-4.5 + parent: 1 + - uid: 286 + components: + - type: Transform + pos: -10.5,-4.5 + parent: 1 + - uid: 287 + components: + - type: Transform + pos: -11.5,-4.5 + parent: 1 + - uid: 288 + components: + - type: Transform + pos: -12.5,-4.5 + parent: 1 + - uid: 289 + components: + - type: Transform + pos: -12.5,-3.5 + parent: 1 + - uid: 290 + components: + - type: Transform + pos: -10.5,-3.5 + parent: 1 + - uid: 291 + components: + - type: Transform + pos: -10.5,-2.5 + parent: 1 + - uid: 292 + components: + - type: Transform + pos: -10.5,-1.5 + parent: 1 + - uid: 293 + components: + - type: Transform + pos: -10.5,-0.5 + parent: 1 + - uid: 294 + components: + - type: Transform + pos: -10.5,0.5 + parent: 1 + - uid: 295 + components: + - type: Transform + pos: -10.5,1.5 + parent: 1 + - uid: 296 + components: + - type: Transform + pos: -10.5,2.5 + parent: 1 + - uid: 297 + components: + - type: Transform + pos: -10.5,3.5 + parent: 1 + - uid: 298 + components: + - type: Transform + pos: -10.5,4.5 + parent: 1 + - uid: 299 + components: + - type: Transform + pos: -10.5,5.5 + parent: 1 + - uid: 300 + components: + - type: Transform + pos: -10.5,6.5 + parent: 1 + - uid: 301 + components: + - type: Transform + pos: -10.5,7.5 + parent: 1 + - uid: 302 + components: + - type: Transform + pos: -10.5,8.5 + parent: 1 + - uid: 303 + components: + - type: Transform + pos: -13.5,7.5 + parent: 1 + - uid: 304 + components: + - type: Transform + pos: -13.5,8.5 + parent: 1 + - uid: 305 + components: + - type: Transform + pos: -12.5,8.5 + parent: 1 + - uid: 306 + components: + - type: Transform + pos: -11.5,8.5 + parent: 1 + - uid: 307 + components: + - type: Transform + pos: -10.5,9.5 + parent: 1 + - uid: 308 + components: + - type: Transform + pos: -10.5,10.5 + parent: 1 + - uid: 309 + components: + - type: Transform + pos: -10.5,11.5 + parent: 1 + - uid: 310 + components: + - type: Transform + pos: -10.5,12.5 + parent: 1 + - uid: 311 + components: + - type: Transform + pos: -10.5,13.5 + parent: 1 + - uid: 312 + components: + - type: Transform + pos: -10.5,14.5 + parent: 1 + - uid: 313 + components: + - type: Transform + pos: -10.5,15.5 + parent: 1 + - uid: 314 + components: + - type: Transform + pos: -10.5,16.5 + parent: 1 + - uid: 315 + components: + - type: Transform + pos: -9.5,16.5 + parent: 1 + - uid: 316 + components: + - type: Transform + pos: -8.5,16.5 + parent: 1 +- proto: CableTerminal + entities: + - uid: 274 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,-5.5 + parent: 1 +- proto: Catwalk + entities: + - uid: 663 + components: + - type: Transform + pos: -14.5,-5.5 + parent: 1 + - uid: 664 + components: + - type: Transform + pos: -13.5,-5.5 + parent: 1 + - uid: 665 + components: + - type: Transform + pos: -12.5,-5.5 + parent: 1 + - uid: 666 + components: + - type: Transform + pos: -9.5,-5.5 + parent: 1 + - uid: 667 + components: + - type: Transform + pos: -8.5,-5.5 + parent: 1 + - uid: 668 + components: + - type: Transform + pos: -7.5,-5.5 + parent: 1 + - uid: 669 + components: + - type: Transform + pos: -6.5,-4.5 + parent: 1 + - uid: 670 + components: + - type: Transform + pos: -6.5,-5.5 + parent: 1 + - uid: 671 + components: + - type: Transform + pos: -6.5,-6.5 + parent: 1 +- proto: ChairPilotSeat + entities: + - uid: 130 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,11.5 + parent: 1 + - uid: 183 + components: + - type: Transform + pos: -3.5,6.5 + parent: 1 + - uid: 184 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,4.5 + parent: 1 + - uid: 185 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,15.5 + parent: 1 + - uid: 186 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,14.5 + parent: 1 + - uid: 187 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,15.5 + parent: 1 + - uid: 188 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,14.5 + parent: 1 + - uid: 189 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,17.5 + parent: 1 + - uid: 190 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,17.5 + parent: 1 + - uid: 200 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,6.5 + parent: 1 + - uid: 201 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,5.5 + parent: 1 + - uid: 202 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,4.5 + parent: 1 + - uid: 203 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,6.5 + parent: 1 + - uid: 204 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,5.5 + parent: 1 + - uid: 205 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,4.5 + parent: 1 + - uid: 208 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,-0.5 + parent: 1 + - uid: 209 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,-1.5 + parent: 1 + - uid: 210 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,-2.5 + parent: 1 + - uid: 211 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,-0.5 + parent: 1 + - uid: 212 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,-1.5 + parent: 1 + - uid: 214 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,-0.5 + parent: 1 + - uid: 215 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,-1.5 + parent: 1 + - uid: 217 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,-0.5 + parent: 1 + - uid: 218 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,-1.5 + parent: 1 + - uid: 220 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-0.5 + parent: 1 + - uid: 221 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-1.5 + parent: 1 + - uid: 223 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-0.5 + parent: 1 + - uid: 224 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-1.5 + parent: 1 + - uid: 225 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-2.5 + parent: 1 + - uid: 226 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,7.5 + parent: 1 + - uid: 227 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,6.5 + parent: 1 + - uid: 228 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,4.5 + parent: 1 + - uid: 229 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,3.5 + parent: 1 + - uid: 230 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,7.5 + parent: 1 + - uid: 231 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,6.5 + parent: 1 + - uid: 232 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,4.5 + parent: 1 + - uid: 233 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,3.5 + parent: 1 + - uid: 246 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,11.5 + parent: 1 + - uid: 247 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,12.5 + parent: 1 + - uid: 317 + components: + - type: Transform + pos: -13.5,-4.5 + parent: 1 + - uid: 318 + components: + - type: Transform + pos: -12.5,-4.5 + parent: 1 + - uid: 319 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,-6.5 + parent: 1 + - uid: 320 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,-6.5 + parent: 1 + - uid: 501 + components: + - type: Transform + pos: -15.5,15.5 + parent: 1 + - uid: 507 + components: + - type: Transform + pos: -6.5,15.5 + parent: 1 + - uid: 700 + components: + - type: Transform + pos: -8.5,10.5 + parent: 1 + - uid: 701 + components: + - type: Transform + pos: -13.5,10.5 + parent: 1 + - uid: 703 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,12.5 + parent: 1 + - uid: 704 + components: + - type: Transform + pos: -14.5,2.5 + parent: 1 + - uid: 705 + components: + - type: Transform + pos: -13.5,2.5 + parent: 1 + - uid: 706 + components: + - type: Transform + pos: -7.5,2.5 + parent: 1 + - uid: 707 + components: + - type: Transform + pos: -8.5,2.5 + parent: 1 + - uid: 756 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,-6.5 + parent: 1 + - uid: 757 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,-6.5 + parent: 1 + - uid: 758 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,8.5 + parent: 1 + - uid: 759 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,8.5 + parent: 1 + - uid: 760 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,8.5 + parent: 1 + - uid: 761 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,8.5 + parent: 1 +- proto: ClosetEmergencyN2FilledRandom + entities: + - uid: 730 + components: + - type: Transform + pos: -5.5,10.5 + parent: 1 + - uid: 731 + components: + - type: Transform + pos: -16.5,10.5 + parent: 1 +- proto: ClosetWallEmergencyFilledRandom + entities: + - uid: 721 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,-3.5 + parent: 1 + - uid: 722 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,1.5 + parent: 1 + - uid: 723 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,1.5 + parent: 1 + - uid: 724 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,9.5 + parent: 1 + - uid: 725 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,9.5 + parent: 1 + - uid: 746 + components: + - type: Transform + pos: -4.5,11.5 + parent: 1 + - uid: 747 + components: + - type: Transform + pos: -17.5,11.5 + parent: 1 +- proto: ClosetWallFireFilledRandom + entities: + - uid: 720 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-3.5 + parent: 1 + - uid: 726 + components: + - type: Transform + pos: -20.5,11.5 + parent: 1 + - uid: 727 + components: + - type: Transform + pos: -1.5,11.5 + parent: 1 + - uid: 728 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-0.5 + parent: 1 + - uid: 729 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,-0.5 + parent: 1 +- proto: ComputerEmergencyShuttle + entities: + - uid: 653 + components: + - type: Transform + pos: -10.5,18.5 + parent: 1 +- proto: ComputerPowerMonitoring + entities: + - uid: 652 + components: + - type: Transform + pos: -9.5,18.5 + parent: 1 +- proto: ComputerRadar + entities: + - uid: 654 + components: + - type: Transform + pos: -11.5,18.5 + parent: 1 +- proto: DefibrillatorCabinetFilled + entities: + - uid: 682 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,3.5 + parent: 1 +- proto: FirelockGlass + entities: + - uid: 234 + components: + - type: Transform + pos: -11.5,5.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 733 + - 732 + - uid: 235 + components: + - type: Transform + pos: -12.5,5.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 733 + - 732 + - uid: 236 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,-3.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 733 + - 737 + - uid: 237 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,-3.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 733 + - 737 + - uid: 238 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,3.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 733 + - 735 + - uid: 239 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,7.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 732 + - 735 + - uid: 240 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,7.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 732 + - 736 + - uid: 241 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,3.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 733 + - 736 + - uid: 242 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,13.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 732 + - 734 + - uid: 243 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,13.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 732 + - 734 + - uid: 672 + components: + - type: Transform + pos: -10.5,5.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 733 + - 732 + - uid: 673 + components: + - type: Transform + pos: -9.5,5.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 733 + - 732 +- proto: FoodMealCubancarp + entities: + - uid: 767 + components: + - type: MetaData + desc: '...what? We had to do SOMETHING with the victims of the Space Titanic' + name: Fernando Fish + - type: Transform + pos: -7.363249,13.642095 + parent: 1 +- proto: GasPassiveVent + entities: + - uid: 422 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-6.5 + parent: 1 +- proto: GasPipeBend + entities: + - uid: 344 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,-6.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 417 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,-6.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' +- proto: GasPipeFourway + entities: + - uid: 351 + components: + - type: Transform + pos: -11.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 378 + components: + - type: Transform + pos: -11.5,10.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 431 + components: + - type: Transform + pos: -10.5,2.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 458 + components: + - type: Transform + pos: -10.5,8.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' +- proto: GasPipeStraight + entities: + - uid: 343 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,-6.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 345 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,-5.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 346 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,-4.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 347 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,-3.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 348 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,-2.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 349 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,-1.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 350 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,-0.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 354 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 355 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 356 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 357 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 358 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 359 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 360 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 361 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 362 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 363 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 364 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 365 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 366 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 367 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 368 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 369 + components: + - type: Transform + pos: -15.5,1.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 370 + components: + - type: Transform + pos: -15.5,2.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 371 + components: + - type: Transform + pos: -15.5,3.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 372 + components: + - type: Transform + pos: -6.5,1.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 373 + components: + - type: Transform + pos: -6.5,2.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 374 + components: + - type: Transform + pos: -6.5,3.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 376 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,2.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 377 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,3.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 379 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,4.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 380 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,5.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 381 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,6.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 382 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,7.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 383 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,8.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 384 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,9.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 386 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,10.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 387 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,10.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 388 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,10.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 389 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,10.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 390 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,10.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 391 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,10.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 392 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,10.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 393 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,10.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 394 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,10.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 395 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,10.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 396 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,10.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 397 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,10.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 398 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,10.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 399 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,10.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 400 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,10.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 401 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,10.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 402 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,11.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 403 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,12.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 404 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,13.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 405 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,14.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 419 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-6.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 420 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,-6.5 + parent: 1 + - uid: 421 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-6.5 + parent: 1 + - uid: 423 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,-5.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 424 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,-4.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 425 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,-3.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 426 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,-2.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 427 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,-1.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 428 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,-0.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 429 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 432 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,2.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 433 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,2.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 434 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,2.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 435 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,2.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 436 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,2.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 437 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,2.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 438 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,2.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 439 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,2.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 440 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,2.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 441 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,2.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 442 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,2.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 443 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,2.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 444 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,2.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 445 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,2.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 446 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,2.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 447 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,2.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 448 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,2.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 453 + components: + - type: Transform + pos: -10.5,3.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 454 + components: + - type: Transform + pos: -10.5,4.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 455 + components: + - type: Transform + pos: -10.5,5.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 456 + components: + - type: Transform + pos: -10.5,6.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 457 + components: + - type: Transform + pos: -10.5,7.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 460 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,8.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 461 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,8.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 462 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,8.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 463 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,8.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 464 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,8.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 465 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,8.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 466 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,8.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 467 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,8.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 468 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,8.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 469 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,8.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 470 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,8.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 471 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,8.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 472 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,8.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 473 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,8.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 474 + components: + - type: Transform + pos: -10.5,9.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 475 + components: + - type: Transform + pos: -10.5,10.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 476 + components: + - type: Transform + pos: -10.5,11.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 477 + components: + - type: Transform + pos: -10.5,12.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 478 + components: + - type: Transform + pos: -10.5,13.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 479 + components: + - type: Transform + pos: -10.5,14.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 488 + components: + - type: Transform + pos: -6.5,7.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 489 + components: + - type: Transform + pos: -15.5,7.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' +- proto: GasPipeTJunction + entities: + - uid: 342 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,-6.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 352 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 353 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 375 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,1.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 385 + components: + - type: Transform + pos: -12.5,10.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 418 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,-6.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 430 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,1.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 459 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,8.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 486 + components: + - type: Transform + pos: -6.5,8.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 487 + components: + - type: Transform + pos: -15.5,8.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' +- proto: GasPort + entities: + - uid: 181 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,-6.5 + parent: 1 +- proto: GasPressurePump + entities: + - uid: 182 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,-6.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 416 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,-6.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' +- proto: GasVentPump + entities: + - uid: 406 + components: + - type: Transform + pos: -12.5,-5.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 737 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 407 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,1.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 733 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 408 + components: + - type: Transform + pos: -15.5,4.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 735 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 409 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 410 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 411 + components: + - type: Transform + pos: -6.5,4.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 736 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 412 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,10.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 413 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,10.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 414 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,9.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 732 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 415 + components: + - type: Transform + pos: -11.5,15.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 734 + - type: AtmosPipeColor + color: '#0055CCFF' +- proto: GasVentScrubber + entities: + - uid: 449 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,2.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 450 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,2.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 451 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,1.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 733 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 452 + components: + - type: Transform + pos: -9.5,-5.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 737 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 480 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,6.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 736 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 481 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,6.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 735 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 482 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,8.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 483 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,8.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 484 + components: + - type: Transform + pos: -9.5,9.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 732 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 485 + components: + - type: Transform + pos: -10.5,15.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 734 + - type: AtmosPipeColor + color: '#990000FF' +- proto: GeneratorBasic15kW + entities: + - uid: 269 + components: + - type: Transform + pos: -6.5,-4.5 + parent: 1 + - uid: 270 + components: + - type: Transform + pos: -6.5,-5.5 + parent: 1 + - uid: 271 + components: + - type: Transform + pos: -6.5,-6.5 + parent: 1 +- proto: GravityGeneratorMini + entities: + - uid: 179 + components: + - type: Transform + pos: -15.5,-4.5 + parent: 1 +- proto: Grille + entities: + - uid: 76 + components: + - type: Transform + pos: -16.5,15.5 + parent: 1 + - uid: 77 + components: + - type: Transform + pos: -16.5,14.5 + parent: 1 + - uid: 78 + components: + - type: Transform + pos: -16.5,13.5 + parent: 1 + - uid: 86 + components: + - type: Transform + pos: -5.5,13.5 + parent: 1 + - uid: 87 + components: + - type: Transform + pos: -5.5,14.5 + parent: 1 + - uid: 88 + components: + - type: Transform + pos: -11.5,19.5 + parent: 1 + - uid: 90 + components: + - type: Transform + pos: -9.5,19.5 + parent: 1 + - uid: 91 + components: + - type: Transform + pos: -5.5,15.5 + parent: 1 + - uid: 115 + components: + - type: Transform + pos: -12.5,19.5 + parent: 1 + - uid: 132 + components: + - type: Transform + pos: -19.5,6.5 + parent: 1 + - uid: 133 + components: + - type: Transform + pos: -19.5,5.5 + parent: 1 + - uid: 134 + components: + - type: Transform + pos: -19.5,4.5 + parent: 1 + - uid: 135 + components: + - type: Transform + pos: -2.5,6.5 + parent: 1 + - uid: 136 + components: + - type: Transform + pos: -2.5,5.5 + parent: 1 + - uid: 137 + components: + - type: Transform + pos: -2.5,4.5 + parent: 1 + - uid: 139 + components: + - type: Transform + pos: -10.5,19.5 + parent: 1 + - uid: 150 + components: + - type: Transform + pos: -14.5,-7.5 + parent: 1 + - uid: 151 + components: + - type: Transform + pos: -15.5,-7.5 + parent: 1 + - uid: 158 + components: + - type: Transform + pos: -6.5,-7.5 + parent: 1 + - uid: 159 + components: + - type: Transform + pos: -7.5,-7.5 + parent: 1 +- proto: Gyroscope + entities: + - uid: 180 + components: + - type: Transform + pos: -15.5,-5.5 + parent: 1 +- proto: KitchenMicrowave + entities: + - uid: 506 + components: + - type: Transform + pos: -7.5,15.5 + parent: 1 +- proto: LockerEvidence + entities: + - uid: 716 + components: + - type: Transform + pos: -4.5,4.5 + parent: 1 +- proto: LockerMedical + entities: + - uid: 683 + components: + - type: Transform + pos: -17.5,4.5 + parent: 1 +- proto: MedicalBed + entities: + - uid: 195 + components: + - type: Transform + pos: -18.5,6.5 + parent: 1 + - uid: 196 + components: + - type: Transform + pos: -17.5,6.5 + parent: 1 +- proto: PlushieCarp + entities: + - uid: 762 + components: + - type: MetaData + desc: Imprisoned for being soley responsible for the sinking of Space Titanic + name: Frederick Fish + - type: Transform + pos: -3.4979386,6.434398 + parent: 1 +- proto: PlushieHolocarp + entities: + - uid: 765 + components: + - type: MetaData + desc: Chief designer of Space Titanic, hiding in Engineering to avoid media attention + name: Freya Fish + - type: Transform + pos: -10.993683,-5.913672 + parent: 1 +- proto: PlushieMagicarp + entities: + - uid: 764 + components: + - type: MetaData + desc: Drinks away his sorrow after reading about Space Titanic in the news + name: Frankie Fish + - type: Transform + pos: -14.487494,12.738119 + parent: 1 +- proto: PlushieRainbowCarp + entities: + - uid: 763 + components: + - type: MetaData + desc: In medbay after being the sole survivor of the sinking of Space Titanic + name: Fiona Fish + - type: Transform + pos: -18.582478,6.441945 + parent: 1 +- proto: PosterContrabandEAT + entities: + - uid: 750 + components: + - type: Transform + pos: -8.5,13.5 + parent: 1 +- proto: PosterLegitBuild + entities: + - uid: 749 + components: + - type: Transform + pos: -10.5,-7.5 + parent: 1 +- proto: PosterLegitCarpMount + entities: + - uid: 766 + components: + - type: MetaData + desc: Excecuted for being a cowardly Captain during the sinking of Space Titanic + name: Fabiano Fish + - type: Transform + pos: -8.5,17.5 + parent: 1 +- proto: PosterLegitHelpOthers + entities: + - uid: 751 + components: + - type: Transform + pos: -17.5,3.5 + parent: 1 +- proto: PosterLegitNanotrasenLogo + entities: + - uid: 752 + components: + - type: Transform + pos: -22.5,1.5 + parent: 1 + - uid: 753 + components: + - type: Transform + pos: -22.5,9.5 + parent: 1 + - uid: 754 + components: + - type: Transform + pos: 0.5,9.5 + parent: 1 + - uid: 755 + components: + - type: Transform + pos: 0.5,1.5 + parent: 1 +- proto: Poweredlight + entities: + - uid: 98 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,8.5 + parent: 1 + - uid: 674 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,-6.5 + parent: 1 + - uid: 675 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,-6.5 + parent: 1 + - uid: 676 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,-0.5 + parent: 1 + - uid: 677 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-0.5 + parent: 1 + - uid: 678 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,1.5 + parent: 1 + - uid: 679 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,1.5 + parent: 1 + - uid: 680 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,4.5 + parent: 1 + - uid: 681 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,4.5 + parent: 1 + - uid: 684 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,13.5 + parent: 1 + - uid: 685 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,13.5 + parent: 1 + - uid: 686 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,9.5 + parent: 1 + - uid: 687 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,9.5 + parent: 1 + - uid: 688 + components: + - type: Transform + pos: -17.5,6.5 + parent: 1 + - uid: 689 + components: + - type: Transform + pos: -4.5,6.5 + parent: 1 + - uid: 690 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,16.5 + parent: 1 + - uid: 691 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,16.5 + parent: 1 + - uid: 702 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,8.5 + parent: 1 +- proto: PoweredSmallLight + entities: + - uid: 692 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,9.5 + parent: 1 + - uid: 693 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,9.5 + parent: 1 + - uid: 694 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,1.5 + parent: 1 + - uid: 695 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,1.5 + parent: 1 +- proto: RandomPosterAny + entities: + - uid: 744 + components: + - type: Transform + pos: -16.5,-0.5 + parent: 1 + - uid: 745 + components: + - type: Transform + pos: -5.5,-0.5 + parent: 1 +- proto: RandomPosterLegit + entities: + - uid: 742 + components: + - type: Transform + pos: -13.5,15.5 + parent: 1 + - uid: 743 + components: + - type: Transform + pos: -8.5,15.5 + parent: 1 +- proto: RandomProduce + entities: + - uid: 509 + components: + - type: Transform + pos: -7.5,14.5 + parent: 1 +- proto: RandomVendingDrinks + entities: + - uid: 717 + components: + - type: Transform + pos: -16.5,2.5 + parent: 1 +- proto: RandomVendingSnacks + entities: + - uid: 718 + components: + - type: Transform + pos: -5.5,2.5 + parent: 1 +- proto: ShotGunCabinetFilled + entities: + - uid: 715 + components: + - type: Transform + pos: -5.5,7.5 + parent: 1 + - type: AccessReader + access: + - - Armory +- proto: ShuttleWindow + entities: + - uid: 102 + components: + - type: Transform + pos: -2.5,4.5 + parent: 1 + - uid: 106 + components: + - type: Transform + pos: -2.5,5.5 + parent: 1 + - uid: 160 + components: + - type: Transform + pos: -19.5,6.5 + parent: 1 + - uid: 161 + components: + - type: Transform + pos: -19.5,5.5 + parent: 1 + - uid: 162 + components: + - type: Transform + pos: -19.5,4.5 + parent: 1 + - uid: 191 + components: + - type: Transform + pos: -12.5,19.5 + parent: 1 + - uid: 192 + components: + - type: Transform + pos: -11.5,19.5 + parent: 1 + - uid: 193 + components: + - type: Transform + pos: -10.5,19.5 + parent: 1 + - uid: 194 + components: + - type: Transform + pos: -9.5,19.5 + parent: 1 + - uid: 260 + components: + - type: Transform + pos: -16.5,15.5 + parent: 1 + - uid: 261 + components: + - type: Transform + pos: -16.5,14.5 + parent: 1 + - uid: 262 + components: + - type: Transform + pos: -16.5,13.5 + parent: 1 + - uid: 264 + components: + - type: Transform + pos: -5.5,15.5 + parent: 1 + - uid: 265 + components: + - type: Transform + pos: -5.5,14.5 + parent: 1 + - uid: 266 + components: + - type: Transform + pos: -5.5,13.5 + parent: 1 + - uid: 656 + components: + - type: Transform + pos: -15.5,-7.5 + parent: 1 + - uid: 657 + components: + - type: Transform + pos: -14.5,-7.5 + parent: 1 + - uid: 658 + components: + - type: Transform + pos: -7.5,-7.5 + parent: 1 + - uid: 659 + components: + - type: Transform + pos: -6.5,-7.5 + parent: 1 + - uid: 660 + components: + - type: Transform + pos: -2.5,6.5 + parent: 1 +- proto: SignalButton + entities: + - uid: 708 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,17.5 + parent: 1 + - type: DeviceLinkSource + linkedPorts: + 713: + - Pressed: Toggle + 712: + - Pressed: Toggle + 711: + - Pressed: Toggle + 710: + - Pressed: Toggle +- proto: SignEngineering + entities: + - uid: 323 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-3.5 + parent: 1 +- proto: SignMedical + entities: + - uid: 493 + components: + - type: Transform + pos: -14.5,7.5 + parent: 1 + - uid: 494 + components: + - type: Transform + pos: -14.5,3.5 + parent: 1 +- proto: SignSecurity + entities: + - uid: 497 + components: + - type: Transform + pos: -7.5,7.5 + parent: 1 + - uid: 498 + components: + - type: Transform + pos: -7.5,3.5 + parent: 1 +- proto: SMESBasic + entities: + - uid: 272 + components: + - type: Transform + pos: -8.5,-4.5 + parent: 1 +- proto: SodaDispenser + entities: + - uid: 740 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,13.5 + parent: 1 +- proto: StasisBed + entities: + - uid: 199 + components: + - type: Transform + pos: -18.5,4.5 + parent: 1 +- proto: StoolBar + entities: + - uid: 502 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,11.5 + parent: 1 + - uid: 503 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,11.5 + parent: 1 +- proto: Stunbaton + entities: + - uid: 748 + components: + - type: Transform + pos: -12.549713,18.48564 + parent: 1 +- proto: SubstationBasic + entities: + - uid: 273 + components: + - type: Transform + pos: -9.5,-4.5 + parent: 1 +- proto: TableCounterMetal + entities: + - uid: 244 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,13.5 + parent: 1 + - uid: 245 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,14.5 + parent: 1 + - uid: 499 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,12.5 + parent: 1 + - uid: 500 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,15.5 + parent: 1 +- proto: TableCounterWood + entities: + - uid: 131 + components: + - type: Transform + pos: -14.5,12.5 + parent: 1 + - uid: 257 + components: + - type: Transform + pos: -14.5,13.5 + parent: 1 + - uid: 258 + components: + - type: Transform + pos: -14.5,14.5 + parent: 1 +- proto: TableReinforced + entities: + - uid: 655 + components: + - type: Transform + pos: -12.5,18.5 + parent: 1 +- proto: TableReinforcedGlass + entities: + - uid: 213 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,-2.5 + parent: 1 + - uid: 216 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,-2.5 + parent: 1 + - uid: 219 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,-2.5 + parent: 1 + - uid: 222 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,-2.5 + parent: 1 + - uid: 325 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,-4.5 + parent: 1 +- proto: Thruster + entities: + - uid: 80 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,-8.5 + parent: 1 + - uid: 83 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,-8.5 + parent: 1 + - uid: 328 + components: + - type: Transform + pos: -6.5,17.5 + parent: 1 + - uid: 329 + components: + - type: Transform + pos: -15.5,17.5 + parent: 1 + - uid: 330 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,-8.5 + parent: 1 + - uid: 331 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,-8.5 + parent: 1 + - uid: 332 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,12.5 + parent: 1 + - uid: 333 + components: + - type: Transform + pos: -14.5,17.5 + parent: 1 + - uid: 334 + components: + - type: Transform + pos: -7.5,17.5 + parent: 1 + - uid: 335 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,12.5 + parent: 1 + - uid: 336 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-1.5 + parent: 1 + - uid: 337 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-2.5 + parent: 1 + - uid: 338 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,-1.5 + parent: 1 + - uid: 339 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,-2.5 + parent: 1 +- proto: ToolboxElectricalFilled + entities: + - uid: 326 + components: + - type: Transform + pos: -14.508816,-4.2057247 + parent: 1 +- proto: ToolboxMechanicalFilled + entities: + - uid: 327 + components: + - type: Transform + pos: -14.508816,-4.4713497 + parent: 1 +- proto: VendingMachineBooze + entities: + - uid: 259 + components: + - type: Transform + pos: -14.5,15.5 + parent: 1 +- proto: VendingMachineWallMedical + entities: + - uid: 490 + components: + - type: Transform + pos: -16.5,7.5 + parent: 1 +- proto: WallShuttle + entities: + - uid: 2 + components: + - type: Transform + pos: -19.5,9.5 + parent: 1 + - uid: 3 + components: + - type: Transform + pos: 0.5,1.5 + parent: 1 + - uid: 4 + components: + - type: Transform + pos: 0.5,3.5 + parent: 1 + - uid: 5 + components: + - type: Transform + pos: 0.5,9.5 + parent: 1 + - uid: 6 + components: + - type: Transform + pos: -19.5,1.5 + parent: 1 + - uid: 7 + components: + - type: Transform + pos: 0.5,11.5 + parent: 1 + - uid: 8 + components: + - type: Transform + pos: -22.5,-0.5 + parent: 1 + - uid: 9 + components: + - type: Transform + pos: -22.5,1.5 + parent: 1 + - uid: 10 + components: + - type: Transform + pos: -22.5,3.5 + parent: 1 + - uid: 11 + components: + - type: Transform + pos: -22.5,7.5 + parent: 1 + - uid: 12 + components: + - type: Transform + pos: -22.5,9.5 + parent: 1 + - uid: 13 + components: + - type: Transform + pos: -22.5,11.5 + parent: 1 + - uid: 14 + components: + - type: Transform + pos: -0.5,3.5 + parent: 1 + - uid: 15 + components: + - type: Transform + pos: -1.5,3.5 + parent: 1 + - uid: 16 + components: + - type: Transform + pos: -2.5,3.5 + parent: 1 + - uid: 17 + components: + - type: Transform + pos: -3.5,3.5 + parent: 1 + - uid: 18 + components: + - type: Transform + pos: -0.5,7.5 + parent: 1 + - uid: 19 + components: + - type: Transform + pos: -1.5,7.5 + parent: 1 + - uid: 20 + components: + - type: Transform + pos: -2.5,7.5 + parent: 1 + - uid: 21 + components: + - type: Transform + pos: -3.5,7.5 + parent: 1 + - uid: 22 + components: + - type: Transform + pos: -5.5,12.5 + parent: 1 + - uid: 23 + components: + - type: Transform + pos: -5.5,11.5 + parent: 1 + - uid: 24 + components: + - type: Transform + pos: -4.5,11.5 + parent: 1 + - uid: 25 + components: + - type: Transform + pos: -5.5,-1.5 + parent: 1 + - uid: 26 + components: + - type: Transform + pos: -5.5,-0.5 + parent: 1 + - uid: 27 + components: + - type: Transform + pos: -4.5,-0.5 + parent: 1 + - uid: 28 + components: + - type: Transform + pos: -17.5,-0.5 + parent: 1 + - uid: 29 + components: + - type: Transform + pos: -16.5,-0.5 + parent: 1 + - uid: 30 + components: + - type: Transform + pos: -16.5,-1.5 + parent: 1 + - uid: 31 + components: + - type: Transform + pos: -17.5,11.5 + parent: 1 + - uid: 32 + components: + - type: Transform + pos: -16.5,11.5 + parent: 1 + - uid: 33 + components: + - type: Transform + pos: -16.5,12.5 + parent: 1 + - uid: 34 + components: + - type: Transform + pos: -21.5,11.5 + parent: 1 + - uid: 35 + components: + - type: Transform + pos: -20.5,11.5 + parent: 1 + - uid: 36 + components: + - type: Transform + pos: -19.5,11.5 + parent: 1 + - uid: 37 + components: + - type: Transform + pos: -18.5,11.5 + parent: 1 + - uid: 38 + components: + - type: Transform + pos: -21.5,7.5 + parent: 1 + - uid: 39 + components: + - type: Transform + pos: -20.5,7.5 + parent: 1 + - uid: 40 + components: + - type: Transform + pos: -19.5,7.5 + parent: 1 + - uid: 41 + components: + - type: Transform + pos: -18.5,7.5 + parent: 1 + - uid: 42 + components: + - type: Transform + pos: -17.5,7.5 + parent: 1 + - uid: 43 + components: + - type: Transform + pos: -16.5,7.5 + parent: 1 + - uid: 44 + components: + - type: Transform + pos: -16.5,3.5 + parent: 1 + - uid: 45 + components: + - type: Transform + pos: -17.5,3.5 + parent: 1 + - uid: 46 + components: + - type: Transform + pos: -18.5,3.5 + parent: 1 + - uid: 47 + components: + - type: Transform + pos: -19.5,3.5 + parent: 1 + - uid: 48 + components: + - type: Transform + pos: -20.5,3.5 + parent: 1 + - uid: 49 + components: + - type: Transform + pos: -21.5,3.5 + parent: 1 + - uid: 50 + components: + - type: Transform + pos: -21.5,-0.5 + parent: 1 + - uid: 51 + components: + - type: Transform + pos: -20.5,-0.5 + parent: 1 + - uid: 52 + components: + - type: Transform + pos: -19.5,-0.5 + parent: 1 + - uid: 53 + components: + - type: Transform + pos: -18.5,-0.5 + parent: 1 + - uid: 54 + components: + - type: Transform + pos: -3.5,-0.5 + parent: 1 + - uid: 55 + components: + - type: Transform + pos: -2.5,-0.5 + parent: 1 + - uid: 56 + components: + - type: Transform + pos: -1.5,-0.5 + parent: 1 + - uid: 57 + components: + - type: Transform + pos: -0.5,-0.5 + parent: 1 + - uid: 58 + components: + - type: Transform + pos: -3.5,11.5 + parent: 1 + - uid: 59 + components: + - type: Transform + pos: -2.5,11.5 + parent: 1 + - uid: 60 + components: + - type: Transform + pos: -1.5,11.5 + parent: 1 + - uid: 61 + components: + - type: Transform + pos: -0.5,11.5 + parent: 1 + - uid: 62 + components: + - type: Transform + pos: -12.5,13.5 + parent: 1 + - uid: 63 + components: + - type: Transform + pos: -13.5,15.5 + parent: 1 + - uid: 64 + components: + - type: Transform + pos: -13.5,13.5 + parent: 1 + - uid: 65 + components: + - type: Transform + pos: -13.5,14.5 + parent: 1 + - uid: 66 + components: + - type: Transform + pos: -13.5,16.5 + parent: 1 + - uid: 67 + components: + - type: Transform + pos: -13.5,17.5 + parent: 1 + - uid: 68 + components: + - type: Transform + pos: -5.5,-5.5 + parent: 1 + - uid: 69 + components: + - type: Transform + pos: -5.5,-4.5 + parent: 1 + - uid: 70 + components: + - type: Transform + pos: -9.5,13.5 + parent: 1 + - uid: 71 + components: + - type: Transform + pos: -8.5,13.5 + parent: 1 + - uid: 72 + components: + - type: Transform + pos: -8.5,17.5 + parent: 1 + - uid: 73 + components: + - type: Transform + pos: -8.5,16.5 + parent: 1 + - uid: 74 + components: + - type: Transform + pos: -8.5,15.5 + parent: 1 + - uid: 75 + components: + - type: Transform + pos: -8.5,14.5 + parent: 1 + - uid: 79 + components: + - type: Transform + pos: -16.5,16.5 + parent: 1 + - uid: 81 + components: + - type: Transform + pos: -14.5,16.5 + parent: 1 + - uid: 82 + components: + - type: Transform + pos: -7.5,16.5 + parent: 1 + - uid: 84 + components: + - type: Transform + pos: -5.5,16.5 + parent: 1 + - uid: 85 + components: + - type: Transform + pos: -15.5,16.5 + parent: 1 + - uid: 89 + components: + - type: Transform + pos: -8.5,19.5 + parent: 1 + - uid: 92 + components: + - type: Transform + pos: 0.5,7.5 + parent: 1 + - uid: 93 + components: + - type: Transform + pos: 0.5,-0.5 + parent: 1 + - uid: 99 + components: + - type: Transform + pos: -2.5,1.5 + parent: 1 + - uid: 100 + components: + - type: Transform + pos: -2.5,9.5 + parent: 1 + - uid: 101 + components: + - type: Transform + pos: -5.5,-3.5 + parent: 1 + - uid: 103 + components: + - type: Transform + pos: -14.5,7.5 + parent: 1 + - uid: 104 + components: + - type: Transform + pos: -13.5,7.5 + parent: 1 + - uid: 105 + components: + - type: Transform + pos: -8.5,4.5 + parent: 1 + - uid: 107 + components: + - type: Transform + pos: -14.5,3.5 + parent: 1 + - uid: 108 + components: + - type: Transform + pos: -13.5,3.5 + parent: 1 + - uid: 113 + components: + - type: Transform + pos: -4.5,7.5 + parent: 1 + - uid: 114 + components: + - type: Transform + pos: -5.5,7.5 + parent: 1 + - uid: 116 + components: + - type: Transform + pos: -7.5,7.5 + parent: 1 + - uid: 117 + components: + - type: Transform + pos: -8.5,7.5 + parent: 1 + - uid: 118 + components: + - type: Transform + pos: -8.5,5.5 + parent: 1 + - uid: 119 + components: + - type: Transform + pos: -4.5,3.5 + parent: 1 + - uid: 120 + components: + - type: Transform + pos: -5.5,3.5 + parent: 1 + - uid: 121 + components: + - type: Transform + pos: -7.5,3.5 + parent: 1 + - uid: 122 + components: + - type: Transform + pos: -8.5,3.5 + parent: 1 + - uid: 123 + components: + - type: Transform + pos: -13.5,4.5 + parent: 1 + - uid: 125 + components: + - type: Transform + pos: -13.5,6.5 + parent: 1 + - uid: 126 + components: + - type: Transform + pos: -8.5,6.5 + parent: 1 + - uid: 127 + components: + - type: Transform + pos: -13.5,5.5 + parent: 1 + - uid: 128 + components: + - type: Transform + pos: -8.5,12.5 + parent: 1 + - uid: 129 + components: + - type: Transform + pos: -5.5,-2.5 + parent: 1 + - uid: 138 + components: + - type: Transform + pos: -8.5,18.5 + parent: 1 + - uid: 140 + components: + - type: Transform + pos: -13.5,18.5 + parent: 1 + - uid: 141 + components: + - type: Transform + pos: -13.5,19.5 + parent: 1 + - uid: 142 + components: + - type: Transform + pos: -5.5,-6.5 + parent: 1 + - uid: 143 + components: + - type: Transform + pos: -5.5,-7.5 + parent: 1 + - uid: 144 + components: + - type: Transform + pos: -16.5,-2.5 + parent: 1 + - uid: 145 + components: + - type: Transform + pos: -16.5,-3.5 + parent: 1 + - uid: 146 + components: + - type: Transform + pos: -16.5,-4.5 + parent: 1 + - uid: 147 + components: + - type: Transform + pos: -16.5,-5.5 + parent: 1 + - uid: 148 + components: + - type: Transform + pos: -16.5,-6.5 + parent: 1 + - uid: 149 + components: + - type: Transform + pos: -16.5,-7.5 + parent: 1 + - uid: 152 + components: + - type: Transform + pos: -13.5,-7.5 + parent: 1 + - uid: 153 + components: + - type: Transform + pos: -12.5,-7.5 + parent: 1 + - uid: 154 + components: + - type: Transform + pos: -11.5,-7.5 + parent: 1 + - uid: 155 + components: + - type: Transform + pos: -10.5,-7.5 + parent: 1 + - uid: 156 + components: + - type: Transform + pos: -9.5,-7.5 + parent: 1 + - uid: 157 + components: + - type: Transform + pos: -8.5,-7.5 + parent: 1 + - uid: 171 + components: + - type: Transform + pos: -15.5,-3.5 + parent: 1 + - uid: 172 + components: + - type: Transform + pos: -13.5,-3.5 + parent: 1 + - uid: 173 + components: + - type: Transform + pos: -12.5,-3.5 + parent: 1 + - uid: 174 + components: + - type: Transform + pos: -14.5,-3.5 + parent: 1 + - uid: 175 + components: + - type: Transform + pos: -6.5,-3.5 + parent: 1 + - uid: 176 + components: + - type: Transform + pos: -7.5,-3.5 + parent: 1 + - uid: 177 + components: + - type: Transform + pos: -8.5,-3.5 + parent: 1 + - uid: 178 + components: + - type: Transform + pos: -9.5,-3.5 + parent: 1 + - uid: 256 + components: + - type: Transform + pos: -13.5,12.5 + parent: 1 + - uid: 263 + components: + - type: Transform + pos: -6.5,16.5 + parent: 1 + - uid: 267 + components: + - type: Transform + pos: -8.5,11.5 + parent: 1 + - uid: 268 + components: + - type: Transform + pos: -13.5,11.5 + parent: 1 + - uid: 340 + components: + - type: Transform + pos: -8.5,-8.5 + parent: 1 + - uid: 341 + components: + - type: Transform + pos: -13.5,-8.5 + parent: 1 +- proto: WarpPointEvacShuttle + entities: + - uid: 719 + components: + - type: Transform + pos: -11.5,12.5 + parent: 1 +- proto: WeaponCapacitorRecharger + entities: + - uid: 510 + components: + - type: Transform + pos: -12.5,18.5 + parent: 1 +- proto: WindoorSecureBarLocked + entities: + - uid: 504 + components: + - type: Transform + pos: -15.5,12.5 + parent: 1 + - uid: 661 + components: + - type: Transform + pos: -14.5,12.5 + parent: 1 +- proto: WindoorSecureEngineeringLocked + entities: + - uid: 324 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,-5.5 + parent: 1 +- proto: WindoorSecureKitchenLocked + entities: + - uid: 505 + components: + - type: Transform + pos: -6.5,12.5 + parent: 1 + - uid: 662 + components: + - type: Transform + pos: -7.5,12.5 + parent: 1 +- proto: WindoorSecureSecurityLocked + entities: + - uid: 124 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,5.5 + parent: 1 +- proto: WindowReinforcedDirectional + entities: + - uid: 206 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,6.5 + parent: 1 + - uid: 207 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,4.5 + parent: 1 + - uid: 321 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,-4.5 + parent: 1 + - uid: 322 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,-6.5 + parent: 1 +... diff --git a/Resources/Maps/asterisk.yml b/Resources/Maps/asterisk.yml index af3be7bfb33..e57b4e86c6a 100644 --- a/Resources/Maps/asterisk.yml +++ b/Resources/Maps/asterisk.yml @@ -36,6 +36,11 @@ tilemap: 78: FloorReinforced 79: FloorReinforcedHardened 2: FloorShowroom + 6: FloorShuttleBlack + 5: FloorShuttleBlue + 9: FloorShuttleGrey + 8: FloorShuttleOrange + 7: FloorShuttleRed 90: FloorSnow 91: FloorSnowDug 92: FloorSteel @@ -79,147 +84,147 @@ entities: chunks: 0,0: ind: 0,0 - tiles: XAAAAAADXAAAAAAAXAAAAAACXAAAAAACawAAAAAAXAAAAAACLgAAAAACXAAAAAABXAAAAAADfAAAAAAAHgAAAAABHgAAAAACHgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAXAAAAAAALgAAAAADLgAAAAADXAAAAAABawAAAAAAXAAAAAADXAAAAAADLgAAAAACXAAAAAACawAAAAAAeQAAAAACeQAAAAAAeQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAXAAAAAADXAAAAAAAXAAAAAABXAAAAAAAfAAAAAAAXAAAAAADLgAAAAAAXAAAAAADXAAAAAAAfAAAAAAAeQAAAAACeQAAAAACeQAAAAACfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAawAAAAAAawAAAAAAawAAAAAAfAAAAAAAfAAAAAAAXAAAAAAALgAAAAACXAAAAAACawAAAAAAHgAAAAABHgAAAAACHgAAAAADbAAAAAAAfAAAAAAAfAAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAfAAAAAAAXAAAAAAAXAAAAAADXAAAAAABfAAAAAAAHgAAAAACHgAAAAABHgAAAAADfAAAAAAAfAAAAAAAfAAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAfAAAAAAAXAAAAAAAXAAAAAABXAAAAAADfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAfAAAAAAAXAAAAAAAXAAAAAACXAAAAAABbAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAbAAAAAAAfAAAAAAAfAAAAAAATgAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAfAAAAAAAXAAAAAACXAAAAAACXAAAAAADfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAATgAAAAAAfAAAAAAAawAAAAAAawAAAAAAfAAAAAAAfAAAAAAACwAAAAAACwAAAAAACwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAATgAAAAAAXAAAAAABXAAAAAAAXAAAAAACXAAAAAADfAAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAABXAAAAAADawAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAbAAAAAAAfAAAAAAAfAAAAAAAXAAAAAADXAAAAAAAXAAAAAAAXAAAAAADXAAAAAACfAAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAXAAAAAAAXAAAAAADXAAAAAABXAAAAAADXAAAAAACXAAAAAACfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAXAAAAAAAXAAAAAABXAAAAAAAXAAAAAABXAAAAAABXAAAAAABawAAAAAAeQAAAAACeQAAAAABeQAAAAACeQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAXAAAAAABTgAAAAAATgAAAAAATgAAAAAAXAAAAAACXAAAAAADfAAAAAAAeQAAAAABeQAAAAABeQAAAAACeQAAAAADfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAbAAAAAAAawAAAAAAfAAAAAAAfAAAAAAATgAAAAAAawAAAAAAawAAAAAAfAAAAAAAeQAAAAADeQAAAAAAeQAAAAAAeQAAAAACfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAA + tiles: XAAAAAADXAAAAAAAXAAAAAACXAAAAAACawAAAAAAXAAAAAACLgAAAAACXAAAAAABXAAAAAADTgAAAAAAHgAAAAABHgAAAAACHgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAXAAAAAAALgAAAAADLgAAAAADXAAAAAABawAAAAAAXAAAAAADXAAAAAADLgAAAAACXAAAAAACawAAAAAAeQAAAAACeQAAAAAAeQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAXAAAAAADXAAAAAAAXAAAAAABXAAAAAAAfAAAAAAAXAAAAAADLgAAAAAAXAAAAAADXAAAAAAATgAAAAAAeQAAAAACeQAAAAACeQAAAAACfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAawAAAAAAawAAAAAAawAAAAAAfAAAAAAAfAAAAAAAXAAAAAAALgAAAAACXAAAAAACawAAAAAAHgAAAAABHgAAAAACHgAAAAADbAAAAAAAfAAAAAAAfAAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAfAAAAAAAXAAAAAAAXAAAAAADXAAAAAABfAAAAAAAHgAAAAACHgAAAAABHgAAAAADfAAAAAAAfAAAAAAAfAAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAATgAAAAAAXAAAAAAAXAAAAAABXAAAAAADfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAATgAAAAAAXAAAAAAAXAAAAAACXAAAAAABbAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAbAAAAAAAfAAAAAAAfAAAAAAATgAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAfAAAAAAAXAAAAAACXAAAAAACXAAAAAADfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAATgAAAAAAfAAAAAAAawAAAAAAawAAAAAAfAAAAAAAfAAAAAAACwAAAAAACwAAAAAACwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAATgAAAAAAXAAAAAABXAAAAAAAXAAAAAACXAAAAAADfAAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAABXAAAAAADawAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAbAAAAAAAfAAAAAAAfAAAAAAAXAAAAAADXAAAAAAAXAAAAAAAXAAAAAADXAAAAAACfAAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAXAAAAAAAXAAAAAADXAAAAAABXAAAAAADXAAAAAACXAAAAAACfAAAAAAAfAAAAAAATgAAAAAATgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAXAAAAAAAXAAAAAABXAAAAAAAXAAAAAABXAAAAAABXAAAAAABawAAAAAAeQAAAAACeQAAAAABeQAAAAACeQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAXAAAAAABTgAAAAAATgAAAAAATgAAAAAAXAAAAAACXAAAAAADfAAAAAAAeQAAAAABeQAAAAABeQAAAAACeQAAAAADfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAbAAAAAAAawAAAAAAfAAAAAAAfAAAAAAATgAAAAAAawAAAAAAawAAAAAAfAAAAAAAeQAAAAADeQAAAAAAeQAAAAAAeQAAAAACfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAA version: 6 -1,0: ind: -1,0 - tiles: fAAAAAAAfAAAAAAAbQAAAAACbQAAAAACbQAAAAADbQAAAAABfAAAAAAAXAAAAAADXAAAAAACXAAAAAACXAAAAAAAawAAAAAAXAAAAAABXAAAAAABXAAAAAAAXAAAAAADfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAbAAAAAAAfAAAAAAAXAAAAAABLgAAAAADXAAAAAABXAAAAAAAawAAAAAAXAAAAAAALgAAAAADLgAAAAADXAAAAAABfAAAAAAAbQAAAAACfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAXAAAAAADLgAAAAAAXAAAAAAAXAAAAAADfAAAAAAAXAAAAAACXAAAAAAAXAAAAAAAXAAAAAADfAAAAAAAbQAAAAADfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAbAAAAAAAXAAAAAABXAAAAAAAXAAAAAABfAAAAAAAfAAAAAAAawAAAAAAawAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAbAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAawAAAAAAfAAAAAAAfAAAAAAAXAAAAAADXAAAAAABXAAAAAABXAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAbAAAAAAAXAAAAAABXAAAAAABXAAAAAADfAAAAAAAXAAAAAABLgAAAAACLgAAAAADXAAAAAACfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAXAAAAAABXAAAAAAAXAAAAAADawAAAAAAXAAAAAADLgAAAAADLgAAAAACXAAAAAADfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAHgAAAAAAHgAAAAABHgAAAAACfAAAAAAAXAAAAAACLgAAAAABXAAAAAACfAAAAAAAXAAAAAADXAAAAAABXAAAAAABXAAAAAABfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAHgAAAAACLgAAAAAAHgAAAAABfAAAAAAAXAAAAAADLgAAAAAAXAAAAAADfAAAAAAAfAAAAAAAawAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAHgAAAAADLgAAAAACHgAAAAABfAAAAAAAXAAAAAAAXAAAAAABXAAAAAABfAAAAAAAXAAAAAADXAAAAAAAXAAAAAABXAAAAAAAXAAAAAAAfAAAAAAAfAAAAAAAbAAAAAAAHgAAAAADHgAAAAACHgAAAAAAawAAAAAAXAAAAAABXAAAAAABXAAAAAAAfAAAAAAAXAAAAAACXAAAAAACXAAAAAACXAAAAAABXAAAAAADfAAAAAAAfAAAAAAAfAAAAAAAeQAAAAACeQAAAAAAeQAAAAAAfAAAAAAAXAAAAAADLgAAAAACXAAAAAAAfAAAAAAAXAAAAAADXAAAAAADXAAAAAACXAAAAAABXAAAAAACfAAAAAAAbAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAXAAAAAAALgAAAAACXAAAAAACfAAAAAAAXAAAAAACXAAAAAAAXAAAAAACXAAAAAADXAAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAfAAAAAAAXAAAAAAAXAAAAAADXAAAAAADXAAAAAADfAAAAAAAXAAAAAAAXAAAAAAAXAAAAAADXAAAAAACXAAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAawAAAAAAXAAAAAACXAAAAAACXAAAAAADXAAAAAACfAAAAAAAXAAAAAAAXAAAAAACXAAAAAADXAAAAAAAXAAAAAADPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAawAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAawAAAAAAfAAAAAAAfAAAAAAAfAAAAAAA + tiles: fAAAAAAAfAAAAAAAbQAAAAACbQAAAAACbQAAAAADbQAAAAABTgAAAAAAXAAAAAADXAAAAAACXAAAAAACXAAAAAAAawAAAAAAXAAAAAABXAAAAAABXAAAAAAAXAAAAAADfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAbAAAAAAAfAAAAAAAXAAAAAABLgAAAAADXAAAAAABXAAAAAAAawAAAAAAXAAAAAAALgAAAAADLgAAAAADXAAAAAABfAAAAAAAbQAAAAACfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAXAAAAAADLgAAAAAAXAAAAAAAXAAAAAADfAAAAAAAXAAAAAACXAAAAAAAXAAAAAAAXAAAAAADfAAAAAAAbQAAAAADfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAbAAAAAAAXAAAAAABXAAAAAAAXAAAAAABfAAAAAAAfAAAAAAAawAAAAAAawAAAAAATgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAbAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAawAAAAAATgAAAAAAfAAAAAAAXAAAAAADXAAAAAABXAAAAAABXAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAbAAAAAAAXAAAAAABXAAAAAABXAAAAAADfAAAAAAAXAAAAAABLgAAAAACLgAAAAADXAAAAAACTgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAXAAAAAABXAAAAAAAXAAAAAADawAAAAAAXAAAAAADLgAAAAADLgAAAAACXAAAAAADTgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAHgAAAAAAHgAAAAABHgAAAAACTgAAAAAAXAAAAAACLgAAAAABXAAAAAACfAAAAAAAXAAAAAADXAAAAAABXAAAAAABXAAAAAABfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAHgAAAAACLgAAAAAAHgAAAAABTgAAAAAAXAAAAAADLgAAAAAAXAAAAAADfAAAAAAAfAAAAAAAawAAAAAATgAAAAAATgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAHgAAAAADLgAAAAACHgAAAAABfAAAAAAAXAAAAAAAXAAAAAABXAAAAAABfAAAAAAAXAAAAAADXAAAAAAAXAAAAAABXAAAAAAAXAAAAAAAfAAAAAAAfAAAAAAAbAAAAAAAHgAAAAADHgAAAAACHgAAAAAAawAAAAAAXAAAAAABXAAAAAABXAAAAAAAfAAAAAAAXAAAAAACXAAAAAACXAAAAAACXAAAAAABXAAAAAADfAAAAAAAfAAAAAAAfAAAAAAAeQAAAAACeQAAAAAAeQAAAAAAfAAAAAAAXAAAAAADLgAAAAACXAAAAAAATgAAAAAAXAAAAAADXAAAAAADXAAAAAACXAAAAAABXAAAAAACfAAAAAAAbAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAXAAAAAAALgAAAAACXAAAAAACTgAAAAAAXAAAAAACXAAAAAAAXAAAAAACXAAAAAADXAAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAfAAAAAAAXAAAAAAAXAAAAAADXAAAAAADXAAAAAADfAAAAAAAXAAAAAAAXAAAAAAAXAAAAAADXAAAAAACXAAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAawAAAAAAXAAAAAACXAAAAAACXAAAAAADXAAAAAACfAAAAAAAXAAAAAAAXAAAAAACXAAAAAADXAAAAAAAXAAAAAADPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAfAAAAAAAfAAAAAAATgAAAAAAawAAAAAATgAAAAAAfAAAAAAAfAAAAAAAawAAAAAAfAAAAAAAfAAAAAAATgAAAAAA version: 6 0,-1: ind: 0,-1 - tiles: fAAAAAAADgAAAAAALgAAAAAALgAAAAADDgAAAAAALgAAAAAADgAAAAADLgAAAAABLgAAAAAADgAAAAADawAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAfAAAAAAADgAAAAACDgAAAAAADgAAAAACDgAAAAADDgAAAAAADgAAAAACDgAAAAAADgAAAAABDgAAAAABfAAAAAAAOwAAAAAAOwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAawAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAawAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAXAAAAAABXAAAAAADXAAAAAABXAAAAAABXAAAAAABXAAAAAABXAAAAAACXAAAAAACXAAAAAACbAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAALgAAAAACLgAAAAAAXAAAAAADXAAAAAADLgAAAAADLgAAAAADXAAAAAADXAAAAAABXAAAAAADfAAAAAAAfAAAAAAAbAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAXAAAAAACXAAAAAAAXAAAAAABXAAAAAADXAAAAAACXAAAAAADXAAAAAAALgAAAAACXAAAAAADfAAAAAAAXAAAAAABXAAAAAACXAAAAAAAXAAAAAADXAAAAAABfAAAAAAAawAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAXAAAAAACLgAAAAACXAAAAAABfAAAAAAAXAAAAAADLgAAAAADLgAAAAABLgAAAAABXAAAAAACfAAAAAAATwAAAAAAfAAAAAAAAAAAAAAAewAAAAAAewAAAAAAfAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAfAAAAAAAXAAAAAABXAAAAAABXAAAAAAAXAAAAAABXAAAAAADfAAAAAAATwAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAfAAAAAAAXAAAAAABXAAAAAADXAAAAAADfAAAAAAAfAAAAAAAawAAAAAAfAAAAAAAawAAAAAAfAAAAAAAfAAAAAAATQAAAAAATQAAAAABfAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAXAAAAAADLgAAAAABXAAAAAADawAAAAAAXAAAAAAAXAAAAAABXAAAAAACXAAAAAADXAAAAAADXAAAAAAANAAAAAAANAAAAAAAfAAAAAAAewAAAAAAewAAAAAAfAAAAAAAXAAAAAAALgAAAAAAXAAAAAABfAAAAAAAXAAAAAADXAAAAAAALgAAAAABLgAAAAAAXAAAAAABXAAAAAABNAAAAAAANAAAAAADfAAAAAAAewAAAAAAewAAAAAAfAAAAAAAXAAAAAAAXAAAAAADXAAAAAACawAAAAAAXAAAAAABXAAAAAADXAAAAAADXAAAAAACXAAAAAACXAAAAAACfAAAAAAAfAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAawAAAAAAfAAAAAAAfAAAAAAAXAAAAAAAXAAAAAAAXAAAAAABfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAfAAAAAAAXAAAAAABXAAAAAABXAAAAAADfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAfAAAAAAAXAAAAAABXAAAAAAAXAAAAAAAbAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAXAAAAAACLgAAAAACXAAAAAACfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAA + tiles: fAAAAAAADgAAAAAALgAAAAAALgAAAAADDgAAAAAALgAAAAAADgAAAAADLgAAAAABLgAAAAAADgAAAAADawAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAfAAAAAAADgAAAAACDgAAAAAADgAAAAACDgAAAAADDgAAAAAADgAAAAACDgAAAAAADgAAAAABDgAAAAABfAAAAAAAOwAAAAAAOwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAATgAAAAAAawAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAawAAAAAATgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAXAAAAAABXAAAAAADXAAAAAABXAAAAAABXAAAAAABXAAAAAABXAAAAAACXAAAAAACXAAAAAACbAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAALgAAAAACLgAAAAAAXAAAAAADXAAAAAADLgAAAAADLgAAAAADXAAAAAADXAAAAAABXAAAAAADfAAAAAAAfAAAAAAAbAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAXAAAAAACXAAAAAAAXAAAAAABXAAAAAADXAAAAAACXAAAAAADXAAAAAAALgAAAAACXAAAAAADTgAAAAAAXAAAAAABXAAAAAACXAAAAAAAXAAAAAADXAAAAAABfAAAAAAAawAAAAAAfAAAAAAATgAAAAAATgAAAAAATgAAAAAAfAAAAAAAXAAAAAACLgAAAAACXAAAAAABTgAAAAAAXAAAAAADLgAAAAADLgAAAAABLgAAAAABXAAAAAACfAAAAAAATwAAAAAATgAAAAAAAAAAAAAAewAAAAAAewAAAAAATgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAATgAAAAAAXAAAAAABXAAAAAABXAAAAAAAXAAAAAABXAAAAAADfAAAAAAATwAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAATgAAAAAAXAAAAAABXAAAAAADXAAAAAADfAAAAAAAfAAAAAAAawAAAAAATgAAAAAAawAAAAAAfAAAAAAAfAAAAAAATQAAAAAATQAAAAABfAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAXAAAAAADLgAAAAABXAAAAAADawAAAAAAXAAAAAAAXAAAAAABXAAAAAACXAAAAAADXAAAAAADXAAAAAAANAAAAAAANAAAAAAATgAAAAAAewAAAAAAewAAAAAAfAAAAAAAXAAAAAAALgAAAAAAXAAAAAABTgAAAAAAXAAAAAADXAAAAAAALgAAAAABLgAAAAAAXAAAAAABXAAAAAABNAAAAAAANAAAAAADfAAAAAAAewAAAAAAewAAAAAAfAAAAAAAXAAAAAAAXAAAAAADXAAAAAACawAAAAAAXAAAAAABXAAAAAADXAAAAAADXAAAAAACXAAAAAACXAAAAAACTgAAAAAAfAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAfAAAAAAATgAAAAAAawAAAAAATgAAAAAAfAAAAAAAXAAAAAAAXAAAAAAAXAAAAAABfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAATgAAAAAAXAAAAAABXAAAAAABXAAAAAADfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAATgAAAAAAXAAAAAABXAAAAAAAXAAAAAAAbAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAATgAAAAAATgAAAAAATgAAAAAAfAAAAAAAfAAAAAAAXAAAAAACLgAAAAACXAAAAAACfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAA version: 6 -1,-1: ind: -1,-1 - tiles: fAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAXAAAAAABXAAAAAACXAAAAAABXAAAAAAAfAAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAbAAAAAAAXAAAAAABXAAAAAABLgAAAAACXAAAAAADfAAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAXAAAAAADLgAAAAACXAAAAAABfAAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAfAAAAAAAXAAAAAABXAAAAAAAXAAAAAADfAAAAAAAXAAAAAAAXAAAAAABXAAAAAAAXAAAAAABfAAAAAAAfAAAAAAAbAAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAawAAAAAAXAAAAAACXAAAAAAAXAAAAAACawAAAAAAXAAAAAABLgAAAAAALgAAAAADXAAAAAAAXAAAAAAAfAAAAAAAfAAAAAAAOwAAAAAAOwAAAAAAMAAAAAAAMAAAAAAAfAAAAAAAXAAAAAACLgAAAAABXAAAAAABawAAAAAAXAAAAAABXAAAAAADXAAAAAACXAAAAAADXAAAAAADfAAAAAAAfAAAAAAAOwAAAAAAOwAAAAAAMAAAAAAAMAAAAAAAfAAAAAAAXAAAAAAALgAAAAADXAAAAAABfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAawAAAAAAbAAAAAAAfAAAAAAAOwAAAAAAOwAAAAAAMAAAAAAAMAAAAAAAfAAAAAAAXAAAAAACXAAAAAACXAAAAAABfAAAAAAAewAAAAAAewAAAAAAAAAAAAAAfAAAAAAATwAAAAAAXAAAAAACfAAAAAAAfAAAAAAAawAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAXAAAAAACXAAAAAACXAAAAAABfAAAAAAAewAAAAAAewAAAAAAewAAAAAAfAAAAAAATwAAAAAAXAAAAAACXAAAAAADXAAAAAABXAAAAAACXAAAAAABfAAAAAAAXAAAAAACXAAAAAACLgAAAAABXAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAATQAAAAABTQAAAAABXAAAAAAAXAAAAAAALgAAAAAALgAAAAACXAAAAAACawAAAAAAXAAAAAADXAAAAAAALgAAAAACXAAAAAACfAAAAAAAewAAAAAAewAAAAAAfAAAAAAANAAAAAABNAAAAAAAXAAAAAABXAAAAAACXAAAAAAAXAAAAAACXAAAAAACfAAAAAAAXAAAAAAAXAAAAAAAXAAAAAACXAAAAAAAfAAAAAAAewAAAAAAewAAAAAAfAAAAAAANAAAAAAATgAAAAAAXAAAAAADfAAAAAAAfAAAAAAAawAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAawAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAbQAAAAAAHgAAAAADHgAAAAADHgAAAAACfAAAAAAAXAAAAAACXAAAAAACXAAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAewAAAAAAfAAAAAAAfAAAAAAAbQAAAAAAHgAAAAAAHgAAAAABHgAAAAADfAAAAAAAXAAAAAADLgAAAAABXAAAAAABfAAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAfAAAAAAAfAAAAAAAbQAAAAAAHgAAAAABHgAAAAACHgAAAAABawAAAAAAXAAAAAAALgAAAAACXAAAAAADfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAA + tiles: fAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAXAAAAAABXAAAAAACXAAAAAABXAAAAAAAfAAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAbAAAAAAAXAAAAAABXAAAAAABLgAAAAACXAAAAAADfAAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAXAAAAAADLgAAAAACXAAAAAABfAAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAfAAAAAAAXAAAAAABXAAAAAAAXAAAAAADfAAAAAAAXAAAAAAAXAAAAAABXAAAAAAAXAAAAAABfAAAAAAAfAAAAAAAbAAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAawAAAAAAXAAAAAACXAAAAAAAXAAAAAACawAAAAAAXAAAAAABLgAAAAAALgAAAAADXAAAAAAAXAAAAAAAfAAAAAAAfAAAAAAAOwAAAAAAOwAAAAAAMAAAAAAAMAAAAAAATgAAAAAAXAAAAAACLgAAAAABXAAAAAABawAAAAAAXAAAAAABXAAAAAADXAAAAAACXAAAAAADXAAAAAADfAAAAAAAfAAAAAAAOwAAAAAAOwAAAAAAMAAAAAAAMAAAAAAATgAAAAAAXAAAAAAALgAAAAADXAAAAAABfAAAAAAATgAAAAAATgAAAAAATgAAAAAAfAAAAAAAawAAAAAAbAAAAAAAfAAAAAAAOwAAAAAAOwAAAAAAMAAAAAAAMAAAAAAATgAAAAAAXAAAAAACXAAAAAACXAAAAAABTgAAAAAAewAAAAAAewAAAAAAAAAAAAAATgAAAAAATwAAAAAAXAAAAAACfAAAAAAATgAAAAAAawAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAXAAAAAACXAAAAAACXAAAAAABTgAAAAAAewAAAAAAewAAAAAAewAAAAAAfAAAAAAATwAAAAAAXAAAAAACXAAAAAADXAAAAAABXAAAAAACXAAAAAABTgAAAAAAXAAAAAACXAAAAAACLgAAAAABXAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAATQAAAAABTQAAAAABXAAAAAAAXAAAAAAALgAAAAAALgAAAAACXAAAAAACawAAAAAAXAAAAAADXAAAAAAALgAAAAACXAAAAAACfAAAAAAAewAAAAAAewAAAAAATgAAAAAANAAAAAABNAAAAAAAXAAAAAABXAAAAAACXAAAAAAAXAAAAAACXAAAAAACTgAAAAAAXAAAAAAAXAAAAAAAXAAAAAACXAAAAAAAfAAAAAAAewAAAAAAewAAAAAAfAAAAAAANAAAAAAATgAAAAAAXAAAAAADfAAAAAAAfAAAAAAAawAAAAAAfAAAAAAAfAAAAAAAfAAAAAAATgAAAAAAawAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAfAAAAAAATgAAAAAAfAAAAAAAfAAAAAAAbQAAAAAAHgAAAAADHgAAAAADHgAAAAACfAAAAAAAXAAAAAACXAAAAAACXAAAAAAATgAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAewAAAAAAfAAAAAAAfAAAAAAAbQAAAAAAHgAAAAAAHgAAAAABHgAAAAADfAAAAAAAXAAAAAADLgAAAAABXAAAAAABTgAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAfAAAAAAAfAAAAAAAbQAAAAAAHgAAAAABHgAAAAACHgAAAAABawAAAAAAXAAAAAAALgAAAAACXAAAAAADfAAAAAAAfAAAAAAATgAAAAAATgAAAAAATgAAAAAAfAAAAAAA version: 6 -2,-1: ind: -2,-1 - tiles: aQAAAAABaQAAAAADaQAAAAACaQAAAAACaQAAAAABaQAAAAADfAAAAAAAfAAAAAAAawAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAaQAAAAABaQAAAAACfAAAAAAAHgAAAAABfAAAAAAAHgAAAAABfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAaQAAAAACfAAAAAAAHgAAAAAAfAAAAAAAHgAAAAABawAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAaQAAAAACfAAAAAAAHgAAAAAAfAAAAAAAHgAAAAACfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAaQAAAAABfAAAAAAAfAAAAAAAawAAAAAAawAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAaQAAAAAAaQAAAAAAawAAAAAAXAAAAAACXAAAAAACXAAAAAACXAAAAAAALgAAAAACLgAAAAADXAAAAAACbAAAAAAAfAAAAAAAaQAAAAADaQAAAAADaQAAAAACaQAAAAABaQAAAAAAaQAAAAABawAAAAAAXAAAAAADXAAAAAAAXAAAAAADXAAAAAAALgAAAAACLgAAAAABXAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAawAAAAAAfAAAAAAAfAAAAAAAXAAAAAADXAAAAAAAXAAAAAADXAAAAAAAXAAAAAABXAAAAAAAXAAAAAADfAAAAAAAfAAAAAAAXAAAAAACXAAAAAABXAAAAAAAXAAAAAAAXAAAAAABXAAAAAAAfAAAAAAAfAAAAAAAawAAAAAAawAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAXAAAAAABXAAAAAAAXAAAAAADXAAAAAAAXAAAAAAAXAAAAAABXAAAAAAAXAAAAAABXAAAAAAAXAAAAAACXAAAAAADXAAAAAAAXAAAAAABXAAAAAACXAAAAAAAXAAAAAAAXAAAAAABXAAAAAAAXAAAAAAALgAAAAADLgAAAAADXAAAAAAAXAAAAAADLgAAAAABLgAAAAABXAAAAAADXAAAAAACLgAAAAADLgAAAAADXAAAAAACXAAAAAACLgAAAAACLgAAAAABXAAAAAABXAAAAAABXAAAAAAAXAAAAAAAXAAAAAADXAAAAAADXAAAAAABXAAAAAADXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAACXAAAAAADXAAAAAADXAAAAAADXAAAAAADfAAAAAAAfAAAAAAAawAAAAAAfAAAAAAAfAAAAAAAXAAAAAABXAAAAAABXAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAXAAAAAACeQAAAAACeQAAAAADLgAAAAACeQAAAAAAfAAAAAAAawAAAAAAawAAAAAAfAAAAAAAXAAAAAADLgAAAAACXAAAAAABXAAAAAACLgAAAAACXAAAAAADfAAAAAAAbAAAAAAAeQAAAAACeQAAAAABLgAAAAAAeQAAAAAAfAAAAAAAXAAAAAADXAAAAAACfAAAAAAAXAAAAAABLgAAAAADXAAAAAADXAAAAAABLgAAAAABXAAAAAACfAAAAAAAfAAAAAAAeQAAAAAAeQAAAAACeQAAAAABeQAAAAADawAAAAAAXAAAAAADXAAAAAACXAAAAAADXAAAAAAALgAAAAAAXAAAAAACXAAAAAADLgAAAAAAXAAAAAADbAAAAAAAfAAAAAAA + tiles: aQAAAAABaQAAAAADaQAAAAACaQAAAAACaQAAAAABaQAAAAADfAAAAAAATgAAAAAAawAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAaQAAAAABaQAAAAACfAAAAAAAHgAAAAABfAAAAAAAHgAAAAABTgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAaQAAAAACTgAAAAAAHgAAAAAAfAAAAAAAHgAAAAABawAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAaQAAAAACTgAAAAAAHgAAAAAAfAAAAAAAHgAAAAACTgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAaQAAAAABfAAAAAAAfAAAAAAAawAAAAAAawAAAAAAfAAAAAAATgAAAAAATgAAAAAATgAAAAAAfAAAAAAAfAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAaQAAAAAAaQAAAAAAawAAAAAAXAAAAAACXAAAAAACXAAAAAACXAAAAAAALgAAAAACLgAAAAADXAAAAAACbAAAAAAAfAAAAAAAaQAAAAADaQAAAAADaQAAAAACaQAAAAABaQAAAAAAaQAAAAABawAAAAAAXAAAAAADXAAAAAAAXAAAAAADXAAAAAAALgAAAAACLgAAAAABXAAAAAAAfAAAAAAAfAAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAawAAAAAAfAAAAAAAfAAAAAAAXAAAAAADXAAAAAAAXAAAAAADXAAAAAAAXAAAAAABXAAAAAAAXAAAAAADfAAAAAAAfAAAAAAAXAAAAAACXAAAAAABXAAAAAAAXAAAAAAAXAAAAAABXAAAAAAAfAAAAAAAfAAAAAAAawAAAAAAawAAAAAAfAAAAAAATgAAAAAATgAAAAAAfAAAAAAAfAAAAAAAXAAAAAABXAAAAAAAXAAAAAADXAAAAAAAXAAAAAAAXAAAAAABXAAAAAAAXAAAAAABXAAAAAAAXAAAAAACXAAAAAADXAAAAAAAXAAAAAABXAAAAAACXAAAAAAAXAAAAAAAXAAAAAABXAAAAAAAXAAAAAAALgAAAAADLgAAAAADXAAAAAAAXAAAAAADLgAAAAABLgAAAAABXAAAAAADXAAAAAACLgAAAAADLgAAAAADXAAAAAACXAAAAAACLgAAAAACLgAAAAABXAAAAAABXAAAAAABXAAAAAAAXAAAAAAAXAAAAAADXAAAAAADXAAAAAABXAAAAAADXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAACXAAAAAADXAAAAAADXAAAAAADXAAAAAADTgAAAAAATgAAAAAAawAAAAAAfAAAAAAAfAAAAAAAXAAAAAABXAAAAAABXAAAAAAAfAAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAfAAAAAAAfAAAAAAAXAAAAAACeQAAAAACeQAAAAADLgAAAAACeQAAAAAAfAAAAAAAawAAAAAAawAAAAAAfAAAAAAAXAAAAAADLgAAAAACXAAAAAABXAAAAAACLgAAAAACXAAAAAADfAAAAAAAbAAAAAAAeQAAAAACeQAAAAABLgAAAAAAeQAAAAAAfAAAAAAAXAAAAAADXAAAAAACfAAAAAAAXAAAAAABLgAAAAADXAAAAAADXAAAAAABLgAAAAABXAAAAAACfAAAAAAAfAAAAAAAeQAAAAAAeQAAAAACeQAAAAABeQAAAAADawAAAAAAXAAAAAADXAAAAAACXAAAAAADXAAAAAAALgAAAAAAXAAAAAACXAAAAAADLgAAAAAAXAAAAAADbAAAAAAAfAAAAAAA version: 6 1,-1: ind: 1,-1 - tiles: OwAAAAAAOwAAAAAAfAAAAAAAcwAAAAAAcwAAAAACcwAAAAABcwAAAAADfAAAAAAAbwAAAAADbwAAAAAALgAAAAACbwAAAAAALgAAAAAAbwAAAAAALgAAAAAAbwAAAAADbAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAawAAAAAAawAAAAAAfAAAAAAAfAAAAAAALgAAAAADLgAAAAABfAAAAAAAbwAAAAABbwAAAAABbwAAAAAAbwAAAAABbwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAbwAAAAADbwAAAAADbwAAAAACbwAAAAAAbwAAAAACbwAAAAADbwAAAAABfAAAAAAAbwAAAAACbwAAAAADbwAAAAACbwAAAAAAbwAAAAABfAAAAAAAfAAAAAAAbAAAAAAAbwAAAAAAbwAAAAABbwAAAAADbwAAAAAAbwAAAAADbwAAAAABbwAAAAADfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAALgAAAAACfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAbwAAAAACLgAAAAACLgAAAAAAbwAAAAADbwAAAAABLgAAAAABbwAAAAABfAAAAAAAbwAAAAABbwAAAAABbwAAAAACbwAAAAAAbwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAbwAAAAAALgAAAAABLgAAAAABbwAAAAABbwAAAAAALgAAAAABbwAAAAABLgAAAAADbwAAAAAAbwAAAAADbwAAAAADbwAAAAABbwAAAAABfAAAAAAAfAAAAAAAfAAAAAAAbwAAAAADbwAAAAABbwAAAAACbwAAAAABbwAAAAAAbwAAAAADbwAAAAABfAAAAAAAbwAAAAABbwAAAAAAbwAAAAAAbwAAAAABbwAAAAADfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAALgAAAAACfAAAAAAAfAAAAAAAfAAAAAAALgAAAAAAfAAAAAAAfAAAAAAAbwAAAAADbwAAAAACbwAAAAABbwAAAAAAbwAAAAADfAAAAAAAbAAAAAAAfAAAAAAAXAAAAAABXAAAAAAAXAAAAAAAXAAAAAADXAAAAAADXAAAAAAAXAAAAAACfAAAAAAAfAAAAAAAfAAAAAAALgAAAAADLgAAAAADfAAAAAAAXAAAAAAAXAAAAAADXAAAAAAAXAAAAAACXAAAAAADXAAAAAABXAAAAAABXAAAAAACXAAAAAAAXAAAAAAAXAAAAAACawAAAAAAXAAAAAACXAAAAAAAXAAAAAABXAAAAAABLgAAAAADLgAAAAAAXAAAAAACXAAAAAADLgAAAAADLgAAAAACXAAAAAAAXAAAAAADLgAAAAAALgAAAAADXAAAAAAAfAAAAAAAXAAAAAADLgAAAAACLgAAAAAALgAAAAAAXAAAAAAAXAAAAAACXAAAAAACXAAAAAAAXAAAAAABXAAAAAADXAAAAAABXAAAAAABXAAAAAADXAAAAAADXAAAAAADawAAAAAAXAAAAAAAXAAAAAABXAAAAAABXAAAAAABfAAAAAAAXAAAAAACXAAAAAACXAAAAAAAXAAAAAABXAAAAAAAXAAAAAACfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAawAAAAAAfAAAAAAAfAAAAAAAawAAAAAAfAAAAAAAfAAAAAAAHgAAAAACHgAAAAAAHgAAAAABfAAAAAAATgAAAAAATgAAAAAATgAAAAAAfAAAAAAAfAAAAAAAXAAAAAACXAAAAAADXAAAAAABXAAAAAACXAAAAAACXAAAAAADawAAAAAAHgAAAAADHgAAAAACHgAAAAADfAAAAAAAHgAAAAADTQAAAAADXAAAAAACTgAAAAAAfAAAAAAALgAAAAADLgAAAAABXAAAAAABXAAAAAABLgAAAAAALgAAAAAAfAAAAAAAHgAAAAABHgAAAAADHgAAAAAAawAAAAAAHgAAAAAAXAAAAAABTQAAAAACHgAAAAAB + tiles: OwAAAAAAOwAAAAAAfAAAAAAAcwAAAAAAcwAAAAACcwAAAAABcwAAAAADfAAAAAAAbwAAAAADbwAAAAAALgAAAAACbwAAAAAALgAAAAAAbwAAAAAALgAAAAAAbwAAAAADbAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAawAAAAAAawAAAAAAfAAAAAAAfAAAAAAALgAAAAADLgAAAAABfAAAAAAAbwAAAAABbwAAAAABbwAAAAAAbwAAAAABbwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAbwAAAAADbwAAAAADbwAAAAACbwAAAAAAbwAAAAACbwAAAAADbwAAAAABfAAAAAAAbwAAAAACbwAAAAADbwAAAAACbwAAAAAAbwAAAAABfAAAAAAAfAAAAAAAbAAAAAAAbwAAAAAAbwAAAAABbwAAAAADbwAAAAAAbwAAAAADbwAAAAABbwAAAAADfAAAAAAAfAAAAAAATgAAAAAATgAAAAAALgAAAAACfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAbwAAAAACLgAAAAACLgAAAAAAbwAAAAADbwAAAAABLgAAAAABbwAAAAABTgAAAAAAbwAAAAABbwAAAAABbwAAAAACbwAAAAAAbwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAbwAAAAAALgAAAAABLgAAAAABbwAAAAABbwAAAAAALgAAAAABbwAAAAABLgAAAAADbwAAAAAAbwAAAAADbwAAAAADbwAAAAABbwAAAAABfAAAAAAAfAAAAAAAfAAAAAAAbwAAAAADbwAAAAABbwAAAAACbwAAAAABbwAAAAAAbwAAAAADbwAAAAABfAAAAAAAbwAAAAABbwAAAAAAbwAAAAAAbwAAAAABbwAAAAADfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAALgAAAAACTgAAAAAATgAAAAAATgAAAAAALgAAAAAAfAAAAAAAfAAAAAAAbwAAAAADbwAAAAACbwAAAAABbwAAAAAAbwAAAAADfAAAAAAAbAAAAAAAfAAAAAAAXAAAAAABXAAAAAAAXAAAAAAAXAAAAAADXAAAAAADXAAAAAAAXAAAAAACfAAAAAAAfAAAAAAAfAAAAAAALgAAAAADLgAAAAADfAAAAAAAXAAAAAAAXAAAAAADXAAAAAAAXAAAAAACXAAAAAADXAAAAAABXAAAAAABXAAAAAACXAAAAAAAXAAAAAAAXAAAAAACawAAAAAAXAAAAAACXAAAAAAAXAAAAAABXAAAAAABLgAAAAADLgAAAAAAXAAAAAACXAAAAAADLgAAAAADLgAAAAACXAAAAAAAXAAAAAADLgAAAAAALgAAAAADXAAAAAAATgAAAAAAXAAAAAADLgAAAAACLgAAAAAALgAAAAAAXAAAAAAAXAAAAAACXAAAAAACXAAAAAAAXAAAAAABXAAAAAADXAAAAAABXAAAAAABXAAAAAADXAAAAAADXAAAAAADawAAAAAAXAAAAAAAXAAAAAABXAAAAAABXAAAAAABfAAAAAAAXAAAAAACXAAAAAACXAAAAAAAXAAAAAABXAAAAAAAXAAAAAACfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAawAAAAAATgAAAAAATgAAAAAAawAAAAAAfAAAAAAAfAAAAAAAHgAAAAACHgAAAAAAHgAAAAABfAAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAfAAAAAAAXAAAAAACXAAAAAADXAAAAAABXAAAAAACXAAAAAACXAAAAAADawAAAAAAHgAAAAADHgAAAAACHgAAAAADfAAAAAAAHgAAAAADTQAAAAADXAAAAAACTgAAAAAAfAAAAAAALgAAAAADLgAAAAABXAAAAAABXAAAAAABLgAAAAAALgAAAAAATgAAAAAAHgAAAAABHgAAAAADHgAAAAAAawAAAAAAHgAAAAAAXAAAAAABTQAAAAACTgAAAAAA version: 6 -1,-2: ind: -1,-2 - tiles: XgAAAAADTgAAAAAAXgAAAAAATgAAAAAAfAAAAAAAXAAAAAADLgAAAAAALgAAAAABLgAAAAADXAAAAAACbAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAHgAAAAACHgAAAAAAHgAAAAABHgAAAAAAawAAAAAAXAAAAAABXAAAAAABXAAAAAABXAAAAAAAXAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAbAAAAAAAfAAAAAAAfAAAAAAAIwAAAAACIwAAAAACIwAAAAACIwAAAAAAfAAAAAAAfAAAAAAAawAAAAAAfAAAAAAAawAAAAAAfAAAAAAAfAAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAXAAAAAACXAAAAAADXAAAAAABXAAAAAADXAAAAAADfAAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAfAAAAAAAbAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAawAAAAAAXAAAAAADLgAAAAADLgAAAAABLgAAAAAAXAAAAAACawAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAawAAAAAAfAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAfAAAAAAAXAAAAAACXAAAAAABXAAAAAADXAAAAAABXAAAAAACfAAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAXAAAAAAAXAAAAAADLgAAAAADLgAAAAABLgAAAAADXAAAAAACfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAbAAAAAAAXAAAAAAAXAAAAAAAawAAAAAAXAAAAAACXAAAAAABXAAAAAABXAAAAAAAXAAAAAAAXAAAAAADfAAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAAAfAAAAAAAfAAAAAAAXAAAAAAAXAAAAAAAfAAAAAAAfAAAAAAAXAAAAAACLgAAAAADLgAAAAABLgAAAAACXAAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAAAfAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAfAAAAAAAXAAAAAADXAAAAAAAXAAAAAADXAAAAAADXAAAAAADfAAAAAAALQAAAAAALQAAAAAALQAAAAAAfAAAAAAALQAAAAAAfAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAfAAAAAAAXAAAAAAAXAAAAAAAXAAAAAADXAAAAAAAXAAAAAAAfAAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAawAAAAAAfAAAAAAAfAAAAAAAfAAAAAAALQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAABfAAAAAAAXAAAAAABXAAAAAACXAAAAAABfAAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAfAAAAAAAbAAAAAAAeQAAAAABeQAAAAADeQAAAAABeQAAAAADawAAAAAAXAAAAAADLgAAAAADXAAAAAAAfAAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAfAAAAAAAfAAAAAAAXAAAAAAAXAAAAAADXAAAAAABXAAAAAACfAAAAAAAXAAAAAABLgAAAAADXAAAAAAAfAAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAXAAAAAABXAAAAAAAXAAAAAACawAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAA + tiles: XgAAAAADTgAAAAAAXgAAAAAATgAAAAAATgAAAAAAXAAAAAADLgAAAAAALgAAAAABLgAAAAADXAAAAAACbAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAHgAAAAACHgAAAAAAHgAAAAABHgAAAAAAawAAAAAAXAAAAAABXAAAAAABXAAAAAABXAAAAAAAXAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAbAAAAAAAfAAAAAAAfAAAAAAAIwAAAAACIwAAAAACIwAAAAACIwAAAAAAfAAAAAAAfAAAAAAAawAAAAAATgAAAAAAawAAAAAAfAAAAAAAfAAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAfAAAAAAAfAAAAAAATgAAAAAATgAAAAAAfAAAAAAAfAAAAAAAXAAAAAACXAAAAAADXAAAAAABXAAAAAADXAAAAAADTgAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAATgAAAAAAbAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAawAAAAAAXAAAAAADLgAAAAADLgAAAAABLgAAAAAAXAAAAAACawAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAawAAAAAAfAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAfAAAAAAAXAAAAAACXAAAAAABXAAAAAADXAAAAAABXAAAAAACfAAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAXAAAAAAAXAAAAAADLgAAAAADLgAAAAABLgAAAAADXAAAAAACfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAbAAAAAAAXAAAAAAAXAAAAAAAawAAAAAAXAAAAAACXAAAAAABXAAAAAABXAAAAAAAXAAAAAAAXAAAAAADfAAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAAAfAAAAAAAfAAAAAAAXAAAAAAAXAAAAAAAfAAAAAAAfAAAAAAAXAAAAAACLgAAAAADLgAAAAABLgAAAAACXAAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAAAfAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAATgAAAAAAXAAAAAADXAAAAAAAXAAAAAADXAAAAAADXAAAAAADfAAAAAAALQAAAAAALQAAAAAALQAAAAAAfAAAAAAALQAAAAAAfAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAATgAAAAAAXAAAAAAAXAAAAAAAXAAAAAADXAAAAAAAXAAAAAAAfAAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAATgAAAAAAawAAAAAATgAAAAAAfAAAAAAAfAAAAAAALQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAABTgAAAAAAXAAAAAABXAAAAAACXAAAAAABfAAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAfAAAAAAAbAAAAAAAeQAAAAABeQAAAAADeQAAAAABeQAAAAADawAAAAAAXAAAAAADLgAAAAADXAAAAAAAfAAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAfAAAAAAAfAAAAAAAXAAAAAAAXAAAAAADXAAAAAABXAAAAAACfAAAAAAAXAAAAAABLgAAAAADXAAAAAAAfAAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAXAAAAAABXAAAAAAAXAAAAAACawAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAA version: 6 0,-2: ind: 0,-2 - tiles: fAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAbAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAbAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAbAAAAAAAHgAAAAACHgAAAAABHgAAAAACfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAbAAAAAAAbAAAAAAAfAAAAAAAbAAAAAAAbAAAAAAAfAAAAAAAHgAAAAABLgAAAAADHgAAAAADfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAbQAAAAAAbQAAAAADbQAAAAABfAAAAAAAfAAAAAAALgAAAAADHgAAAAABLgAAAAADfAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAHgAAAAABLgAAAAADHgAAAAAAawAAAAAALgAAAAADLgAAAAABLgAAAAABfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAHgAAAAADHgAAAAADHgAAAAAAfAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAbAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAawAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAbAAAAAAAfAAAAAAAfAAAAAAADgAAAAABeQAAAAADeQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAADgAAAAADDgAAAAADfAAAAAAADgAAAAAADgAAAAAADgAAAAADDgAAAAACDgAAAAABDgAAAAADfAAAAAAADgAAAAACeQAAAAACeQAAAAABfAAAAAAAfAAAAAAALQAAAAAADgAAAAABDgAAAAABawAAAAAADgAAAAADDgAAAAABDgAAAAABDgAAAAAADgAAAAACDgAAAAAAawAAAAAADgAAAAAAeQAAAAABeQAAAAABfAAAAAAAfAAAAAAAfAAAAAAADgAAAAACDgAAAAADfAAAAAAADgAAAAACDgAAAAACDgAAAAABDgAAAAACDgAAAAACDgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAADgAAAAABDgAAAAABfAAAAAAAfAAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAfAAAAAAAfAAAAAAAOwAAAAAAHAAAAAAAHAAAAAACHAAAAAAAHAAAAAADfAAAAAAADgAAAAAADgAAAAACDgAAAAABDgAAAAAADgAAAAAADgAAAAACDgAAAAADDgAAAAAADgAAAAACfAAAAAAAOwAAAAAAHAAAAAABHAAAAAABHAAAAAABHAAAAAABfAAAAAAADgAAAAADLgAAAAACLgAAAAADDgAAAAACLgAAAAADDgAAAAABLgAAAAAALgAAAAACDgAAAAAAawAAAAAAOwAAAAAAHAAAAAADHAAAAAADHAAAAAAAHAAAAAABawAAAAAADgAAAAACDgAAAAADDgAAAAACLgAAAAABLgAAAAABLgAAAAADDgAAAAABDgAAAAAADgAAAAADawAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAawAAAAAADgAAAAABDgAAAAAADgAAAAADLgAAAAABLgAAAAAALgAAAAABDgAAAAACDgAAAAACDgAAAAACfAAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAA + tiles: fAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAATgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAATgAAAAAAfAAAAAAAfAAAAAAAbAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAbAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAbAAAAAAAHgAAAAACHgAAAAABHgAAAAACfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAbAAAAAAAbAAAAAAAfAAAAAAAbAAAAAAAbAAAAAAAfAAAAAAAHgAAAAABLgAAAAADHgAAAAADfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAbQAAAAAAbQAAAAADbQAAAAABfAAAAAAAfAAAAAAALgAAAAADHgAAAAABLgAAAAADTgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAHgAAAAABLgAAAAADHgAAAAAAawAAAAAALgAAAAADLgAAAAABLgAAAAABfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAHgAAAAADHgAAAAADHgAAAAAAfAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAbAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAawAAAAAATgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAbAAAAAAAfAAAAAAAfAAAAAAADgAAAAABeQAAAAADeQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAADgAAAAADDgAAAAADfAAAAAAADgAAAAAADgAAAAAADgAAAAADDgAAAAACDgAAAAABDgAAAAADfAAAAAAADgAAAAACeQAAAAACeQAAAAABfAAAAAAAfAAAAAAALQAAAAAADgAAAAABDgAAAAABawAAAAAADgAAAAADDgAAAAABDgAAAAABDgAAAAAADgAAAAACDgAAAAAAawAAAAAADgAAAAAAeQAAAAABeQAAAAABfAAAAAAAfAAAAAAAfAAAAAAADgAAAAACDgAAAAADfAAAAAAADgAAAAACDgAAAAACDgAAAAABDgAAAAACDgAAAAACDgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAADgAAAAABDgAAAAABfAAAAAAATgAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAfAAAAAAAfAAAAAAAOwAAAAAAHAAAAAAAHAAAAAACHAAAAAAAHAAAAAADfAAAAAAADgAAAAAADgAAAAACDgAAAAABDgAAAAAADgAAAAAADgAAAAACDgAAAAADDgAAAAAADgAAAAACfAAAAAAAOwAAAAAAHAAAAAABHAAAAAABHAAAAAABHAAAAAABTgAAAAAADgAAAAADLgAAAAACLgAAAAADDgAAAAACLgAAAAADDgAAAAABLgAAAAAALgAAAAACDgAAAAAAawAAAAAAOwAAAAAAHAAAAAADHAAAAAADHAAAAAAAHAAAAAABawAAAAAADgAAAAACDgAAAAADDgAAAAACLgAAAAABLgAAAAABLgAAAAADDgAAAAABDgAAAAAADgAAAAADawAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAawAAAAAADgAAAAABDgAAAAAADgAAAAADLgAAAAABLgAAAAAALgAAAAABDgAAAAACDgAAAAACDgAAAAACTgAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAA version: 6 -2,0: ind: -2,0 - tiles: eQAAAAABeQAAAAAAeQAAAAAAeQAAAAACawAAAAAAXAAAAAAAXAAAAAADXAAAAAABXAAAAAACLgAAAAADXAAAAAACXAAAAAABLgAAAAAAXAAAAAADfAAAAAAAfAAAAAAAeQAAAAAAeQAAAAACLgAAAAAAeQAAAAACfAAAAAAAXAAAAAADXAAAAAABXAAAAAACfAAAAAAAawAAAAAAawAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAeQAAAAACeQAAAAAALgAAAAABeQAAAAAAfAAAAAAAawAAAAAAawAAAAAAfAAAAAAAXAAAAAACXAAAAAADXAAAAAAAXAAAAAADXAAAAAACXAAAAAABfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAXAAAAAACXAAAAAADXAAAAAABXAAAAAAAXAAAAAADXAAAAAADXAAAAAABXAAAAAABXAAAAAAAfAAAAAAAfAAAAAAAXAAAAAADXAAAAAADXAAAAAABXAAAAAACawAAAAAAXAAAAAAALgAAAAAAXAAAAAADLgAAAAACXAAAAAACLgAAAAABXAAAAAAALgAAAAACXAAAAAAAbAAAAAAAfAAAAAAALgAAAAADXAAAAAADXAAAAAABXAAAAAACawAAAAAAXAAAAAACLgAAAAAAXAAAAAAALgAAAAADXAAAAAACLgAAAAACXAAAAAAALgAAAAABXAAAAAACfAAAAAAAfAAAAAAALgAAAAAAXAAAAAABfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAawAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAawAAAAAAawAAAAAAfAAAAAAAfAAAAAAALgAAAAAAXAAAAAACHgAAAAAATQAAAAADHgAAAAAAfAAAAAAAXAAAAAADXAAAAAAAXAAAAAAAXAAAAAACXAAAAAACfAAAAAAAXAAAAAABXAAAAAABfAAAAAAAfAAAAAAALgAAAAABXAAAAAADHgAAAAABTQAAAAABHgAAAAAAfAAAAAAAXAAAAAACLgAAAAACLgAAAAACLgAAAAAAXAAAAAAAfAAAAAAAXAAAAAAALgAAAAACXAAAAAAAfAAAAAAAXAAAAAACXAAAAAAAHgAAAAABHgAAAAADHgAAAAABawAAAAAAXAAAAAADLgAAAAADLgAAAAACLgAAAAABXAAAAAAAawAAAAAAXAAAAAABLgAAAAAAXAAAAAAAbAAAAAAAXAAAAAABXAAAAAAAHgAAAAABHgAAAAACHgAAAAAAfAAAAAAAXAAAAAABXAAAAAADXAAAAAAAXAAAAAACXAAAAAABfAAAAAAAXAAAAAADXAAAAAAAXAAAAAABfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAawAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAXAAAAAACXAAAAAAAXAAAAAADfAAAAAAAFAAAAAAGFAAAAAAFeQAAAAACXAAAAAACXAAAAAACXAAAAAADawAAAAAATgAAAAAATgAAAAAATgAAAAAAawAAAAAAXAAAAAACXAAAAAADLgAAAAAAXAAAAAAAfAAAAAAAFAAAAAAEeQAAAAACeQAAAAADXAAAAAADXAAAAAABXAAAAAABawAAAAAATgAAAAAATgAAAAAATgAAAAAAawAAAAAAXAAAAAADXAAAAAABLgAAAAAAXAAAAAACfAAAAAAAegAAAAADegAAAAACeQAAAAABXAAAAAADXAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAXAAAAAADXAAAAAACXAAAAAADfAAAAAAAXAAAAAABXAAAAAABXAAAAAABXAAAAAACXAAAAAABfAAAAAAAbwAAAAACbwAAAAADbwAAAAACbwAAAAACbwAAAAABfAAAAAAAfAAAAAAAawAAAAAAfAAAAAAAfAAAAAAA + tiles: eQAAAAABeQAAAAAAeQAAAAAAeQAAAAACawAAAAAAXAAAAAAAXAAAAAADXAAAAAABXAAAAAACLgAAAAADXAAAAAACXAAAAAABLgAAAAAAXAAAAAADfAAAAAAAfAAAAAAAeQAAAAAAeQAAAAACLgAAAAAAeQAAAAACfAAAAAAAXAAAAAADXAAAAAABXAAAAAAATgAAAAAAawAAAAAAawAAAAAATgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAeQAAAAACeQAAAAAALgAAAAABeQAAAAAAfAAAAAAAawAAAAAAawAAAAAAfAAAAAAAXAAAAAACXAAAAAADXAAAAAAAXAAAAAADXAAAAAACXAAAAAABfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAATgAAAAAAfAAAAAAAfAAAAAAAXAAAAAACXAAAAAADXAAAAAABXAAAAAAAXAAAAAADXAAAAAADXAAAAAABXAAAAAABXAAAAAAAfAAAAAAAfAAAAAAAXAAAAAADXAAAAAADXAAAAAABXAAAAAACawAAAAAAXAAAAAAALgAAAAAAXAAAAAADLgAAAAACXAAAAAACLgAAAAABXAAAAAAALgAAAAACXAAAAAAAbAAAAAAAfAAAAAAALgAAAAADXAAAAAADXAAAAAABXAAAAAACawAAAAAAXAAAAAACLgAAAAAAXAAAAAAALgAAAAADXAAAAAACLgAAAAACXAAAAAAALgAAAAABXAAAAAACfAAAAAAAfAAAAAAALgAAAAAAXAAAAAABfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAawAAAAAATgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAawAAAAAAawAAAAAAfAAAAAAAfAAAAAAALgAAAAAAXAAAAAACHgAAAAAATQAAAAADHgAAAAAAfAAAAAAAXAAAAAADXAAAAAAAXAAAAAAAXAAAAAACXAAAAAACfAAAAAAAXAAAAAABXAAAAAABfAAAAAAAfAAAAAAALgAAAAABXAAAAAADHgAAAAABTQAAAAABHgAAAAAAfAAAAAAAXAAAAAACLgAAAAACLgAAAAACLgAAAAAAXAAAAAAATgAAAAAAXAAAAAAALgAAAAACXAAAAAAAfAAAAAAAXAAAAAACXAAAAAAAHgAAAAABHgAAAAADHgAAAAABawAAAAAAXAAAAAADLgAAAAADLgAAAAACLgAAAAABXAAAAAAAawAAAAAAXAAAAAABLgAAAAAAXAAAAAAAbAAAAAAAXAAAAAABXAAAAAAAHgAAAAABHgAAAAACHgAAAAAAfAAAAAAAXAAAAAABXAAAAAADXAAAAAAAXAAAAAACXAAAAAABfAAAAAAAXAAAAAADXAAAAAAAXAAAAAABfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAawAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAXAAAAAACXAAAAAAAXAAAAAADfAAAAAAAFAAAAAAGFAAAAAAFeQAAAAACXAAAAAACXAAAAAACXAAAAAADawAAAAAATgAAAAAATgAAAAAATgAAAAAAawAAAAAAXAAAAAACXAAAAAADLgAAAAAAXAAAAAAAfAAAAAAAFAAAAAAEeQAAAAACeQAAAAADXAAAAAADXAAAAAABXAAAAAABawAAAAAATgAAAAAATgAAAAAATgAAAAAAawAAAAAAXAAAAAADXAAAAAABLgAAAAAAXAAAAAACfAAAAAAAegAAAAADegAAAAACeQAAAAABXAAAAAADXAAAAAAAfAAAAAAAfAAAAAAATgAAAAAATgAAAAAATgAAAAAAfAAAAAAAfAAAAAAAXAAAAAADXAAAAAACXAAAAAADfAAAAAAAXAAAAAABXAAAAAABXAAAAAABXAAAAAACXAAAAAABfAAAAAAAbwAAAAACbwAAAAADbwAAAAACbwAAAAACbwAAAAABfAAAAAAAfAAAAAAAawAAAAAATgAAAAAAfAAAAAAA version: 6 -2,-2: ind: -2,-2 - tiles: fAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAbAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAXgAAAAADXgAAAAAATgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAbAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAbAAAAAAAHgAAAAAAHgAAAAABHgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAIwAAAAADIwAAAAAAIwAAAAACHgAAAAACfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAbAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAHgAAAAADfAAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAfAAAAAAAHgAAAAABHgAAAAAAHgAAAAABHgAAAAABfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAHgAAAAADfAAAAAAAEgAAAAAATQAAAAADEgAAAAAAfAAAAAAAHgAAAAADLgAAAAAALgAAAAAAHgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAawAAAAAAfAAAAAAAfAAAAAAAHgAAAAABHgAAAAABHgAAAAADHgAAAAACHgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAXAAAAAACXAAAAAADXAAAAAADXAAAAAACfAAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAABHgAAAAADbwAAAAACbwAAAAACTQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAXAAAAAAALgAAAAACXAAAAAACXAAAAAABawAAAAAAHgAAAAADLgAAAAAALgAAAAAAHgAAAAADHgAAAAAAbwAAAAACbwAAAAADTQAAAAADfAAAAAAAfAAAAAAAawAAAAAAXAAAAAAAXAAAAAAALgAAAAABXAAAAAABfAAAAAAAHgAAAAACHgAAAAACHgAAAAABHgAAAAAAHgAAAAACbwAAAAAAbwAAAAADTQAAAAACfAAAAAAAfAAAAAAAfAAAAAAAXAAAAAADLgAAAAABXAAAAAACXAAAAAABfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAawAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAXAAAAAAAXAAAAAABLgAAAAAAXAAAAAADXAAAAAAAfAAAAAAAHgAAAAABHgAAAAABHgAAAAACHgAAAAABHgAAAAABHgAAAAABHgAAAAADfAAAAAAAfAAAAAAAfAAAAAAAXAAAAAAALgAAAAAAXAAAAAAAXAAAAAAAXAAAAAADawAAAAAAHgAAAAABHgAAAAACLgAAAAADHgAAAAACLgAAAAACHgAAAAADHgAAAAACfAAAAAAAfAAAAAAAfAAAAAAAXAAAAAADXAAAAAACLgAAAAACXAAAAAABXAAAAAAAawAAAAAAHgAAAAADLgAAAAADHgAAAAACLgAAAAACHgAAAAACLgAAAAAAHgAAAAABbAAAAAAAfAAAAAAAfAAAAAAAXAAAAAACXAAAAAACXAAAAAAAXAAAAAACXAAAAAADfAAAAAAAHgAAAAAAHgAAAAAAHgAAAAADHgAAAAABHgAAAAAAHgAAAAABHgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAawAAAAAAfAAAAAAAawAAAAAAfAAAAAAAfAAAAAAAHgAAAAABHgAAAAACHgAAAAAAHgAAAAACHgAAAAABHgAAAAAAHgAAAAADfAAAAAAAfAAAAAAA + tiles: fAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAbAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAXgAAAAADXgAAAAAATgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAbAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAbAAAAAAAHgAAAAAAHgAAAAABHgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAIwAAAAADIwAAAAAAIwAAAAACHgAAAAACfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAbAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAHgAAAAADfAAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAfAAAAAAAHgAAAAABHgAAAAAAHgAAAAABHgAAAAABfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAHgAAAAADfAAAAAAAEgAAAAAATQAAAAADEgAAAAAAfAAAAAAAHgAAAAADLgAAAAAALgAAAAAAHgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAATgAAAAAAawAAAAAATgAAAAAAfAAAAAAAHgAAAAABHgAAAAABHgAAAAADHgAAAAACHgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAXAAAAAACXAAAAAADXAAAAAADXAAAAAACTgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAABHgAAAAADbwAAAAACbwAAAAACTQAAAAAAfAAAAAAAfAAAAAAATgAAAAAAXAAAAAAALgAAAAACXAAAAAACXAAAAAABawAAAAAAHgAAAAADLgAAAAAALgAAAAAAHgAAAAADHgAAAAAAbwAAAAACbwAAAAADTQAAAAADfAAAAAAAfAAAAAAAawAAAAAAXAAAAAAAXAAAAAAALgAAAAABXAAAAAABfAAAAAAAHgAAAAACHgAAAAACHgAAAAABHgAAAAAAHgAAAAACbwAAAAAAbwAAAAADTQAAAAACfAAAAAAAfAAAAAAAfAAAAAAAXAAAAAADLgAAAAABXAAAAAACXAAAAAABfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAawAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAXAAAAAAAXAAAAAABLgAAAAAAXAAAAAADXAAAAAAAfAAAAAAAHgAAAAABHgAAAAABHgAAAAACHgAAAAABHgAAAAABHgAAAAABHgAAAAADfAAAAAAAfAAAAAAAfAAAAAAAXAAAAAAALgAAAAAAXAAAAAAAXAAAAAAAXAAAAAADawAAAAAAHgAAAAABHgAAAAACLgAAAAADHgAAAAACLgAAAAACHgAAAAADHgAAAAACfAAAAAAAfAAAAAAAfAAAAAAAXAAAAAADXAAAAAACLgAAAAACXAAAAAABXAAAAAAAawAAAAAAHgAAAAADLgAAAAADHgAAAAACLgAAAAACHgAAAAACLgAAAAAAHgAAAAABbAAAAAAAfAAAAAAAfAAAAAAAXAAAAAACXAAAAAACXAAAAAAAXAAAAAACXAAAAAADfAAAAAAAHgAAAAAAHgAAAAAAHgAAAAADHgAAAAABHgAAAAAAHgAAAAABHgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAATgAAAAAAawAAAAAATgAAAAAAawAAAAAAfAAAAAAAfAAAAAAAHgAAAAABHgAAAAACHgAAAAAAHgAAAAACHgAAAAABHgAAAAAAHgAAAAADfAAAAAAAfAAAAAAA version: 6 1,0: ind: 1,0 - tiles: bAAAAAAAXAAAAAABXAAAAAABLgAAAAABLgAAAAABXAAAAAACXAAAAAAAawAAAAAAHgAAAAADHgAAAAABHgAAAAABfAAAAAAAHgAAAAABTQAAAAABXAAAAAABHgAAAAABfAAAAAAAXAAAAAACXAAAAAACXAAAAAACXAAAAAACXAAAAAABfAAAAAAAfAAAAAAAHgAAAAACHgAAAAACHgAAAAAAfAAAAAAATgAAAAAAXAAAAAACTQAAAAAATgAAAAAAfAAAAAAAfAAAAAAAawAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAHgAAAAABHgAAAAAAHgAAAAADHgAAAAACfAAAAAAATgAAAAAAHgAAAAACHgAAAAACTgAAAAAAfAAAAAAAQQAAAAAAHgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAHgAAAAADHgAAAAACfAAAAAAAfAAAAAAAawAAAAAAawAAAAAAfAAAAAAAfAAAAAAAQQAAAAAAHgAAAAACfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAHgAAAAADHgAAAAACawAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAbAAAAAAAQQAAAAAAHgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAHgAAAAACHgAAAAADawAAAAAAfAAAAAAAHgAAAAADfAAAAAAAHgAAAAADfAAAAAAAQQAAAAAAHgAAAAABfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAQQAAAAAAHgAAAAABHgAAAAACHgAAAAADfAAAAAAAfAAAAAAAawAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAQQAAAAAAHgAAAAADHgAAAAAAHgAAAAABfAAAAAAAHgAAAAACHgAAAAADHgAAAAABfAAAAAAAOgAAAAAAfAAAAAAAOgAAAAAAfAAAAAAAewAAAAAAewAAAAAAfAAAAAAAfAAAAAAAHgAAAAABHgAAAAACHgAAAAABHgAAAAABHgAAAAADHgAAAAAAHgAAAAADfAAAAAAAOgAAAAAAfAAAAAAAOgAAAAAAfAAAAAAAewAAAAAAewAAAAAAfAAAAAAAfAAAAAAAHgAAAAABHgAAAAADQQAAAAAAHgAAAAABHgAAAAADQQAAAAAAHgAAAAACfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAawAAAAAAawAAAAAAfAAAAAAAfAAAAAAAHgAAAAACHgAAAAABQQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAHgAAAAABHgAAAAADHgAAAAADHgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAHgAAAAABHgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAHgAAAAACHgAAAAABfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAHgAAAAAAHgAAAAABfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAHgAAAAAC + tiles: bAAAAAAAXAAAAAABXAAAAAABLgAAAAABLgAAAAABXAAAAAACXAAAAAAAawAAAAAAHgAAAAADHgAAAAABHgAAAAABfAAAAAAAHgAAAAABTQAAAAABXAAAAAABHgAAAAABfAAAAAAAXAAAAAACXAAAAAACXAAAAAACXAAAAAACXAAAAAABfAAAAAAAfAAAAAAAHgAAAAACHgAAAAACHgAAAAAAfAAAAAAATgAAAAAAXAAAAAACTQAAAAAATgAAAAAAfAAAAAAAfAAAAAAAawAAAAAAfAAAAAAATgAAAAAATgAAAAAAfAAAAAAAHgAAAAABHgAAAAAAHgAAAAADHgAAAAACfAAAAAAATgAAAAAAHgAAAAACHgAAAAACTgAAAAAAfAAAAAAAQQAAAAAAHgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAHgAAAAADHgAAAAACfAAAAAAAfAAAAAAAawAAAAAAawAAAAAAfAAAAAAAfAAAAAAAQQAAAAAAHgAAAAACfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAHgAAAAADHgAAAAACawAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAbAAAAAAAQQAAAAAAHgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAHgAAAAACHgAAAAADawAAAAAAfAAAAAAAHgAAAAADfAAAAAAAHgAAAAADfAAAAAAAQQAAAAAAHgAAAAABfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAQQAAAAAAHgAAAAABHgAAAAACHgAAAAADfAAAAAAAfAAAAAAAawAAAAAATgAAAAAAfAAAAAAATgAAAAAAfAAAAAAATgAAAAAAfAAAAAAATgAAAAAATgAAAAAAfAAAAAAAQQAAAAAAHgAAAAADHgAAAAAAHgAAAAABfAAAAAAAHgAAAAACHgAAAAADHgAAAAABfAAAAAAAOgAAAAAAfAAAAAAAOgAAAAAAfAAAAAAAewAAAAAAewAAAAAATgAAAAAAfAAAAAAAHgAAAAABHgAAAAACHgAAAAABHgAAAAABHgAAAAADHgAAAAAAHgAAAAADfAAAAAAAOgAAAAAAfAAAAAAAOgAAAAAAfAAAAAAAewAAAAAAewAAAAAATgAAAAAAfAAAAAAAHgAAAAABHgAAAAADQQAAAAAAHgAAAAABHgAAAAADQQAAAAAAHgAAAAACfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAATgAAAAAATgAAAAAAfAAAAAAAawAAAAAAawAAAAAAfAAAAAAAfAAAAAAAHgAAAAACHgAAAAABQQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAHgAAAAABHgAAAAADHgAAAAADHgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAHgAAAAABHgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAHgAAAAACHgAAAAABfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAHgAAAAAAHgAAAAABfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAHgAAAAAC version: 6 1,-2: ind: 1,-2 - tiles: fAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAbQAAAAADfAAAAAAAbwAAAAABbwAAAAABbwAAAAABawAAAAAAIwAAAAACIwAAAAACIwAAAAADIwAAAAAAIwAAAAAAfAAAAAAAfAAAAAAAbAAAAAAAfAAAAAAAfAAAAAAAbQAAAAABfAAAAAAAbwAAAAAALgAAAAABbwAAAAADfAAAAAAAIwAAAAACIwAAAAADIwAAAAABIwAAAAACIwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAbwAAAAACbwAAAAABbwAAAAADfAAAAAAAfAAAAAAAfAAAAAAAawAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAbAAAAAAAbwAAAAAALgAAAAADbwAAAAAAfAAAAAAAbwAAAAABbwAAAAAAbwAAAAAAbwAAAAACbwAAAAADfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAbwAAAAABbwAAAAACbwAAAAABfAAAAAAAbwAAAAADbwAAAAACbwAAAAADbwAAAAACbwAAAAACfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAALgAAAAADLgAAAAADfAAAAAAAbwAAAAAAbwAAAAABbwAAAAABbwAAAAADbwAAAAADfAAAAAAAfAAAAAAAbwAAAAACbwAAAAAAfAAAAAAAbwAAAAABbwAAAAABfAAAAAAAbwAAAAABbwAAAAADfAAAAAAAbwAAAAAAbwAAAAABbwAAAAAAbwAAAAABbwAAAAABfAAAAAAAfAAAAAAAbwAAAAACfAAAAAAAfAAAAAAAbwAAAAABbwAAAAACfAAAAAAAbwAAAAABbwAAAAABfAAAAAAAfAAAAAAAfAAAAAAALgAAAAACfAAAAAAAfAAAAAAAfAAAAAAAbAAAAAAAbwAAAAACbwAAAAAAfAAAAAAAbwAAAAACbwAAAAAALgAAAAABbwAAAAACbwAAAAACbwAAAAAAbwAAAAABbwAAAAABbwAAAAACbwAAAAACbwAAAAAAfAAAAAAAfAAAAAAAcwAAAAAAcwAAAAAAcwAAAAACcwAAAAACcwAAAAADfAAAAAAAbwAAAAABbwAAAAADbwAAAAADbwAAAAACbwAAAAABbwAAAAACbwAAAAAAbwAAAAABbAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAfAAAAAAALgAAAAADLgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAOwAAAAAAOwAAAAAAfAAAAAAAcwAAAAACcwAAAAADcwAAAAABcwAAAAAAfAAAAAAAbwAAAAAAbwAAAAAAfAAAAAAAbwAAAAACbwAAAAABbwAAAAADbwAAAAACbwAAAAAAOwAAAAAAOwAAAAAAfAAAAAAAcwAAAAADcwAAAAACcwAAAAABcwAAAAABawAAAAAAbwAAAAABbwAAAAADLgAAAAABbwAAAAACbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAABOwAAAAAAOwAAAAAAawAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAABawAAAAAAbwAAAAACbwAAAAADfAAAAAAAbwAAAAADLgAAAAAAbwAAAAAALgAAAAAAbwAAAAABOwAAAAAAOwAAAAAAfAAAAAAAcwAAAAABcwAAAAAAcwAAAAAAcwAAAAABfAAAAAAAbwAAAAABbwAAAAACfAAAAAAAbwAAAAABLgAAAAAAbwAAAAAALgAAAAAAbwAAAAADOwAAAAAAOwAAAAAAfAAAAAAAcwAAAAABcwAAAAACcwAAAAABcwAAAAABLgAAAAACbwAAAAADbwAAAAACfAAAAAAAbwAAAAACLgAAAAAAbwAAAAAALgAAAAAAbwAAAAAB + tiles: fAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAbQAAAAADfAAAAAAAbwAAAAABbwAAAAABbwAAAAABawAAAAAAIwAAAAACIwAAAAACIwAAAAADIwAAAAAAIwAAAAAAfAAAAAAAfAAAAAAAbAAAAAAAfAAAAAAAfAAAAAAAbQAAAAABfAAAAAAAbwAAAAAALgAAAAABbwAAAAADfAAAAAAAIwAAAAACIwAAAAADIwAAAAABIwAAAAACIwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAbwAAAAACbwAAAAABbwAAAAADfAAAAAAAfAAAAAAAfAAAAAAAawAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAbAAAAAAAbwAAAAAALgAAAAADbwAAAAAATgAAAAAAbwAAAAABbwAAAAAAbwAAAAAAbwAAAAACbwAAAAADfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAbwAAAAABbwAAAAACbwAAAAABTgAAAAAAbwAAAAADbwAAAAACbwAAAAADbwAAAAACbwAAAAACfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAALgAAAAADLgAAAAADfAAAAAAAbwAAAAAAbwAAAAABbwAAAAABbwAAAAADbwAAAAADfAAAAAAAfAAAAAAAbwAAAAACbwAAAAAAfAAAAAAAbwAAAAABbwAAAAABTgAAAAAAbwAAAAABbwAAAAADfAAAAAAAbwAAAAAAbwAAAAABbwAAAAAAbwAAAAABbwAAAAABfAAAAAAAfAAAAAAAbwAAAAACfAAAAAAAfAAAAAAAbwAAAAABbwAAAAACTgAAAAAAbwAAAAABbwAAAAABfAAAAAAATgAAAAAATgAAAAAALgAAAAACfAAAAAAAfAAAAAAAfAAAAAAAbAAAAAAAbwAAAAACbwAAAAAAfAAAAAAAbwAAAAACbwAAAAAALgAAAAABbwAAAAACbwAAAAACbwAAAAAAbwAAAAABbwAAAAABbwAAAAACbwAAAAACbwAAAAAAfAAAAAAAfAAAAAAAcwAAAAAAcwAAAAAAcwAAAAACcwAAAAACcwAAAAADfAAAAAAAbwAAAAABbwAAAAADbwAAAAADbwAAAAACbwAAAAABbwAAAAACbwAAAAAAbwAAAAABbAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAfAAAAAAALgAAAAADLgAAAAAAfAAAAAAAfAAAAAAATgAAAAAATgAAAAAATgAAAAAAfAAAAAAAOwAAAAAAOwAAAAAAfAAAAAAAcwAAAAACcwAAAAADcwAAAAABcwAAAAAAfAAAAAAAbwAAAAAAbwAAAAAAfAAAAAAAbwAAAAACbwAAAAABbwAAAAADbwAAAAACbwAAAAAAOwAAAAAAOwAAAAAATgAAAAAAcwAAAAADcwAAAAACcwAAAAABcwAAAAABawAAAAAAbwAAAAABbwAAAAADLgAAAAABbwAAAAACbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAABOwAAAAAAOwAAAAAAawAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAABawAAAAAAbwAAAAACbwAAAAADTgAAAAAAbwAAAAADLgAAAAAAbwAAAAAALgAAAAAAbwAAAAABOwAAAAAAOwAAAAAATgAAAAAAcwAAAAABcwAAAAAAcwAAAAAAcwAAAAABfAAAAAAAbwAAAAABbwAAAAACTgAAAAAAbwAAAAABLgAAAAAAbwAAAAAALgAAAAAAbwAAAAADOwAAAAAAOwAAAAAAfAAAAAAAcwAAAAABcwAAAAACcwAAAAABcwAAAAABLgAAAAACbwAAAAADbwAAAAACTgAAAAAAbwAAAAACLgAAAAAAbwAAAAAALgAAAAAAbwAAAAAB version: 6 0,1: ind: 0,1 - tiles: XAAAAAACXAAAAAABfAAAAAAATgAAAAAAXAAAAAAAXAAAAAAAfAAAAAAAeQAAAAACeQAAAAACeQAAAAAAeQAAAAADfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAALgAAAAACXAAAAAACfAAAAAAATgAAAAAAXAAAAAAAXAAAAAAAfAAAAAAAXgAAAAABXgAAAAAAXgAAAAADXgAAAAABfAAAAAAAfAAAAAAAbAAAAAAAfAAAAAAAfAAAAAAALgAAAAAAXAAAAAAAfAAAAAAATgAAAAAAXAAAAAACXAAAAAABfAAAAAAAfAAAAAAAawAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAXAAAAAADXAAAAAAAeQAAAAACeQAAAAADHgAAAAADHgAAAAAAfAAAAAAATgAAAAAAXAAAAAACXAAAAAABXAAAAAAAXAAAAAABXAAAAAABXAAAAAADXAAAAAAAawAAAAAAXAAAAAAAXAAAAAADeQAAAAAAeQAAAAABfAAAAAAAfAAAAAAAfAAAAAAATgAAAAAAXAAAAAAAXAAAAAADXAAAAAADXAAAAAACXAAAAAADXAAAAAADXAAAAAADawAAAAAAXAAAAAACXAAAAAABeQAAAAAAeQAAAAABewAAAAAAfAAAAAAATgAAAAAATgAAAAAAXAAAAAABXAAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAXAAAAAAAXAAAAAAAewAAAAAAfAAAAAAATgAAAAAAXAAAAAADXAAAAAADXAAAAAADHgAAAAACHgAAAAABHgAAAAABHgAAAAACfAAAAAAAfAAAAAAAfAAAAAAATgAAAAAAfAAAAAAAawAAAAAAewAAAAAAfAAAAAAATgAAAAAAXAAAAAABXAAAAAACXAAAAAABHgAAAAAAHgAAAAADHgAAAAADHgAAAAABfAAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAewAAAAAAfAAAAAAATgAAAAAAXAAAAAABXAAAAAACXAAAAAADHgAAAAACHgAAAAAAHgAAAAADHgAAAAABawAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAewAAAAAAfAAAAAAAXAAAAAADXAAAAAABXAAAAAABXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAACXAAAAAAAawAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAewAAAAAAfAAAAAAAXAAAAAACXAAAAAABXAAAAAABXAAAAAABXAAAAAAAXAAAAAABXAAAAAACXAAAAAADawAAAAAAYwAAAAAATQAAAAADTQAAAAAATQAAAAACYwAAAAAAewAAAAAAfAAAAAAAXAAAAAADXAAAAAABXAAAAAADXAAAAAADXAAAAAACXAAAAAADXAAAAAAATgAAAAAAfAAAAAAAYwAAAAAATQAAAAACTQAAAAAATQAAAAAAYwAAAAAAewAAAAAAfAAAAAAATgAAAAAAXAAAAAACXAAAAAAAXAAAAAABXAAAAAAAXAAAAAABXAAAAAADTgAAAAAAfAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAewAAAAAAfAAAAAAATgAAAAAAXAAAAAAAXAAAAAAAXAAAAAABXAAAAAACXAAAAAACXAAAAAABTgAAAAAAfAAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAewAAAAAAfAAAAAAATgAAAAAAXAAAAAAAXAAAAAABXAAAAAAAXAAAAAAAXAAAAAACXAAAAAACTgAAAAAATgAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAAAAAAAAAfAAAAAAATgAAAAAATgAAAAAAXAAAAAADXAAAAAABXAAAAAAAXAAAAAADTgAAAAAATgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAA + tiles: XAAAAAACXAAAAAABTgAAAAAATgAAAAAAXAAAAAAAXAAAAAAAfAAAAAAAeQAAAAACeQAAAAACeQAAAAAAeQAAAAADfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAALgAAAAACXAAAAAACTgAAAAAATgAAAAAAXAAAAAAAXAAAAAAAfAAAAAAAXgAAAAABXgAAAAAAXgAAAAADXgAAAAABfAAAAAAAfAAAAAAAbAAAAAAAfAAAAAAAfAAAAAAALgAAAAAAXAAAAAAAfAAAAAAATgAAAAAAXAAAAAACXAAAAAABfAAAAAAAfAAAAAAAawAAAAAATgAAAAAAfAAAAAAAfAAAAAAAXAAAAAADXAAAAAAAeQAAAAACeQAAAAADHgAAAAADHgAAAAAAfAAAAAAATgAAAAAAXAAAAAACXAAAAAABXAAAAAAAXAAAAAABXAAAAAABXAAAAAADXAAAAAAAawAAAAAAXAAAAAAAXAAAAAADeQAAAAAAeQAAAAABfAAAAAAAfAAAAAAAfAAAAAAATgAAAAAAXAAAAAAAXAAAAAADXAAAAAADXAAAAAACXAAAAAADXAAAAAADXAAAAAADawAAAAAAXAAAAAACXAAAAAABeQAAAAAAeQAAAAABewAAAAAAfAAAAAAATgAAAAAATgAAAAAAXAAAAAABXAAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAXAAAAAAAXAAAAAAAewAAAAAAfAAAAAAATgAAAAAAXAAAAAADXAAAAAADXAAAAAADHgAAAAACHgAAAAABHgAAAAABHgAAAAACfAAAAAAAfAAAAAAATgAAAAAATgAAAAAATgAAAAAAawAAAAAAewAAAAAATgAAAAAATgAAAAAAXAAAAAABXAAAAAACXAAAAAABHgAAAAAAHgAAAAADHgAAAAADHgAAAAABfAAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAewAAAAAATgAAAAAATgAAAAAAXAAAAAABXAAAAAACXAAAAAADHgAAAAACHgAAAAAAHgAAAAADHgAAAAABawAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAewAAAAAAfAAAAAAAXAAAAAADXAAAAAABXAAAAAABXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAACXAAAAAAAawAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAewAAAAAAfAAAAAAAXAAAAAACXAAAAAABXAAAAAABXAAAAAABXAAAAAAAXAAAAAABXAAAAAACXAAAAAADawAAAAAAYwAAAAAATQAAAAADTQAAAAAATQAAAAACYwAAAAAAewAAAAAAfAAAAAAAXAAAAAADXAAAAAABXAAAAAADXAAAAAADXAAAAAACXAAAAAADXAAAAAAATgAAAAAAfAAAAAAAYwAAAAAATQAAAAACTQAAAAAATQAAAAAAYwAAAAAAewAAAAAATgAAAAAATgAAAAAAXAAAAAACXAAAAAAAXAAAAAABXAAAAAAAXAAAAAABXAAAAAADTgAAAAAAfAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAewAAAAAATgAAAAAATgAAAAAAXAAAAAAAXAAAAAAAXAAAAAABXAAAAAACXAAAAAACXAAAAAABTgAAAAAATgAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAewAAAAAAfAAAAAAATgAAAAAAXAAAAAAAXAAAAAABXAAAAAAAXAAAAAAAXAAAAAACXAAAAAACTgAAAAAATgAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAAAAAAAAAfAAAAAAATgAAAAAATgAAAAAAXAAAAAADXAAAAAABXAAAAAAAXAAAAAADTgAAAAAATgAAAAAAfAAAAAAAfAAAAAAATgAAAAAATgAAAAAATgAAAAAAfAAAAAAA version: 6 -1,1: ind: -1,1 - tiles: fAAAAAAAfAAAAAAAawAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAXAAAAAACLgAAAAADXAAAAAABXAAAAAABLgAAAAADXAAAAAAAXAAAAAADXAAAAAADfAAAAAAAXAAAAAADawAAAAAAXAAAAAABLgAAAAADXAAAAAADXAAAAAACLgAAAAABXAAAAAACXAAAAAACLgAAAAACXAAAAAAAXAAAAAAALgAAAAADXAAAAAACXAAAAAAAfAAAAAAAXAAAAAACawAAAAAAXAAAAAACXAAAAAABLgAAAAABXAAAAAABXAAAAAAALgAAAAACXAAAAAADXAAAAAABLgAAAAAAXAAAAAAAXAAAAAABLgAAAAAAXAAAAAAAawAAAAAAXAAAAAACfAAAAAAAXAAAAAABXAAAAAADXAAAAAACLgAAAAABXAAAAAACXAAAAAACLgAAAAABXAAAAAAAXAAAAAACLgAAAAACXAAAAAADXAAAAAACLgAAAAACfAAAAAAAHgAAAAADfAAAAAAAfAAAAAAAawAAAAAAawAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbAAAAAAALgAAAAAAXAAAAAAAXAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAXAAAAAAALgAAAAAAXAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAXAAAAAAAXAAAAAAALgAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAALgAAAAAAXAAAAAAAXAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAawAAAAAAXAAAAAAALgAAAAAAXAAAAAAARgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAawAAAAAAXAAAAAAAXAAAAAAALgAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAALgAAAAAAXAAAAAAAXAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAXAAAAAAALgAAAAAAXAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAXAAAAAAAXAAAAAAALgAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAALgAAAAAAXAAAAAAAXAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: fAAAAAAAfAAAAAAAawAAAAAATgAAAAAATgAAAAAAfAAAAAAAXAAAAAACLgAAAAADXAAAAAABXAAAAAABLgAAAAADXAAAAAAAXAAAAAADXAAAAAADfAAAAAAAXAAAAAADawAAAAAAXAAAAAABLgAAAAADXAAAAAADXAAAAAACLgAAAAABXAAAAAACXAAAAAACLgAAAAACXAAAAAAAXAAAAAAALgAAAAADXAAAAAACXAAAAAAATgAAAAAAXAAAAAACawAAAAAAXAAAAAACXAAAAAABLgAAAAABXAAAAAABXAAAAAAALgAAAAACXAAAAAADXAAAAAABLgAAAAAAXAAAAAAAXAAAAAABLgAAAAAAXAAAAAAAawAAAAAAXAAAAAACfAAAAAAAXAAAAAABXAAAAAADXAAAAAACLgAAAAABXAAAAAACXAAAAAACLgAAAAABXAAAAAAAXAAAAAACLgAAAAACXAAAAAADXAAAAAACLgAAAAACfAAAAAAAHgAAAAADfAAAAAAAfAAAAAAAawAAAAAAawAAAAAAfAAAAAAAfAAAAAAATgAAAAAATgAAAAAATgAAAAAAfAAAAAAATgAAAAAATgAAAAAATgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbAAAAAAALgAAAAAAXAAAAAAAXAAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAXAAAAAAALgAAAAAAXAAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAXAAAAAAAXAAAAAAALgAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAALgAAAAAAXAAAAAAAXAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAawAAAAAAXAAAAAAALgAAAAAAXAAAAAAARgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAawAAAAAAXAAAAAAAXAAAAAAALgAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAALgAAAAAAXAAAAAAAXAAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAXAAAAAAALgAAAAAAXAAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAXAAAAAAAXAAAAAAALgAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAALgAAAAAAXAAAAAAAXAAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -2,1: ind: -2,1 - tiles: XAAAAAABXAAAAAAAXAAAAAADXAAAAAABXAAAAAACawAAAAAAbwAAAAAAbwAAAAADbwAAAAABbwAAAAAAbwAAAAACfAAAAAAAXAAAAAADXAAAAAAAXAAAAAABXAAAAAADXAAAAAACXAAAAAACXAAAAAADXAAAAAACXAAAAAADfAAAAAAAbwAAAAABbwAAAAACbwAAAAABbwAAAAADbwAAAAADawAAAAAAXAAAAAAALgAAAAADLgAAAAABXAAAAAAAXAAAAAABXAAAAAADXAAAAAAAXAAAAAADXAAAAAACfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAbwAAAAACbwAAAAADfAAAAAAAXAAAAAACLgAAAAAALgAAAAADXAAAAAACQQAAAAAAfAAAAAAAfAAAAAAAQQAAAAAAfAAAAAAAfAAAAAAAbwAAAAACbwAAAAAAbwAAAAACbwAAAAADbwAAAAACfAAAAAAAXAAAAAABXAAAAAABXAAAAAABXAAAAAACXgAAAAACXgAAAAAAfAAAAAAAXgAAAAACXgAAAAACfAAAAAAAbwAAAAABbwAAAAABbwAAAAAAbwAAAAAAbwAAAAACfAAAAAAAfAAAAAAAfAAAAAAAbAAAAAAAfAAAAAAAHgAAAAACHgAAAAACfAAAAAAAHgAAAAADHgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAbAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAbAAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAfAAAAAAAbAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAfAAAAAAAKgAAAAAALgAAAAAAAgAAAAAALgAAAAAAAgAAAAAALgAAAAAAAgAAAAAALgAAAAAAKgAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAfAAAAAAAKgAAAAAAAgAAAAAALgAAAAAAAgAAAAAALgAAAAAAAgAAAAAALgAAAAAAAgAAAAAAKgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: XAAAAAABXAAAAAAAXAAAAAADXAAAAAABXAAAAAACawAAAAAAbwAAAAAAbwAAAAADbwAAAAABbwAAAAAAbwAAAAACfAAAAAAAXAAAAAADXAAAAAAAXAAAAAABXAAAAAAAXAAAAAACXAAAAAACXAAAAAADXAAAAAACXAAAAAADTgAAAAAAbwAAAAABbwAAAAACbwAAAAABbwAAAAADbwAAAAADawAAAAAAXAAAAAAALgAAAAADLgAAAAABXAAAAAAAXAAAAAABXAAAAAADXAAAAAAAXAAAAAADXAAAAAACfAAAAAAATgAAAAAATgAAAAAAfAAAAAAAbwAAAAACbwAAAAADTgAAAAAAXAAAAAACLgAAAAAALgAAAAADXAAAAAACQQAAAAAATgAAAAAAfAAAAAAAQQAAAAAATgAAAAAAfAAAAAAAbwAAAAACbwAAAAAAbwAAAAACbwAAAAADbwAAAAACfAAAAAAAXAAAAAABXAAAAAABXAAAAAABXAAAAAACXgAAAAACXgAAAAAAfAAAAAAAXgAAAAACXgAAAAACfAAAAAAAbwAAAAABbwAAAAABbwAAAAAAbwAAAAAAbwAAAAACfAAAAAAAfAAAAAAAfAAAAAAAbAAAAAAAfAAAAAAAHgAAAAACHgAAAAACfAAAAAAAHgAAAAADHgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAbAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAATgAAAAAAfAAAAAAAfAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAbAAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAATgAAAAAATgAAAAAAfAAAAAAAfAAAAAAAewAAAAAAfAAAAAAAbAAAAAAAfAAAAAAATgAAAAAAfAAAAAAATgAAAAAAfAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAfAAAAAAAKgAAAAAALgAAAAAAAgAAAAAALgAAAAAAAgAAAAAALgAAAAAAAgAAAAAALgAAAAAAKgAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAfAAAAAAAKgAAAAAAAgAAAAAALgAAAAAAAgAAAAAALgAAAAAAAgAAAAAALgAAAAAAAgAAAAAAKgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAATgAAAAAATgAAAAAATgAAAAAAfAAAAAAATgAAAAAATgAAAAAATgAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -2,-3: ind: -2,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAfAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAAAAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAAAAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAfAAAAAAAXgAAAAABXgAAAAABTgAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAfAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAAAAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAAAAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAATgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAfAAAAAAAXgAAAAABXgAAAAABTgAAAAAA version: 6 -1,-3: ind: -1,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAARgAAAAAAfAAAAAAARgAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAOQAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAOQAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAfAAAAAAAfAAAAAAARgAAAAAAfAAAAAAARgAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAXAAAAAABXAAAAAAAXAAAAAAAXAAAAAACXAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAXgAAAAAATgAAAAAAXgAAAAACTgAAAAAAfAAAAAAAXAAAAAADLgAAAAAALgAAAAADLgAAAAADXAAAAAABfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAARgAAAAAATgAAAAAARgAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAATgAAAAAAfAAAAAAAOQAAAAAAfAAAAAAATgAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAATgAAAAAAfAAAAAAAOQAAAAAAfAAAAAAATgAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAfAAAAAAAfAAAAAAARgAAAAAATgAAAAAARgAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAATgAAAAAATgAAAAAATgAAAAAAfAAAAAAAfAAAAAAAXAAAAAABXAAAAAAAXAAAAAAAXAAAAAACXAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAXgAAAAAATgAAAAAAXgAAAAACTgAAAAAATgAAAAAAXAAAAAADLgAAAAAALgAAAAADLgAAAAADXAAAAAABfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAA version: 6 0,-3: ind: 0,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAbQAAAAACbQAAAAACbQAAAAADbQAAAAABbQAAAAADfAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAfAAAAAAAfAAAAAAATgAAAAAAfAAAAAAATgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAATgAAAAAATgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAbQAAAAACbQAAAAACbQAAAAADbQAAAAABbQAAAAADfAAAAAAA version: 6 1,-3: ind: 1,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAbAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAbAAAAAAAfAAAAAAAfAAAAAAAIwAAAAAAIwAAAAACIwAAAAAAIwAAAAACIwAAAAAB + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAfAAAAAAAfAAAAAAATgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAfAAAAAAAfAAAAAAATgAAAAAATgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAbAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAbAAAAAAAfAAAAAAAfAAAAAAAIwAAAAAAIwAAAAACIwAAAAAAIwAAAAACIwAAAAAB version: 6 1,1: ind: 1,1 - tiles: HgAAAAACfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAHgAAAAADfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAawAAAAAAawAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAeQAAAAACeQAAAAABfAAAAAAAewAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAXgAAAAADeQAAAAAAeQAAAAADfAAAAAAAewAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAXgAAAAAAeQAAAAAAeQAAAAAAfAAAAAAAewAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAXgAAAAABXAAAAAAAXAAAAAADfAAAAAAAewAAAAAAewAAAAAAfAAAAAAAfAAAAAAAawAAAAAAawAAAAAAfAAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAeQAAAAABeQAAAAABeQAAAAACeQAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAACeQAAAAAAeQAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAABeQAAAAAAeQAAAAABfAAAAAAAfAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAawAAAAAAfAAAAAAAfAAAAAAAawAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAAAAAAAAAawAAAAAAOQAAAAAAOQAAAAAAawAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAAAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: HgAAAAACfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAHgAAAAADfAAAAAAAfAAAAAAAfAAAAAAAawAAAAAAfAAAAAAAfAAAAAAATgAAAAAATgAAAAAATgAAAAAAfAAAAAAATgAAAAAATgAAAAAATgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAeQAAAAACeQAAAAABfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAeQAAAAAAeQAAAAADfAAAAAAAawAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAATgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAeQAAAAAAeQAAAAAATgAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAATgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAXAAAAAAAXAAAAAADTgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAeQAAAAABeQAAAAABeQAAAAACeQAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAACeQAAAAAAeQAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAABeQAAAAAAeQAAAAABfAAAAAAAfAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAATgAAAAAATgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAawAAAAAAfAAAAAAAfAAAAAAAawAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAAAAAAAAAawAAAAAAOQAAAAAAOQAAAAAAawAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAfAAAAAAATgAAAAAATgAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAAAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -3,-1: ind: -3,-1 - tiles: fAAAAAAAbAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAeQAAAAAAeQAAAAAAeQAAAAABeQAAAAACfAAAAAAAfAAAAAAAbAAAAAAAXAAAAAACXAAAAAACaQAAAAACaQAAAAADWgAAAAAAWgAAAAAEWgAAAAAAWgAAAAAAfAAAAAAAeQAAAAACeQAAAAACeQAAAAAAeQAAAAABfAAAAAAAfAAAAAAAfAAAAAAAXAAAAAACXAAAAAADaQAAAAACaQAAAAACNQAAAAACWgAAAAAAWgAAAAAAWgAAAAAAfAAAAAAAfAAAAAAAawAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAaQAAAAACMAAAAAAANQAAAAADWgAAAAAAWgAAAAAAWgAAAAAAfAAAAAAAegAAAAABegAAAAABLgAAAAABeQAAAAACeQAAAAAALgAAAAADeQAAAAACeQAAAAADfAAAAAAAaQAAAAABMAAAAAAANQAAAAADNQAAAAAAWgAAAAAAWgAAAAAAfAAAAAAAeQAAAAABeQAAAAACLgAAAAAAeQAAAAACeQAAAAAAeQAAAAABeQAAAAADeQAAAAABfAAAAAAAaQAAAAAAMAAAAAAAWgAAAAAANQAAAAAAWgAAAAAEWgAAAAAAfAAAAAAAeQAAAAADeQAAAAAAeQAAAAAALgAAAAAAeQAAAAACLgAAAAAAeQAAAAABLgAAAAADawAAAAAAaQAAAAADaQAAAAAAWgAAAAAANQAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAeQAAAAACeQAAAAABLgAAAAACeQAAAAABeQAAAAABeQAAAAACeQAAAAABeQAAAAABfAAAAAAAaQAAAAADaQAAAAACNQAAAAABNQAAAAADWgAAAAAAWgAAAAAAfAAAAAAAegAAAAACegAAAAABLgAAAAACeQAAAAAAeQAAAAAALgAAAAADeQAAAAACeQAAAAADfAAAAAAAfAAAAAAAawAAAAAAfAAAAAAAawAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAawAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAXAAAAAADXAAAAAAAXAAAAAABXAAAAAAAXAAAAAACXAAAAAAAXAAAAAACXAAAAAACXAAAAAADXAAAAAAAXAAAAAACXAAAAAAAXAAAAAAAXAAAAAADawAAAAAAXAAAAAADXAAAAAACXAAAAAABLgAAAAAALgAAAAACXAAAAAACXAAAAAADLgAAAAADLgAAAAACXAAAAAAAXAAAAAAALgAAAAABLgAAAAABXAAAAAABXAAAAAACfAAAAAAAXAAAAAAALgAAAAADLgAAAAAAXAAAAAACXAAAAAABXAAAAAABXAAAAAABXAAAAAABXAAAAAAAXAAAAAABXAAAAAABXAAAAAADXAAAAAABXAAAAAADXAAAAAAAawAAAAAAXAAAAAADXAAAAAADXAAAAAAAXAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAawAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAawAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAbAAAAAAAfAAAAAAAPwAAAAAAPwAAAAAAHgAAAAAAHgAAAAAAeQAAAAAAfAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAfAAAAAAALgAAAAAALgAAAAAAeQAAAAACeQAAAAABfAAAAAAAfAAAAAAAPwAAAAAAPwAAAAAALgAAAAAAHgAAAAAAeQAAAAAAfAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAawAAAAAAPwAAAAAAPwAAAAAAeQAAAAACeQAAAAAAfAAAAAAAfAAAAAAAPwAAAAAAPwAAAAAALgAAAAAAHgAAAAAALgAAAAAAHgAAAAAALgAAAAAAHgAAAAAAHgAAAAAAfAAAAAAAPwAAAAAAPwAAAAAAeQAAAAADeQAAAAAB + tiles: fAAAAAAAbAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAeQAAAAAAeQAAAAAAeQAAAAABeQAAAAACfAAAAAAAfAAAAAAAbAAAAAAAXAAAAAACXAAAAAACaQAAAAACaQAAAAADWgAAAAAAWgAAAAAEWgAAAAAAWgAAAAAAfAAAAAAAeQAAAAACeQAAAAACeQAAAAAAeQAAAAABfAAAAAAAfAAAAAAAfAAAAAAAXAAAAAACXAAAAAADaQAAAAACaQAAAAACNQAAAAACWgAAAAAAWgAAAAAAWgAAAAAAfAAAAAAAfAAAAAAAawAAAAAATgAAAAAATgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAaQAAAAACMAAAAAAANQAAAAADWgAAAAAAWgAAAAAAWgAAAAAATgAAAAAAegAAAAABegAAAAABLgAAAAABeQAAAAACeQAAAAAALgAAAAADeQAAAAACeQAAAAADfAAAAAAAaQAAAAABMAAAAAAANQAAAAADNQAAAAAAWgAAAAAAWgAAAAAATgAAAAAAeQAAAAABeQAAAAACLgAAAAAAeQAAAAACeQAAAAAAeQAAAAABeQAAAAADeQAAAAABTgAAAAAAaQAAAAAAMAAAAAAAWgAAAAAANQAAAAAAWgAAAAAEWgAAAAAAfAAAAAAAeQAAAAADeQAAAAAAeQAAAAAALgAAAAAAeQAAAAACLgAAAAAAeQAAAAABLgAAAAADawAAAAAAaQAAAAADaQAAAAAAWgAAAAAANQAAAAAAWwAAAAAAWwAAAAAATgAAAAAAeQAAAAACeQAAAAABLgAAAAACeQAAAAABeQAAAAABeQAAAAACeQAAAAABeQAAAAABTgAAAAAAaQAAAAADaQAAAAACNQAAAAABNQAAAAADWgAAAAAAWgAAAAAATgAAAAAAegAAAAACegAAAAABLgAAAAACeQAAAAAAeQAAAAAALgAAAAADeQAAAAACeQAAAAADfAAAAAAAfAAAAAAAawAAAAAATgAAAAAAawAAAAAATgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAawAAAAAAfAAAAAAATgAAAAAATgAAAAAATgAAAAAAfAAAAAAAfAAAAAAAXAAAAAADXAAAAAAAXAAAAAABXAAAAAAAXAAAAAACXAAAAAAAXAAAAAACXAAAAAACXAAAAAADXAAAAAAAXAAAAAACXAAAAAAAXAAAAAAAXAAAAAADawAAAAAAXAAAAAADXAAAAAACXAAAAAABLgAAAAAALgAAAAACXAAAAAACXAAAAAADLgAAAAADLgAAAAACXAAAAAAAXAAAAAAALgAAAAABLgAAAAABXAAAAAABXAAAAAACTgAAAAAAXAAAAAAALgAAAAADLgAAAAAAXAAAAAACXAAAAAABXAAAAAABXAAAAAABXAAAAAABXAAAAAAAXAAAAAABXAAAAAABXAAAAAADXAAAAAABXAAAAAADXAAAAAAAawAAAAAAXAAAAAADXAAAAAADXAAAAAAAXAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAawAAAAAATgAAAAAAfAAAAAAATgAAAAAAawAAAAAATgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAATgAAAAAATgAAAAAAbAAAAAAAfAAAAAAAPwAAAAAAPwAAAAAAHgAAAAAAHgAAAAAAeQAAAAAAfAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAfAAAAAAALgAAAAAALgAAAAAAeQAAAAACeQAAAAABfAAAAAAAfAAAAAAAPwAAAAAAPwAAAAAALgAAAAAAHgAAAAAAeQAAAAAAfAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAawAAAAAAPwAAAAAAPwAAAAAAeQAAAAACeQAAAAAAfAAAAAAAfAAAAAAAPwAAAAAAPwAAAAAALgAAAAAAHgAAAAAALgAAAAAAHgAAAAAALgAAAAAAHgAAAAAAHgAAAAAAfAAAAAAAPwAAAAAAPwAAAAAAeQAAAAADeQAAAAAB version: 6 -3,0: ind: -3,0 - tiles: fAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAALgAAAAAAHgAAAAAALgAAAAAAHgAAAAAALgAAAAAAHgAAAAAAHgAAAAAAfAAAAAAAPwAAAAAAPwAAAAAAeQAAAAADeQAAAAADfAAAAAAAfAAAAAAAfAAAAAAAbAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAfAAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAfAAAAAAAPwAAAAAAPwAAAAAAeQAAAAAAeQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAfAAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAfAAAAAAALgAAAAAALgAAAAAAeQAAAAABeQAAAAABfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAawAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAASAAAAAAASAAAAAABSAAAAAADfAAAAAAAHgAAAAAAeQAAAAADeQAAAAABeQAAAAABfAAAAAAAXAAAAAACXAAAAAABXAAAAAADfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAASAAAAAABSAAAAAACSAAAAAACfAAAAAAAHgAAAAAAeQAAAAAAeQAAAAACeQAAAAABfAAAAAAAXAAAAAABLgAAAAACLgAAAAAAfAAAAAAAfAAAAAAAbAAAAAAAfAAAAAAAXAAAAAADXAAAAAADXAAAAAAAfAAAAAAAHgAAAAADHgAAAAABHgAAAAADHgAAAAAAfAAAAAAAXAAAAAAALgAAAAACXAAAAAAAXAAAAAACXAAAAAACXAAAAAABXAAAAAAAXAAAAAACXAAAAAACXAAAAAADfAAAAAAAfAAAAAAAawAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAXAAAAAACLgAAAAABXAAAAAAAXAAAAAADTQAAAAABTQAAAAACXAAAAAABTQAAAAACTQAAAAABXAAAAAADawAAAAAAXAAAAAABXAAAAAABXAAAAAABXAAAAAACXAAAAAAAXAAAAAAALgAAAAACLgAAAAADXAAAAAABXAAAAAABXAAAAAAAXAAAAAADXAAAAAABXAAAAAADXAAAAAABawAAAAAAXAAAAAACXAAAAAADXAAAAAACXAAAAAADXAAAAAADXAAAAAADXAAAAAAAXAAAAAACTgAAAAAATgAAAAAAfAAAAAAAfAAAAAAAawAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAawAAAAAAfAAAAAAAfAAAAAAAawAAAAAAawAAAAAAfAAAAAAATgAAAAAATgAAAAAAawAAAAAAHgAAAAAAHgAAAAACHgAAAAADHgAAAAACfAAAAAAAHgAAAAAAHgAAAAACHgAAAAABHgAAAAACfAAAAAAATgAAAAAATgAAAAAAfAAAAAAANAAAAAADTgAAAAAAawAAAAAAHgAAAAACTQAAAAADTQAAAAACHgAAAAACawAAAAAAHgAAAAAATQAAAAACTQAAAAACHgAAAAABawAAAAAATgAAAAAATgAAAAAAfAAAAAAANAAAAAAATgAAAAAAfAAAAAAAHgAAAAADTQAAAAAATQAAAAADHgAAAAAAfAAAAAAAHgAAAAAAHgAAAAACHgAAAAABHgAAAAACfAAAAAAATgAAAAAATgAAAAAAfAAAAAAANAAAAAADTgAAAAAAfAAAAAAAHgAAAAADHgAAAAAAHgAAAAADHgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAawAAAAAAawAAAAAAfAAAAAAANAAAAAADTgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAXAAAAAABXAAAAAAAXAAAAAAB + tiles: fAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAALgAAAAAAHgAAAAAALgAAAAAAHgAAAAAALgAAAAAAHgAAAAAAHgAAAAAAfAAAAAAAPwAAAAAAPwAAAAAAeQAAAAADeQAAAAADfAAAAAAAfAAAAAAAfAAAAAAAbAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAfAAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAfAAAAAAAPwAAAAAAPwAAAAAAeQAAAAAAeQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAfAAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAfAAAAAAALgAAAAAALgAAAAAAeQAAAAABeQAAAAABfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAawAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAASAAAAAAASAAAAAABSAAAAAADfAAAAAAAHgAAAAAAeQAAAAADeQAAAAABeQAAAAABfAAAAAAAXAAAAAACXAAAAAABXAAAAAADfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAASAAAAAABSAAAAAACSAAAAAACfAAAAAAAHgAAAAAAeQAAAAAAeQAAAAACeQAAAAABfAAAAAAAXAAAAAABLgAAAAACLgAAAAAAfAAAAAAAfAAAAAAAbAAAAAAAfAAAAAAAXAAAAAADXAAAAAADXAAAAAAAfAAAAAAAHgAAAAADHgAAAAABHgAAAAADHgAAAAAAfAAAAAAAXAAAAAAALgAAAAACXAAAAAAAXAAAAAACXAAAAAACXAAAAAABXAAAAAAAXAAAAAACXAAAAAACXAAAAAADfAAAAAAAfAAAAAAAawAAAAAATgAAAAAAfAAAAAAAfAAAAAAAXAAAAAACLgAAAAABXAAAAAAAXAAAAAADTQAAAAABTQAAAAACXAAAAAABTQAAAAACTQAAAAABXAAAAAADawAAAAAAXAAAAAABXAAAAAABXAAAAAABXAAAAAACXAAAAAAAXAAAAAAALgAAAAACLgAAAAADXAAAAAABXAAAAAABXAAAAAAAXAAAAAADXAAAAAABXAAAAAADXAAAAAABawAAAAAAXAAAAAACXAAAAAADXAAAAAACXAAAAAADXAAAAAADXAAAAAADXAAAAAAAXAAAAAACTgAAAAAATgAAAAAAfAAAAAAATgAAAAAAawAAAAAATgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAawAAAAAATgAAAAAAfAAAAAAAawAAAAAAawAAAAAAfAAAAAAATgAAAAAATgAAAAAAawAAAAAAHgAAAAAAHgAAAAACHgAAAAADHgAAAAACfAAAAAAAHgAAAAAAHgAAAAACHgAAAAABHgAAAAACTgAAAAAATgAAAAAATgAAAAAAfAAAAAAANAAAAAADTgAAAAAAawAAAAAAHgAAAAACTQAAAAADTQAAAAACHgAAAAACawAAAAAAHgAAAAAATQAAAAACTQAAAAACHgAAAAABawAAAAAATgAAAAAATgAAAAAATgAAAAAANAAAAAAATgAAAAAAfAAAAAAAHgAAAAADTQAAAAAATQAAAAADHgAAAAAATgAAAAAAHgAAAAAAHgAAAAACHgAAAAABHgAAAAACTgAAAAAATgAAAAAATgAAAAAATgAAAAAANAAAAAADTgAAAAAAfAAAAAAAHgAAAAADHgAAAAAAHgAAAAADHgAAAAAAfAAAAAAAfAAAAAAATgAAAAAATgAAAAAATgAAAAAAfAAAAAAAawAAAAAAawAAAAAAfAAAAAAANAAAAAADTgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAXAAAAAABXAAAAAAAXAAAAAAB version: 6 -3,1: ind: -3,1 - tiles: NAAAAAABTgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAXAAAAAADXAAAAAACTQAAAAACTQAAAAABTQAAAAAANAAAAAAATgAAAAAAbAAAAAAAfAAAAAAAfAAAAAAAbAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAABXAAAAAACTQAAAAABTQAAAAADTQAAAAACfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAXAAAAAAATQAAAAAAXAAAAAAAXAAAAAADXAAAAAABXAAAAAAAXAAAAAACXAAAAAAAXAAAAAAAXAAAAAADfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAXAAAAAAATQAAAAAAXAAAAAAAfAAAAAAAQQAAAAAAfAAAAAAAfAAAAAAAQQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAfAAAAAAAXgAAAAAAXgAAAAAAfAAAAAAAXgAAAAADXgAAAAAAfAAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAbAAAAAAAfAAAAAAAfAAAAAAAHgAAAAABHgAAAAAAfAAAAAAAHgAAAAACHgAAAAACfAAAAAAAFAAAAAAAeQAAAAAAeQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAFAAAAAAAFAAAAAAAeQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: NAAAAAABTgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAXAAAAAADXAAAAAACTQAAAAACTQAAAAABTQAAAAAANAAAAAAATgAAAAAAbAAAAAAAfAAAAAAAfAAAAAAAbAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAABXAAAAAACTQAAAAABTQAAAAADTQAAAAACfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAXAAAAAAATQAAAAAAXAAAAAAAXAAAAAADXAAAAAABXAAAAAAAXAAAAAACXAAAAAAAXAAAAAAAXAAAAAADfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAXAAAAAAATQAAAAAAXAAAAAAAfAAAAAAAQQAAAAAATgAAAAAAfAAAAAAAQQAAAAAATgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAfAAAAAAAXgAAAAAAXgAAAAAAfAAAAAAAXgAAAAADXgAAAAAAfAAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAbAAAAAAAfAAAAAAAfAAAAAAAHgAAAAABHgAAAAAAfAAAAAAAHgAAAAACHgAAAAACfAAAAAAAFAAAAAAAeQAAAAAAeQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAFAAAAAAAFAAAAAAAeQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAATgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAATgAAAAAATgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAewAAAAAAfAAAAAAAfAAAAAAATgAAAAAATgAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -3,-2: ind: -3,-2 - tiles: ewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAbAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAfAAAAAAAfAAAAAAAFAAAAAAGFAAAAAAAFAAAAAAFeQAAAAACeQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAfAAAAAAAFAAAAAACfAAAAAAAfAAAAAAAEwAAAAADEwAAAAAAeQAAAAADfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAALgAAAAABLgAAAAAALgAAAAACewAAAAAAfAAAAAAAFAAAAAAEEwAAAAABEwAAAAABEwAAAAABEwAAAAACeQAAAAABfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAHgAAAAABLgAAAAABLgAAAAADLgAAAAAAewAAAAAAfAAAAAAAeQAAAAADEwAAAAABEwAAAAADEwAAAAADEwAAAAACfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAHgAAAAACHgAAAAADHgAAAAACHgAAAAABewAAAAAAfAAAAAAAeQAAAAABEwAAAAABEwAAAAADEwAAAAAAEwAAAAADfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAawAAAAAAfAAAAAAAfAAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAXAAAAAAAXAAAAAABXAAAAAACXAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAXAAAAAADLgAAAAACLgAAAAAAXAAAAAABeQAAAAABfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAbAAAAAAAXAAAAAACLgAAAAAALgAAAAABXAAAAAABeQAAAAACfAAAAAAAfAAAAAAAbAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAXAAAAAACXAAAAAADXAAAAAAAXAAAAAABeQAAAAABbAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAbAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAawAAAAAAfAAAAAAAFgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAeQAAAAAAeQAAAAAAXgAAAAACegAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAeQAAAAAAeQAAAAABXgAAAAABegAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAawAAAAAAawAAAAAAawAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAeQAAAAABeQAAAAACXgAAAAACegAAAAACfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAbAAAAAAAeQAAAAABeQAAAAAAeQAAAAABfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAawAAAAAAfAAAAAAA + tiles: ewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAAAAAAAAAfAAAAAAAfAAAAAAATgAAAAAATgAAAAAAfAAAAAAAbAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAfAAAAAAAfAAAAAAAFAAAAAAGFAAAAAAAFAAAAAAFeQAAAAACeQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAfAAAAAAAFAAAAAACfAAAAAAAfAAAAAAAEwAAAAADEwAAAAAAeQAAAAADTgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAALgAAAAABLgAAAAAALgAAAAACewAAAAAATgAAAAAAFAAAAAAEEwAAAAABEwAAAAABEwAAAAABEwAAAAACeQAAAAABTgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAHgAAAAABLgAAAAABLgAAAAADLgAAAAAAewAAAAAATgAAAAAAeQAAAAADEwAAAAABEwAAAAADEwAAAAADEwAAAAACfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAHgAAAAACHgAAAAADHgAAAAACHgAAAAABewAAAAAAfAAAAAAAeQAAAAABEwAAAAABEwAAAAADEwAAAAAAEwAAAAADfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAawAAAAAATgAAAAAAfAAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAXAAAAAAAXAAAAAABXAAAAAACXAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAXAAAAAADLgAAAAACLgAAAAAAXAAAAAABeQAAAAABfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAbAAAAAAAXAAAAAACLgAAAAAALgAAAAABXAAAAAABeQAAAAACfAAAAAAAfAAAAAAAbAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAXAAAAAACXAAAAAADXAAAAAAAXAAAAAABeQAAAAABbAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAbAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAATgAAAAAATgAAAAAAawAAAAAAfAAAAAAAFgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAeQAAAAAAeQAAAAAAXgAAAAACegAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAeQAAAAAAeQAAAAABXgAAAAABegAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAawAAAAAAawAAAAAAawAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAeQAAAAABeQAAAAACXgAAAAACegAAAAACfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAbAAAAAAAeQAAAAABeQAAAAAAeQAAAAABfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAATgAAAAAATgAAAAAAawAAAAAAfAAAAAAA version: 6 -4,-1: ind: -4,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAALgAAAAACLgAAAAACfAAAAAAAXAAAAAADLgAAAAAAXAAAAAAAXAAAAAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARgAAAAAAOQAAAAAAOQAAAAAAawAAAAAAXAAAAAACXAAAAAAAXAAAAAADfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAXAAAAAACLgAAAAADXAAAAAAAawAAAAAANQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAfAAAAAAAXAAAAAABLgAAAAAAXAAAAAAAfAAAAAAAWgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAfAAAAAAAawAAAAAAfAAAAAAAawAAAAAAfAAAAAAAWgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAfAAAAAAAXAAAAAABLgAAAAABXAAAAAAAfAAAAAAAWgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAXAAAAAACLgAAAAABXAAAAAABfAAAAAAAWgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARgAAAAAAOQAAAAAAOQAAAAAAawAAAAAAXAAAAAABXAAAAAACXAAAAAABfAAAAAAANQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAALgAAAAABLgAAAAAAfAAAAAAAXAAAAAACLgAAAAADXAAAAAACfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARgAAAAAAOQAAAAAAOQAAAAAAawAAAAAAXAAAAAAALgAAAAAAXAAAAAABXAAAAAABXAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAXAAAAAAAXAAAAAAAXAAAAAABXAAAAAADXAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAfAAAAAAAXAAAAAABXAAAAAABXAAAAAACXAAAAAAAXAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAawAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAfAAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAfAAAAAAAfAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAALgAAAAACLgAAAAACTgAAAAAAXAAAAAADLgAAAAAAXAAAAAAAXAAAAAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARgAAAAAAOQAAAAAAOQAAAAAAawAAAAAAXAAAAAACXAAAAAAAXAAAAAADfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAXAAAAAACLgAAAAADXAAAAAAAawAAAAAANQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAATgAAAAAAXAAAAAABLgAAAAAAXAAAAAAATgAAAAAAWgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAfAAAAAAAawAAAAAATgAAAAAAawAAAAAAfAAAAAAAWgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAATgAAAAAAXAAAAAABLgAAAAABXAAAAAAATgAAAAAAWgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAXAAAAAACLgAAAAABXAAAAAABTgAAAAAAWgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARgAAAAAAOQAAAAAAOQAAAAAAawAAAAAAXAAAAAABXAAAAAACXAAAAAABTgAAAAAANQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAALgAAAAABLgAAAAAATgAAAAAAXAAAAAACLgAAAAADXAAAAAACfAAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARgAAAAAAOQAAAAAAOQAAAAAAawAAAAAAXAAAAAAALgAAAAAAXAAAAAABXAAAAAABXAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAXAAAAAAAXAAAAAAAXAAAAAABXAAAAAADXAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAATgAAAAAAXAAAAAABXAAAAAABXAAAAAACXAAAAAAAXAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAawAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAfAAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAfAAAAAAAfAAAAAAA version: 6 2,0: ind: 2,0 - tiles: awAAAAAAHgAAAAADLgAAAAAAHgAAAAADawAAAAAAHgAAAAACTgAAAAAATgAAAAAATgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAeQAAAAADeQAAAAADeQAAAAACfAAAAAAAHgAAAAAALgAAAAABHgAAAAABfAAAAAAAHgAAAAADTgAAAAAATgAAAAAATgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAALgAAAAADeQAAAAABLgAAAAADfAAAAAAAHgAAAAABHgAAAAAAHgAAAAAAfAAAAAAAHgAAAAAATgAAAAAATgAAAAAATgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAawAAAAAAawAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAbAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAHgAAAAADfAAAAAAAewAAAAAAewAAAAAAfAAAAAAAHgAAAAADHgAAAAAAHgAAAAACQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAHgAAAAACHgAAAAAAHgAAAAACQQAAAAAAHgAAAAACfAAAAAAAfAAAAAAAfAAAAAAAQQAAAAAAHgAAAAADHgAAAAADQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAHgAAAAAAHgAAAAABHgAAAAAAQQAAAAAAfAAAAAAAawAAAAAAfAAAAAAAfAAAAAAAQQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAHgAAAAABHgAAAAAAHgAAAAADHgAAAAACHgAAAAACawAAAAAAOQAAAAAAOQAAAAAAfAAAAAAAHgAAAAABHgAAAAACHgAAAAACHgAAAAABHgAAAAABHgAAAAADHgAAAAADHgAAAAADHgAAAAACHgAAAAADHgAAAAADHgAAAAACfAAAAAAAfAAAAAAAfAAAAAAAQQAAAAAAHgAAAAABHgAAAAAAHgAAAAAAHgAAAAACHgAAAAABHgAAAAACHgAAAAADHgAAAAACHgAAAAABHgAAAAAAHgAAAAABHgAAAAABfAAAAAAAewAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAawAAAAAAfAAAAAAAfAAAAAAAbAAAAAAAfAAAAAAAfAAAAAAAHgAAAAACHgAAAAADHgAAAAADfAAAAAAAewAAAAAAAAAAAAAAfAAAAAAAXgAAAAACXgAAAAACXgAAAAACTQAAAAAAHgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAAAAAAAAAfAAAAAAAXgAAAAABXgAAAAADXgAAAAAATQAAAAABHgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAAAAAAAAAfAAAAAAAXgAAAAADXgAAAAAAXgAAAAACTQAAAAACHgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAHgAAAAAAHgAAAAACfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAACHgAAAAADHgAAAAADfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: awAAAAAAHgAAAAADLgAAAAAAHgAAAAADawAAAAAAHgAAAAACTgAAAAAATgAAAAAATgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAeQAAAAADeQAAAAADeQAAAAACfAAAAAAAHgAAAAAALgAAAAABHgAAAAABTgAAAAAAHgAAAAADTgAAAAAATgAAAAAATgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAALgAAAAADeQAAAAABLgAAAAADfAAAAAAAHgAAAAABHgAAAAAAHgAAAAAAfAAAAAAAHgAAAAAATgAAAAAATgAAAAAATgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAawAAAAAAawAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAbAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAHgAAAAADfAAAAAAAewAAAAAAewAAAAAAfAAAAAAAHgAAAAADHgAAAAAAHgAAAAACQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAHgAAAAACHgAAAAAAHgAAAAACQQAAAAAAHgAAAAACfAAAAAAAfAAAAAAAfAAAAAAAQQAAAAAAHgAAAAADHgAAAAADQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAHgAAAAAAHgAAAAABHgAAAAAAQQAAAAAAfAAAAAAAawAAAAAAfAAAAAAAfAAAAAAAQQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAHgAAAAABHgAAAAAAHgAAAAADHgAAAAACHgAAAAACawAAAAAAOQAAAAAAOQAAAAAAfAAAAAAAHgAAAAABHgAAAAACHgAAAAACHgAAAAABHgAAAAABHgAAAAADHgAAAAADHgAAAAADHgAAAAACHgAAAAADHgAAAAADHgAAAAACfAAAAAAATgAAAAAATgAAAAAAQQAAAAAAHgAAAAABHgAAAAAAHgAAAAAAHgAAAAACHgAAAAABHgAAAAACHgAAAAADHgAAAAACHgAAAAABHgAAAAAAHgAAAAABHgAAAAABTgAAAAAAewAAAAAAewAAAAAAfAAAAAAATgAAAAAATgAAAAAAfAAAAAAAawAAAAAAfAAAAAAAfAAAAAAAbAAAAAAAfAAAAAAAfAAAAAAAHgAAAAACHgAAAAADHgAAAAADTgAAAAAAewAAAAAAAAAAAAAAfAAAAAAAXgAAAAACXgAAAAACXgAAAAACTQAAAAAAHgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAAAAAAAAATgAAAAAAXgAAAAABXgAAAAADXgAAAAAATQAAAAABHgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAAAAAAAAATgAAAAAAXgAAAAADXgAAAAAAXgAAAAACTQAAAAACHgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAHgAAAAAAHgAAAAACfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAACHgAAAAADHgAAAAADfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 2,-1: ind: 2,-1 - tiles: fAAAAAAAbwAAAAABbwAAAAABbwAAAAACbwAAAAADbwAAAAACfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAbAAAAAAAIwAAAAAAIwAAAAABIwAAAAAAIwAAAAACNwAAAAAALgAAAAADbwAAAAADLgAAAAACbwAAAAACLgAAAAAAbwAAAAADfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAIwAAAAAAIwAAAAAANwAAAAAAfAAAAAAAbwAAAAACbwAAAAABLgAAAAADbwAAAAACbwAAAAADbAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAbQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAawAAAAAAfAAAAAAAfAAAAAAAbwAAAAABLgAAAAAAbwAAAAAALgAAAAAAbwAAAAABfAAAAAAAfAAAAAAAfAAAAAAAbAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAeQAAAAADeQAAAAACeQAAAAADfAAAAAAAfAAAAAAAbwAAAAAAbwAAAAAAbwAAAAABbwAAAAABfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAbQAAAAAAbQAAAAAAfAAAAAAAeQAAAAACeQAAAAABeQAAAAABbwAAAAABLgAAAAAAbwAAAAACbwAAAAADbwAAAAAAbwAAAAABfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAeQAAAAACeQAAAAAAeQAAAAADbwAAAAAAfAAAAAAAbwAAAAACbwAAAAAAbwAAAAACbwAAAAADfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAbAAAAAAAHgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbwAAAAACfAAAAAAAbwAAAAABbwAAAAAAbwAAAAABbwAAAAABfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAHgAAAAABeQAAAAAAeQAAAAABfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAALgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAbAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAawAAAAAAfAAAAAAAfAAAAAAAXAAAAAACXAAAAAAAXAAAAAAAXAAAAAADXAAAAAABawAAAAAAHgAAAAABHgAAAAAAawAAAAAAHgAAAAABHgAAAAABHgAAAAABHgAAAAADHgAAAAADHgAAAAACfAAAAAAAXAAAAAADLgAAAAADLgAAAAABLgAAAAABXAAAAAABfAAAAAAAHgAAAAADHgAAAAAAfAAAAAAALgAAAAACLgAAAAADLgAAAAACLgAAAAACLgAAAAADLgAAAAACawAAAAAAXAAAAAABXAAAAAABXAAAAAABXAAAAAABXAAAAAADawAAAAAAHgAAAAABHgAAAAADawAAAAAAHgAAAAABHgAAAAACHgAAAAABHgAAAAABHgAAAAAAHgAAAAADfAAAAAAAXAAAAAACXAAAAAABXAAAAAADXAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAbAAAAAAAfAAAAAAAfAAAAAAAbAAAAAAAfAAAAAAAfAAAAAAAawAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAXAAAAAABXAAAAAACXAAAAAADbAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAHgAAAAAAHgAAAAAAHgAAAAABfAAAAAAAfAAAAAAAawAAAAAAawAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAHgAAAAAAHgAAAAACHgAAAAACHgAAAAADfAAAAAAAHgAAAAABHgAAAAAAHgAAAAADfAAAAAAAHgAAAAAAHgAAAAADHgAAAAACfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA + tiles: fAAAAAAAbwAAAAABbwAAAAABbwAAAAACbwAAAAADbwAAAAACfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAbAAAAAAAIwAAAAAAIwAAAAABIwAAAAAAIwAAAAACIwAAAAAALgAAAAADbwAAAAADLgAAAAACbwAAAAACLgAAAAAAbwAAAAADfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAANwAAAAAANwAAAAAAIwAAAAAAIwAAAAAAfAAAAAAAbwAAAAACbwAAAAABLgAAAAADbwAAAAACbwAAAAADbAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAbQAAAAAAfAAAAAAAfAAAAAAATgAAAAAAawAAAAAATgAAAAAAfAAAAAAAbwAAAAABLgAAAAAAbwAAAAAALgAAAAAAbwAAAAABfAAAAAAAfAAAAAAAfAAAAAAAbAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAeQAAAAADeQAAAAACeQAAAAADfAAAAAAAfAAAAAAAbwAAAAAAbwAAAAAAbwAAAAABbwAAAAABfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAbQAAAAAAbQAAAAAAfAAAAAAAeQAAAAACeQAAAAABeQAAAAABbwAAAAABLgAAAAAAbwAAAAACbwAAAAADbwAAAAAAbwAAAAABfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAeQAAAAACeQAAAAAAeQAAAAADbwAAAAAAfAAAAAAAbwAAAAACbwAAAAAAbwAAAAACbwAAAAADfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAbAAAAAAAHgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbwAAAAACfAAAAAAAbwAAAAABbwAAAAAAbwAAAAABbwAAAAABfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAHgAAAAABeQAAAAAAeQAAAAABfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAALgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAbAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAawAAAAAAfAAAAAAAfAAAAAAAXAAAAAACXAAAAAAAXAAAAAAAXAAAAAADXAAAAAABawAAAAAAHgAAAAABHgAAAAAAawAAAAAAHgAAAAABHgAAAAABHgAAAAABHgAAAAADHgAAAAADHgAAAAACfAAAAAAAXAAAAAADLgAAAAADLgAAAAABLgAAAAABXAAAAAABTgAAAAAAHgAAAAADHgAAAAAATgAAAAAALgAAAAACLgAAAAADLgAAAAACLgAAAAACLgAAAAADLgAAAAACawAAAAAAXAAAAAABXAAAAAABXAAAAAABXAAAAAABXAAAAAADawAAAAAAHgAAAAABHgAAAAADawAAAAAAHgAAAAABHgAAAAACHgAAAAABHgAAAAABHgAAAAAAHgAAAAADfAAAAAAAfAAAAAAAXAAAAAABXAAAAAADXAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAbAAAAAAAfAAAAAAAfAAAAAAAbAAAAAAAfAAAAAAAfAAAAAAAawAAAAAATgAAAAAAfAAAAAAAfAAAAAAAXAAAAAABXAAAAAACXAAAAAADbAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAHgAAAAAAHgAAAAAAHgAAAAABfAAAAAAAfAAAAAAAawAAAAAAawAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAHgAAAAAAHgAAAAACHgAAAAACHgAAAAADTgAAAAAAHgAAAAABHgAAAAAAHgAAAAADTgAAAAAAHgAAAAAAHgAAAAADHgAAAAACfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA version: 6 2,-2: ind: 2,-2 - tiles: awAAAAAAbwAAAAACbwAAAAACfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAbAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAbwAAAAADbwAAAAAAfAAAAAAAbwAAAAABbwAAAAACbwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAfAAAAAAAbwAAAAADbwAAAAADfAAAAAAAbwAAAAAAbwAAAAADbwAAAAADfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAawAAAAAAawAAAAAAawAAAAAAfAAAAAAAAAAAAAAAfAAAAAAAbwAAAAABbwAAAAAALgAAAAAAbwAAAAADbwAAAAADbwAAAAAAbAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAawAAAAAAawAAAAAAawAAAAAAfAAAAAAAAAAAAAAALgAAAAACbwAAAAABbwAAAAAAfAAAAAAAbwAAAAACbwAAAAACbwAAAAACfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAawAAAAAAawAAAAAAfAAAAAAAAAAAAAAAfAAAAAAAbwAAAAAAbwAAAAABfAAAAAAAbwAAAAABbwAAAAADbwAAAAACfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAfAAAAAAALgAAAAAALgAAAAAAfAAAAAAAbwAAAAAAbwAAAAACbwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAbwAAAAABbwAAAAABfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAADbwAAAAABbwAAAAADfAAAAAAAbwAAAAADbwAAAAADbwAAAAAAbwAAAAADfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAACbwAAAAAALgAAAAACbwAAAAACbwAAAAADbwAAAAADbwAAAAADfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAACbwAAAAAAbwAAAAABfAAAAAAAHgAAAAABLgAAAAAALgAAAAAALgAAAAACfAAAAAAAfAAAAAAAfAAAAAAARgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAbwAAAAADbwAAAAAAfAAAAAAAfAAAAAAAHgAAAAABHgAAAAADHgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALgAAAAACbwAAAAADbwAAAAACbwAAAAADfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALgAAAAADbwAAAAADLgAAAAACbwAAAAADbAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAbwAAAAAAbwAAAAAAbwAAAAADfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAALgAAAAACfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAA + tiles: awAAAAAAbwAAAAACbwAAAAACfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAbAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAbwAAAAADbwAAAAAAfAAAAAAAbwAAAAABbwAAAAACbwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAfAAAAAAAbwAAAAADbwAAAAADTgAAAAAAbwAAAAAAbwAAAAADbwAAAAADfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAawAAAAAAawAAAAAAawAAAAAAfAAAAAAAewAAAAAAfAAAAAAAbwAAAAABbwAAAAAALgAAAAAAbwAAAAADbwAAAAADbwAAAAAAbAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAawAAAAAAawAAAAAAawAAAAAATgAAAAAAewAAAAAALgAAAAACbwAAAAABbwAAAAAATgAAAAAAbwAAAAACbwAAAAACbwAAAAACfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAawAAAAAAawAAAAAATgAAAAAAAAAAAAAATgAAAAAAbwAAAAAAbwAAAAABTgAAAAAAbwAAAAABbwAAAAADbwAAAAACfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAfAAAAAAALgAAAAAALgAAAAAAfAAAAAAAbwAAAAAAbwAAAAACbwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAbwAAAAABbwAAAAABfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAADbwAAAAABbwAAAAADTgAAAAAAbwAAAAADbwAAAAADbwAAAAAAbwAAAAADfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAACbwAAAAAALgAAAAACbwAAAAACbwAAAAADbwAAAAADbwAAAAADfAAAAAAAfAAAAAAAfAAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAABfAAAAAAAHgAAAAABLgAAAAAALgAAAAAALgAAAAACfAAAAAAAfAAAAAAAfAAAAAAARgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAbwAAAAADbwAAAAAAfAAAAAAAfAAAAAAAHgAAAAABHgAAAAADHgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALgAAAAACbwAAAAADbwAAAAACbwAAAAADfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALgAAAAADbwAAAAADLgAAAAACbwAAAAADbAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAAbwAAAAAAbwAAAAAAbwAAAAADfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAATgAAAAAATgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAALgAAAAACfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAA version: 6 2,-3: ind: 2,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAfAAAAAAABAAAAAAABAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAbAAAAAAAfAAAAAAABAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAfAAAAAAAfAAAAAAABAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAbAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAFAAAAAACFAAAAAABeQAAAAADeQAAAAAAfAAAAAAAfAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAbAAAAAAAfAAAAAAAeQAAAAACeQAAAAADeQAAAAACFAAAAAAGfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAATgAAAAAATgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAfAAAAAAABAAAAAAABAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAbAAAAAAAfAAAAAAABAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAfAAAAAAAfAAAAAAABAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAbAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAATgAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAFAAAAAACFAAAAAABeQAAAAADeQAAAAAAfAAAAAAAfAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAbAAAAAAAfAAAAAAAeQAAAAACeQAAAAADeQAAAAACFAAAAAAGfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAA version: 6 2,1: ind: 2,1 - tiles: HgAAAAABHgAAAAADHgAAAAABbAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAawAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAACXgAAAAABXgAAAAADfAAAAAAAfAAAAAAAbAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAXgAAAAABXgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAACHgAAAAADHgAAAAACfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: HgAAAAABHgAAAAADHgAAAAABbAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAawAAAAAATgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAACXgAAAAABXgAAAAADfAAAAAAAfAAAAAAAbAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAXgAAAAABXgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAATgAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAACHgAAAAADHgAAAAACfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAATgAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAATgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 3,0: ind: 3,0 - tiles: fAAAAAAALgAAAAACLgAAAAACfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAeQAAAAABeQAAAAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAawAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAawAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAfAAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAAAAAAAAAfAAAAAAAAAAAAAAALgAAAAAALgAAAAABLgAAAAADLgAAAAACAAAAAAAA + tiles: TgAAAAAALgAAAAACLgAAAAACTgAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAeQAAAAABeQAAAAABfAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAawAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAawAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAfAAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAAAAAAAAAfAAAAAAAAAAAAAAALgAAAAAALgAAAAABLgAAAAADLgAAAAACAAAAAAAA version: 6 3,-1: ind: 3,-1 - tiles: fAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAACeQAAAAABHgAAAAADfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAACeQAAAAADHgAAAAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAABeQAAAAABHgAAAAADfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAADeQAAAAADHgAAAAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAawAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAACHgAAAAABHgAAAAAAHgAAAAAAHgAAAAAAfAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAADTQAAAAADTQAAAAABTQAAAAAAHgAAAAADfAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAACHgAAAAACHgAAAAADHgAAAAABHgAAAAACfAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAADTQAAAAADTQAAAAABTQAAAAAAHgAAAAADfAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAADHgAAAAABHgAAAAACHgAAAAABHgAAAAAAfAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAHgAAAAACHgAAAAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAawAAAAAALgAAAAADLgAAAAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: IwAAAAAAawAAAAAAfAAAAAAATgAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAfAAAAAAABQAAAAAATgAAAAAABQAAAAAAfAAAAAAAfAAAAAAABQAAAAAAfAAAAAAAfAAAAAAAIwAAAAAATgAAAAAAfAAAAAAAawAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAawAAAAAABgAAAAAAawAAAAAAfAAAAAAAfAAAAAAATgAAAAAAEgAAAAAAEgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAfAAAAAAABQAAAAAATgAAAAAABQAAAAAAfAAAAAAAfAAAAAAABQAAAAAAfAAAAAAAfAAAAAAAeQAAAAACeQAAAAABHgAAAAADfAAAAAAAewAAAAAAewAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAATQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAABQAAAAAABQAAAAAAeQAAAAACeQAAAAADHgAAAAABTgAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAfAAAAAAAfAAAAAAABwAAAAAABwAAAAAABgAAAAAAfAAAAAAABQAAAAAABQAAAAAAeQAAAAABeQAAAAABHgAAAAADTgAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAABgAAAAAABgAAAAAABgAAAAAAfAAAAAAABQAAAAAABgAAAAAAeQAAAAADeQAAAAADHgAAAAABTgAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAfAAAAAAAfAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAABwAAAAAATgAAAAAAawAAAAAATgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAACAAAAAAACAAAAAAACAAAAAAAfAAAAAAAHgAAAAACHgAAAAABHgAAAAAAHgAAAAAAHgAAAAAAfAAAAAAAewAAAAAAAAAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAACAAAAAAACAAAAAAACAAAAAAAfAAAAAAAHgAAAAADTQAAAAADTQAAAAABTQAAAAAAHgAAAAADTgAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAHgAAAAACHgAAAAACHgAAAAADHgAAAAABHgAAAAACTgAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAHgAAAAADTQAAAAADTQAAAAABTQAAAAAAHgAAAAADTgAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOQAAAAAAAAAAAAAAAAAAAAAAHgAAAAADHgAAAAABHgAAAAACHgAAAAABHgAAAAAAfAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAOQAAAAAAewAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAOQAAAAAAewAAAAAAewAAAAAAfAAAAAAAHgAAAAACHgAAAAABfAAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAawAAAAAALgAAAAADLgAAAAABTgAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -4,-2: ind: -4,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAfAAAAAAAXgAAAAAAXgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAXAAAAAAAfAAAAAAAfAAAAAAARgAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAfAAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAfAAAAAAAQQAAAAAAfAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAfAAAAAAARgAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAfAAAAAAAfAAAAAAAeQAAAAAAeQAAAAADeQAAAAAAeQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAfAAAAAAAeQAAAAAAeQAAAAACeQAAAAACeQAAAAADeQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAfAAAAAAAeQAAAAABeQAAAAACeQAAAAACeQAAAAAAeQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAfAAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAfAAAAAAAfAAAAAAAawAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAXAAAAAABXAAAAAABXAAAAAABXAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARgAAAAAAOQAAAAAAOQAAAAAAawAAAAAAXAAAAAADLgAAAAABXAAAAAACXAAAAAADbAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAfAAAAAAAXgAAAAAAXgAAAAAAfAAAAAAAfAAAAAAATgAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAXAAAAAAAfAAAAAAAfAAAAAAARgAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAATgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAfAAAAAAAQQAAAAAAfAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAfAAAAAAARgAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAfAAAAAAAfAAAAAAATgAAAAAATgAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAfAAAAAAAfAAAAAAAeQAAAAAAeQAAAAADeQAAAAAAeQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAATgAAAAAAeQAAAAAAeQAAAAACeQAAAAACeQAAAAADeQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAATgAAAAAAeQAAAAABeQAAAAACeQAAAAACeQAAAAAAeQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAATgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAfAAAAAAATgAAAAAAawAAAAAATgAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAXAAAAAABXAAAAAABXAAAAAABXAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARgAAAAAAOQAAAAAAOQAAAAAAawAAAAAAXAAAAAADLgAAAAABXAAAAAACXAAAAAADbAAAAAAA version: 6 0,2: ind: 0,2 - tiles: AAAAAAAAfAAAAAAAfAAAAAAATgAAAAAAfAAAAAAAawAAAAAAfAAAAAAAawAAAAAATgAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAewAAAAAAfAAAAAAATgAAAAAAXAAAAAACTQAAAAAAXAAAAAADTQAAAAACTgAAAAAAfAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAfAAAAAAATgAAAAAAfAAAAAAATQAAAAABXAAAAAACTQAAAAAATgAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAATgAAAAAARgAAAAAAfAAAAAAARgAAAAAATgAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAfAAAAAAAfAAAAAAATgAAAAAAfAAAAAAAawAAAAAATgAAAAAAawAAAAAATgAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAewAAAAAAfAAAAAAATgAAAAAAXAAAAAACTQAAAAAAXAAAAAADTQAAAAACTgAAAAAAfAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAfAAAAAAATgAAAAAAfAAAAAAATQAAAAABXAAAAAACTQAAAAAATgAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAATgAAAAAARgAAAAAATgAAAAAARgAAAAAATgAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -4,0: ind: -4,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAbAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAbAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAANQAAAAADNQAAAAABNQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAANQAAAAACNQAAAAABNQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAANQAAAAACNQAAAAADNQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAbAAAAAAAfAAAAAAAfAAAAAAATgAAAAAATgAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAALgAAAAAALgAAAAAAXAAAAAABfAAAAAAAXAAAAAAAXAAAAAACXAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARgAAAAAALgAAAAAAXAAAAAACXAAAAAAAawAAAAAAXAAAAAAATQAAAAABTQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAALgAAAAAALgAAAAAAXAAAAAABfAAAAAAAXAAAAAABXAAAAAACXAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAbAAAAAAAfAAAAAAAfAAAAAAATgAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAATgAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAANAAAAAACNAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAANAAAAAAANAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAbAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAbAAAAAAAfAAAAAAAfAAAAAAANAAAAAADNAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAbQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAANAAAAAADNAAAAAAB + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAbAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAATgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAbAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAANQAAAAADNQAAAAABNQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAANQAAAAACNQAAAAABNQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAANQAAAAACNQAAAAADNQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAbAAAAAAAfAAAAAAAfAAAAAAATgAAAAAATgAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAALgAAAAAALgAAAAAAXAAAAAABfAAAAAAAXAAAAAAAXAAAAAACXAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARgAAAAAALgAAAAAAXAAAAAACXAAAAAAAawAAAAAAXAAAAAAATQAAAAABTQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAALgAAAAAALgAAAAAAXAAAAAABTgAAAAAAXAAAAAABXAAAAAACXAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAbAAAAAAAfAAAAAAAfAAAAAAATgAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAATgAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAANAAAAAACNAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAANAAAAAAANAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAbAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAbAAAAAAAfAAAAAAAfAAAAAAANAAAAAADNAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAATgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAbQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAANAAAAAADNAAAAAAB version: 6 -4,1: ind: -4,1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAbAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAANAAAAAADNAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAANAAAAAADNAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAbAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAfAAAAAAAAQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAfAAAAAAAAQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAAQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAbAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAANAAAAAADNAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAfAAAAAAATgAAAAAATgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAANAAAAAADNAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAATgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAbAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAfAAAAAAAAQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAATgAAAAAAAQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAAQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 3,1: ind: 3,1 @@ -231,15 +236,15 @@ entities: version: 6 3,-2: ind: 3,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAOQAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAOQAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAEgAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAABQAAAAAAEgAAAAAABQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAANwAAAAAANwAAAAAANwAAAAAAfAAAAAAABgAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAABgAAAAAABgAAAAAABgAAAAAAfAAAAAAABQAAAAAABgAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAOQAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAfAAAAAAAfAAAAAAABwAAAAAABwAAAAAABgAAAAAAfAAAAAAABQAAAAAABQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAATQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAABQAAAAAABQAAAAAA version: 6 -3,-3: ind: -3,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAAAAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAbAAAAAAAfAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAAAAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAfAAAAAAAfAAAAAAATgAAAAAATgAAAAAATgAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAbAAAAAAAfAAAAAAA version: 6 -1,2: ind: -1,2 - tiles: RgAAAAAAXAAAAAAALgAAAAAAXAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAXAAAAAAAXAAAAAAALgAAAAAARgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: RgAAAAAAXAAAAAAALgAAAAAAXAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAXAAAAAAAXAAAAAAALgAAAAAARgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAATgAAAAAATgAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 1,2: ind: 1,2 @@ -251,13 +256,21 @@ entities: version: 6 -4,-3: ind: -4,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAXgAAAAAAXgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAATgAAAAAATgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAAXgAAAAAAXgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAA + version: 6 + 4,-1: + ind: 4,-1 + tiles: CAAAAAAABgAAAAAACQAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAABgAAAAAACQAAAAAAfAAAAAAAfAAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAABgAAAAAACQAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAABgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 4,-2: + ind: 4,-2 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAABgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 - type: Broadphase - type: Physics bodyStatus: InAir - angularDamping: 10000 - linearDamping: 10000 + angularDamping: 0.05 + linearDamping: 0.05 fixedRotation: False bodyType: Dynamic - type: Fixtures @@ -265,8 +278,6 @@ entities: - type: OccluderTree - type: SpreaderGrid - type: Shuttle - angularDamping: 10000 - linearDamping: 10000 - type: GridPathfinding - type: Gravity gravityShakeSound: !type:SoundPathSpecifier @@ -321,6 +332,7 @@ entities: 1281: 39,7 1282: 39,6 1283: 39,5 + 1297: 31,-3 - node: cleanable: True color: '#FFFFFFFF' @@ -362,11 +374,12 @@ entities: 743: 28,-3 744: 29,-3 745: 30,-3 - 905: 31,-2 956: 12,29 957: 13,29 958: 14,29 1253: 41,7 + 1293: 31,-2 + 1294: 31,-1 - node: cleanable: True color: '#FFFFFFFF' @@ -2007,8 +2020,8 @@ entities: color: '#FFFFFFFF' id: WarnCornerNW decals: - 906: 31,-2 1179: 25,5 + 1299: 31,-1 - node: color: '#FFFFFFFF' id: WarnCornerSE @@ -2032,6 +2045,7 @@ entities: decals: 57: -47,11 737: 25,2 + 1298: 31,-3 - node: color: '#FFFFFFFF' id: WarnCornerSmallSW @@ -2091,6 +2105,11 @@ entities: 436: 2,14 756: 39,0 757: 40,0 + 1284: 58,-10 + 1285: 59,-10 + 1286: 60,-10 + 1287: 61,-10 + 1288: 62,-10 - node: color: '#FFFFFFFF' id: WarnLineS @@ -2110,6 +2129,8 @@ entities: 1087: -21,-25 1088: -21,-24 1089: -21,-23 + 1289: 63,-10 + 1295: 31,-2 - node: color: '#FFFFFFFF' id: WarnLineW @@ -2689,8 +2710,7 @@ entities: 0: 57344 1: 245 4,4: - 0: 13071 - 1: 34816 + 0: 48015 5,1: 0: 4095 5,2: @@ -2700,8 +2720,8 @@ entities: 5,3: 0: 65535 5,4: - 0: 43663 - 1: 4352 + 0: 15 + 1: 60928 6,1: 0: 2047 6,2: @@ -2710,7 +2730,8 @@ entities: 6,3: 0: 65535 6,4: - 0: 56607 + 0: 52239 + 1: 4352 7,1: 0: 65535 7,2: @@ -2718,7 +2739,7 @@ entities: 7,3: 0: 65535 7,4: - 0: 47887 + 0: 30479 8,0: 0: 28399 8,1: @@ -2796,8 +2817,7 @@ entities: 1: 2463 0: 32768 4,5: - 0: 61491 - 1: 136 + 0: 61627 4,6: 0: 61695 4,7: @@ -2885,8 +2905,8 @@ entities: 8,-9: 0: 20208 5,5: - 1: 49169 - 0: 11946 + 1: 52431 + 0: 8752 5,6: 0: 61986 1: 3148 @@ -2896,8 +2916,8 @@ entities: 4,8: 1: 8 6,5: - 0: 3869 - 1: 61440 + 1: 61713 + 0: 204 6,6: 1: 3844 0: 61440 @@ -2905,8 +2925,8 @@ entities: 0: 255 1: 3840 7,5: - 0: 779 - 1: 15360 + 0: 119 + 1: 12288 7,6: 1: 18178 0: 12288 @@ -3131,7 +3151,7 @@ entities: 9,-5: 0: 36592 10,-4: - 0: 64799 + 0: 62751 10,-3: 0: 32541 10,-2: @@ -3139,7 +3159,7 @@ entities: 10,-5: 0: 45942 11,-4: - 0: 58607 + 0: 58623 11,-3: 0: 32750 11,-2: @@ -3148,8 +3168,7 @@ entities: 0: 61440 1: 16 12,-4: - 0: 28672 - 1: 2274 + 0: 28887 12,-3: 0: 10103 12,-2: @@ -3177,8 +3196,11 @@ entities: 0: 13072 11,-7: 0: 19 + 1: 128 11,-9: 1: 28672 + 12,-7: + 1: 35056 9,-11: 1: 3396 9,-10: @@ -3201,9 +3223,8 @@ entities: 1: 1 12,0: 0: 102 - 1: 2048 13,0: - 1: 3976 + 1: 1860 13,1: 1: 240 0: 65280 @@ -3214,7 +3235,7 @@ entities: 13,4: 0: 61695 13,-1: - 1: 35012 + 1: 18244 0: 1 14,1: 1: 33008 @@ -3235,27 +3256,44 @@ entities: 16,1: 0: 3840 1: 32908 - 12,-5: - 1: 8192 13,-4: - 1: 36608 + 0: 2039 + 1: 28672 + 13,-3: + 1: 18184 13,-2: 0: 4369 1: 19524 - 13,-3: - 1: 51336 - 14,-3: - 1: 36608 + 13,-5: + 1: 30720 + 14,-4: + 0: 52733 14,-2: - 1: 3840 + 1: 1793 + 14,-3: + 0: 3276 14,-1: - 1: 3968 + 1: 238 + 14,-5: + 0: 52428 + 15,-4: + 0: 62050 15,-3: - 1: 4096 + 0: 32767 15,-2: - 1: 4369 + 0: 8199 15,-1: - 1: 17 + 1: 221 + 0: 34 + 15,-5: + 0: 65535 + 16,-4: + 0: 14199 + 16,-3: + 0: 273 + 1: 2048 + 16,-1: + 1: 255 -15,-8: 1: 32776 -14,-8: @@ -3338,6 +3376,28 @@ entities: 1: 769 19,2: 1: 4369 + 12,-6: + 1: 34952 + 13,-6: + 1: 15 + 12,-5: + 1: 2184 + 13,-7: + 1: 3264 + 14,-7: + 1: 4080 + 14,-6: + 1: 263 + 15,-7: + 1: 3536 + 0: 8736 + 15,-6: + 0: 29184 + 16,-7: + 1: 4080 + 16,-5: + 0: 12561 + 1: 8 -11,-9: 1: 1928 -10,-10: @@ -3349,6 +3409,40 @@ entities: 1: 4096 -14,-10: 1: 32768 + 16,-2: + 1: 4 + 17,-3: + 1: 36745 + 17,-1: + 1: 255 + 17,-4: + 0: 224 + 1: 34824 + 17,-5: + 1: 35215 + 18,-4: + 1: 4353 + 0: 16 + 18,-3: + 1: 4369 + 17,-2: + 1: 34952 + 18,-2: + 1: 4369 + 18,-1: + 1: 17 + 18,-5: + 1: 4369 + 16,-6: + 1: 1024 + 17,-7: + 1: 36848 + 18,-7: + 1: 4368 + 17,-6: + 1: 34952 + 18,-6: + 1: 4369 uniqueMixes: - volume: 2500 temperature: 293.15 @@ -3462,6 +3556,15 @@ entities: - type: DeviceList devices: - 2046 + - uid: 2370 + components: + - type: Transform + pos: 43.5,-14.5 + parent: 2 + - type: DeviceList + devices: + - 10834 + - 11096 - uid: 2603 components: - type: Transform @@ -3499,6 +3602,25 @@ entities: - 3714 - 7534 - 7509 + - uid: 9578 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,-12.5 + parent: 2 + - type: DeviceList + devices: + - 9792 + - 9793 + - 9805 + - 7196 + - 7126 + - 7108 + - 9806 + - 9807 + - 9808 + - 9804 + - 7134 - uid: 9714 components: - type: Transform @@ -3641,25 +3763,6 @@ entities: - 9790 - 7141 - 3782 - - uid: 9811 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 32.5,-11.5 - parent: 2 - - type: DeviceList - devices: - - 9792 - - 9793 - - 9805 - - 7196 - - 7126 - - 7108 - - 9806 - - 9807 - - 9808 - - 9804 - - 7134 - uid: 9812 components: - type: Transform @@ -3757,8 +3860,6 @@ entities: devices: - 9832 - 7385 - - 9843 - - 9844 - 7472 - 9839 - 9838 @@ -4179,7 +4280,7 @@ entities: - 9960 - 9414 - 8144 - - 9415 + - 11096 - uid: 10119 components: - type: Transform @@ -4282,6 +4383,17 @@ entities: - 6265 - 6247 - 11675 + - uid: 12429 + components: + - type: Transform + pos: 63.5,-15.5 + parent: 2 + - type: DeviceList + devices: + - 12400 + - 12390 + - 12391 + - 12399 - proto: AirCanister entities: - uid: 2502 @@ -4519,6 +4631,28 @@ entities: - type: Transform pos: 47.5,-5.5 parent: 2 + - uid: 12133 + components: + - type: Transform + pos: 55.5,-14.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 12426: + - DoorStatus: DoorBolt + - uid: 12427 + components: + - type: Transform + pos: 51.5,-14.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 12425: + - DoorStatus: DoorBolt - proto: AirlockDetectiveLocked entities: - uid: 9072 @@ -4763,49 +4897,27 @@ entities: - DoorStatus: DoorBolt - proto: AirlockExternalGlassEngineeringLocked entities: - - uid: 2001 - components: - - type: Transform - pos: 24.5,21.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 2067: - - DoorStatus: DoorBolt - 2066: - - DoorStatus: DoorBolt - - uid: 2066 - components: - - type: Transform - pos: 24.5,17.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 2077: - - DoorStatus: DoorBolt - 2001: - - DoorStatus: DoorBolt - - uid: 2067 + - uid: 2063 components: - type: Transform - pos: 23.5,17.5 + pos: 19.5,19.5 parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 - type: DeviceLinkSource linkedPorts: - 2077: + 2072: - DoorStatus: DoorBolt - 2001: - - DoorStatus: DoorBolt - - uid: 2077 + - uid: 2072 components: - type: Transform - pos: 23.5,21.5 + pos: 19.5,17.5 parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 - type: DeviceLinkSource linkedPorts: - 2067: - - DoorStatus: DoorBolt - 2066: + 2063: - DoorStatus: DoorBolt - uid: 9178 components: @@ -4873,6 +4985,19 @@ entities: linkedPorts: 11851: - DoorStatus: DoorBolt +- proto: AirlockExternalGlassLocked + entities: + - uid: 12426 + components: + - type: Transform + pos: 57.5,-14.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 12133: + - DoorStatus: DoorBolt - proto: AirlockExternalGlassShuttleArrivals entities: - uid: 125 @@ -4959,6 +5084,19 @@ entities: - type: Transform pos: -9.5,-37.5 parent: 2 +- proto: AirlockExternalLocked + entities: + - uid: 12425 + components: + - type: Transform + pos: 49.5,-15.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 12427: + - DoorStatus: DoorBolt - proto: AirlockFreezerKitchenHydroLocked entities: - uid: 701 @@ -6710,6 +6848,22 @@ entities: - type: Transform pos: -52.5,-29.5 parent: 2 +- proto: APCHighCapacity + entities: + - uid: 12154 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 63.5,-14.5 + parent: 2 +- proto: AsimovCircuitBoard + entities: + - uid: 12298 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 62.672276,-20.524471 + parent: 2 - proto: AtmosDeviceFanDirectional entities: - uid: 520 @@ -7074,10 +7228,11 @@ entities: parent: 2 - proto: BaseGasCondenser entities: - - uid: 9600 + - uid: 9302 components: - type: Transform - pos: 20.5,16.5 + rot: 1.5707963267948966 rad + pos: 19.5,-19.5 parent: 2 - proto: Basketball entities: @@ -7721,25 +7876,20 @@ entities: - type: Transform pos: -23.5,-7.5 parent: 2 - - uid: 2025 - components: - - type: Transform - pos: 27.5,21.5 - parent: 2 - - uid: 2026 + - uid: 1978 components: - type: Transform - pos: 28.5,21.5 + pos: 28.5,22.5 parent: 2 - - uid: 8034 + - uid: 2086 components: - type: Transform - pos: 29.5,21.5 + pos: 29.5,22.5 parent: 2 - - uid: 10156 + - uid: 9395 components: - type: Transform - pos: 26.5,21.5 + pos: 27.5,22.5 parent: 2 - proto: BlockGameArcade entities: @@ -7856,6 +8006,16 @@ entities: - type: Transform pos: 17.5,-1.5 parent: 2 + - uid: 12301 + components: + - type: Transform + pos: 66.5,-13.5 + parent: 2 + - uid: 12305 + components: + - type: Transform + pos: 66.5,-15.5 + parent: 2 - proto: BoxBeanbag entities: - uid: 3938 @@ -7903,6 +8063,13 @@ entities: - type: Transform pos: 41.61312,15.694187 parent: 2 +- proto: BoxEnvelope + entities: + - uid: 12454 + components: + - type: Transform + pos: 0.12165648,19.584343 + parent: 2 - proto: BoxFlashbang entities: - uid: 3345 @@ -8167,6 +8334,21 @@ entities: - type: Transform pos: -54.5,-8.5 parent: 2 + - uid: 958 + components: + - type: Transform + pos: 28.5,23.5 + parent: 2 + - uid: 963 + components: + - type: Transform + pos: 29.5,19.5 + parent: 2 + - uid: 966 + components: + - type: Transform + pos: 29.5,20.5 + parent: 2 - uid: 1000 components: - type: Transform @@ -8197,10 +8379,50 @@ entities: - type: Transform pos: 40.5,-25.5 parent: 2 - - uid: 2063 + - uid: 1867 components: - type: Transform - pos: 31.5,18.5 + pos: 28.5,20.5 + parent: 2 + - uid: 1933 + components: + - type: Transform + pos: 24.5,23.5 + parent: 2 + - uid: 1952 + components: + - type: Transform + pos: 26.5,16.5 + parent: 2 + - uid: 1980 + components: + - type: Transform + pos: 19.5,16.5 + parent: 2 + - uid: 1981 + components: + - type: Transform + pos: 29.5,23.5 + parent: 2 + - uid: 1982 + components: + - type: Transform + pos: 27.5,23.5 + parent: 2 + - uid: 1983 + components: + - type: Transform + pos: 26.5,23.5 + parent: 2 + - uid: 1998 + components: + - type: Transform + pos: 25.5,23.5 + parent: 2 + - uid: 2025 + components: + - type: Transform + pos: 19.5,18.5 parent: 2 - uid: 2068 components: @@ -8217,15 +8439,15 @@ entities: - type: Transform pos: 21.5,22.5 parent: 2 - - uid: 2075 + - uid: 2280 components: - type: Transform - pos: 25.5,22.5 + pos: 19.5,17.5 parent: 2 - - uid: 2087 + - uid: 2804 components: - type: Transform - pos: 29.5,22.5 + pos: 62.5,-14.5 parent: 2 - uid: 3796 components: @@ -8975,22 +9197,22 @@ entities: - uid: 5373 components: - type: Transform - pos: 24.5,16.5 + pos: 26.5,20.5 parent: 2 - uid: 5374 components: - type: Transform - pos: 24.5,17.5 + pos: 27.5,20.5 parent: 2 - uid: 5375 components: - type: Transform - pos: 24.5,18.5 + pos: 19.5,20.5 parent: 2 - uid: 5376 components: - type: Transform - pos: 24.5,19.5 + pos: 19.5,21.5 parent: 2 - uid: 5377 components: @@ -9012,20 +9234,25 @@ entities: - type: Transform pos: 40.5,-26.5 parent: 2 + - uid: 5385 + components: + - type: Transform + pos: 25.5,20.5 + parent: 2 - uid: 5386 components: - type: Transform - pos: 26.5,22.5 + pos: 20.5,21.5 parent: 2 - uid: 5387 components: - type: Transform - pos: 27.5,22.5 + pos: 21.5,21.5 parent: 2 - uid: 5388 components: - type: Transform - pos: 28.5,22.5 + pos: 26.5,17.5 parent: 2 - uid: 5389 components: @@ -9080,12 +9307,12 @@ entities: - uid: 5399 components: - type: Transform - pos: 20.5,16.5 + pos: 26.5,18.5 parent: 2 - uid: 5400 components: - type: Transform - pos: 20.5,17.5 + pos: 26.5,19.5 parent: 2 - uid: 5401 components: @@ -15652,6 +15879,16 @@ entities: - type: Transform pos: 35.5,-33.5 parent: 2 + - uid: 9386 + components: + - type: Transform + pos: 19.5,19.5 + parent: 2 + - uid: 9388 + components: + - type: Transform + pos: 19.5,15.5 + parent: 2 - uid: 9427 components: - type: Transform @@ -15772,11 +16009,6 @@ entities: - type: Transform pos: 43.5,-12.5 parent: 2 - - uid: 10198 - components: - - type: Transform - pos: 43.5,-13.5 - parent: 2 - uid: 10788 components: - type: Transform @@ -16502,6 +16734,331 @@ entities: - type: Transform pos: 34.5,-38.5 parent: 2 + - uid: 11981 + components: + - type: Transform + pos: 63.5,-14.5 + parent: 2 + - uid: 12156 + components: + - type: Transform + pos: 61.5,-19.5 + parent: 2 + - uid: 12157 + components: + - type: Transform + pos: 62.5,-11.5 + parent: 2 + - uid: 12158 + components: + - type: Transform + pos: 62.5,-10.5 + parent: 2 + - uid: 12159 + components: + - type: Transform + pos: 61.5,-10.5 + parent: 2 + - uid: 12160 + components: + - type: Transform + pos: 60.5,-10.5 + parent: 2 + - uid: 12161 + components: + - type: Transform + pos: 59.5,-10.5 + parent: 2 + - uid: 12162 + components: + - type: Transform + pos: 60.5,-11.5 + parent: 2 + - uid: 12163 + components: + - type: Transform + pos: 59.5,-11.5 + parent: 2 + - uid: 12164 + components: + - type: Transform + pos: 63.5,-11.5 + parent: 2 + - uid: 12165 + components: + - type: Transform + pos: 63.5,-10.5 + parent: 2 + - uid: 12166 + components: + - type: Transform + pos: 64.5,-11.5 + parent: 2 + - uid: 12167 + components: + - type: Transform + pos: 64.5,-12.5 + parent: 2 + - uid: 12168 + components: + - type: Transform + pos: 64.5,-13.5 + parent: 2 + - uid: 12169 + components: + - type: Transform + pos: 64.5,-15.5 + parent: 2 + - uid: 12170 + components: + - type: Transform + pos: 64.5,-16.5 + parent: 2 + - uid: 12171 + components: + - type: Transform + pos: 64.5,-17.5 + parent: 2 + - uid: 12172 + components: + - type: Transform + pos: 64.5,-14.5 + parent: 2 + - uid: 12173 + components: + - type: Transform + pos: 63.5,-17.5 + parent: 2 + - uid: 12174 + components: + - type: Transform + pos: 63.5,-18.5 + parent: 2 + - uid: 12175 + components: + - type: Transform + pos: 62.5,-18.5 + parent: 2 + - uid: 12176 + components: + - type: Transform + pos: 62.5,-17.5 + parent: 2 + - uid: 12177 + components: + - type: Transform + pos: 61.5,-18.5 + parent: 2 + - uid: 12178 + components: + - type: Transform + pos: 60.5,-18.5 + parent: 2 + - uid: 12179 + components: + - type: Transform + pos: 60.5,-17.5 + parent: 2 + - uid: 12180 + components: + - type: Transform + pos: 59.5,-17.5 + parent: 2 + - uid: 12181 + components: + - type: Transform + pos: 59.5,-18.5 + parent: 2 + - uid: 12182 + components: + - type: Transform + pos: 59.5,-16.5 + parent: 2 + - uid: 12183 + components: + - type: Transform + pos: 59.5,-15.5 + parent: 2 + - uid: 12184 + components: + - type: Transform + pos: 59.5,-14.5 + parent: 2 + - uid: 12185 + components: + - type: Transform + pos: 59.5,-13.5 + parent: 2 + - uid: 12186 + components: + - type: Transform + pos: 59.5,-12.5 + parent: 2 + - uid: 12187 + components: + - type: Transform + pos: 58.5,-14.5 + parent: 2 + - uid: 12188 + components: + - type: Transform + pos: 57.5,-14.5 + parent: 2 + - uid: 12189 + components: + - type: Transform + pos: 56.5,-14.5 + parent: 2 + - uid: 12190 + components: + - type: Transform + pos: 56.5,-15.5 + parent: 2 + - uid: 12191 + components: + - type: Transform + pos: 56.5,-13.5 + parent: 2 + - uid: 12192 + components: + - type: Transform + pos: 65.5,-14.5 + parent: 2 + - uid: 12193 + components: + - type: Transform + pos: 66.5,-14.5 + parent: 2 + - uid: 12194 + components: + - type: Transform + pos: 61.5,-13.5 + parent: 2 + - uid: 12195 + components: + - type: Transform + pos: 61.5,-14.5 + parent: 2 + - uid: 12196 + components: + - type: Transform + pos: 61.5,-15.5 + parent: 2 + - uid: 12197 + components: + - type: Transform + pos: 61.5,-16.5 + parent: 2 + - uid: 12198 + components: + - type: Transform + pos: 61.5,-17.5 + parent: 2 + - uid: 12199 + components: + - type: Transform + pos: 61.5,-12.5 + parent: 2 + - uid: 12200 + components: + - type: Transform + pos: 61.5,-11.5 + parent: 2 + - uid: 12201 + components: + - type: Transform + pos: 61.5,-9.5 + parent: 2 + - uid: 12394 + components: + - type: Transform + pos: 47.5,-15.5 + parent: 2 + - uid: 12395 + components: + - type: Transform + pos: 48.5,-15.5 + parent: 2 + - uid: 12396 + components: + - type: Transform + pos: 49.5,-15.5 + parent: 2 + - uid: 12397 + components: + - type: Transform + pos: 50.5,-15.5 + parent: 2 + - uid: 12398 + components: + - type: Transform + pos: 50.5,-14.5 + parent: 2 + - uid: 12441 + components: + - type: Transform + pos: 63.5,-19.5 + parent: 2 + - uid: 12442 + components: + - type: Transform + pos: 64.5,-19.5 + parent: 2 + - uid: 12443 + components: + - type: Transform + pos: 65.5,-19.5 + parent: 2 + - uid: 12444 + components: + - type: Transform + pos: 61.5,-20.5 + parent: 2 + - uid: 12445 + components: + - type: Transform + pos: 61.5,-21.5 + parent: 2 + - uid: 12446 + components: + - type: Transform + pos: 61.5,-22.5 + parent: 2 + - uid: 12447 + components: + - type: Transform + pos: 61.5,-7.5 + parent: 2 + - uid: 12448 + components: + - type: Transform + pos: 61.5,-8.5 + parent: 2 + - uid: 12449 + components: + - type: Transform + pos: 61.5,-6.5 + parent: 2 + - uid: 12450 + components: + - type: Transform + pos: 63.5,-9.5 + parent: 2 + - uid: 12451 + components: + - type: Transform + pos: 64.5,-9.5 + parent: 2 + - uid: 12452 + components: + - type: Transform + pos: 65.5,-9.5 + parent: 2 + - uid: 12453 + components: + - type: Transform + pos: 67.5,-14.5 + parent: 2 - proto: CableApcStack entities: - uid: 2955 @@ -19476,6 +20033,196 @@ entities: - type: Transform pos: -58.5,17.5 parent: 2 + - uid: 11985 + components: + - type: Transform + pos: 59.5,-14.5 + parent: 2 + - uid: 12032 + components: + - type: Transform + pos: 46.5,-9.5 + parent: 2 + - uid: 12033 + components: + - type: Transform + pos: 46.5,-10.5 + parent: 2 + - uid: 12034 + components: + - type: Transform + pos: 46.5,-11.5 + parent: 2 + - uid: 12035 + components: + - type: Transform + pos: 46.5,-12.5 + parent: 2 + - uid: 12036 + components: + - type: Transform + pos: 46.5,-13.5 + parent: 2 + - uid: 12037 + components: + - type: Transform + pos: 46.5,-14.5 + parent: 2 + - uid: 12038 + components: + - type: Transform + pos: 40.5,-15.5 + parent: 2 + - uid: 12039 + components: + - type: Transform + pos: 41.5,-15.5 + parent: 2 + - uid: 12040 + components: + - type: Transform + pos: 42.5,-15.5 + parent: 2 + - uid: 12041 + components: + - type: Transform + pos: 43.5,-15.5 + parent: 2 + - uid: 12042 + components: + - type: Transform + pos: 44.5,-15.5 + parent: 2 + - uid: 12043 + components: + - type: Transform + pos: 45.5,-15.5 + parent: 2 + - uid: 12044 + components: + - type: Transform + pos: 46.5,-15.5 + parent: 2 + - uid: 12045 + components: + - type: Transform + pos: 47.5,-14.5 + parent: 2 + - uid: 12046 + components: + - type: Transform + pos: 48.5,-14.5 + parent: 2 + - uid: 12047 + components: + - type: Transform + pos: 49.5,-14.5 + parent: 2 + - uid: 12048 + components: + - type: Transform + pos: 50.5,-14.5 + parent: 2 + - uid: 12049 + components: + - type: Transform + pos: 51.5,-14.5 + parent: 2 + - uid: 12050 + components: + - type: Transform + pos: 52.5,-14.5 + parent: 2 + - uid: 12051 + components: + - type: Transform + pos: 53.5,-14.5 + parent: 2 + - uid: 12052 + components: + - type: Transform + pos: 54.5,-14.5 + parent: 2 + - uid: 12053 + components: + - type: Transform + pos: 55.5,-14.5 + parent: 2 + - uid: 12054 + components: + - type: Transform + pos: 56.5,-14.5 + parent: 2 + - uid: 12055 + components: + - type: Transform + pos: 57.5,-14.5 + parent: 2 + - uid: 12056 + components: + - type: Transform + pos: 58.5,-14.5 + parent: 2 + - uid: 12137 + components: + - type: Transform + pos: 59.5,-15.5 + parent: 2 + - uid: 12138 + components: + - type: Transform + pos: 59.5,-16.5 + parent: 2 + - uid: 12144 + components: + - type: Transform + pos: 64.5,-16.5 + parent: 2 + - uid: 12145 + components: + - type: Transform + pos: 64.5,-15.5 + parent: 2 + - uid: 12146 + components: + - type: Transform + pos: 64.5,-14.5 + parent: 2 + - uid: 12147 + components: + - type: Transform + pos: 64.5,-13.5 + parent: 2 + - uid: 12149 + components: + - type: Transform + pos: 64.5,-17.5 + parent: 2 + - uid: 12151 + components: + - type: Transform + pos: 62.5,-17.5 + parent: 2 + - uid: 12152 + components: + - type: Transform + pos: 61.5,-17.5 + parent: 2 + - uid: 12153 + components: + - type: Transform + pos: 63.5,-17.5 + parent: 2 + - uid: 12286 + components: + - type: Transform + pos: 60.5,-17.5 + parent: 2 + - uid: 12290 + components: + - type: Transform + pos: 59.5,-17.5 + parent: 2 - proto: CableHVStack entities: - uid: 3244 @@ -22480,6 +23227,21 @@ entities: - type: Transform pos: -52.5,-29.5 parent: 2 + - uid: 12150 + components: + - type: Transform + pos: 64.5,-13.5 + parent: 2 + - uid: 12311 + components: + - type: Transform + pos: 64.5,-14.5 + parent: 2 + - uid: 12313 + components: + - type: Transform + pos: 63.5,-14.5 + parent: 2 - proto: CableTerminal entities: - uid: 2090 @@ -22508,6 +23270,12 @@ entities: rot: 3.141592653589793 rad pos: -56.5,15.5 parent: 2 + - uid: 12143 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 64.5,-16.5 + parent: 2 - proto: CargoRequestComputerCircuitboard entities: - uid: 9322 @@ -23003,11 +23771,6 @@ entities: - type: Transform pos: 41.5,-2.5 parent: 2 - - uid: 617 - components: - - type: Transform - pos: 23.5,22.5 - parent: 2 - uid: 834 components: - type: Transform @@ -23018,16 +23781,26 @@ entities: - type: Transform pos: 38.5,-18.5 parent: 2 - - uid: 900 + - uid: 919 components: - type: Transform - pos: 24.5,22.5 + pos: 28.5,23.5 parent: 2 - uid: 935 components: - type: Transform pos: 46.5,6.5 parent: 2 + - uid: 956 + components: + - type: Transform + pos: 29.5,23.5 + parent: 2 + - uid: 957 + components: + - type: Transform + pos: 27.5,23.5 + parent: 2 - uid: 961 components: - type: Transform @@ -23098,70 +23871,75 @@ entities: - type: Transform pos: 18.5,27.5 parent: 2 - - uid: 1956 + - uid: 1947 components: - type: Transform - pos: 21.5,25.5 + pos: 19.5,21.5 parent: 2 - - uid: 1991 + - uid: 1950 components: - type: Transform - pos: 21.5,26.5 + pos: 25.5,23.5 parent: 2 - - uid: 1996 + - uid: 1956 components: - type: Transform - pos: 21.5,27.5 + pos: 21.5,25.5 parent: 2 - - uid: 2003 + - uid: 1958 components: - type: Transform - pos: 21.5,24.5 + pos: 23.5,23.5 parent: 2 - - uid: 2007 + - uid: 1959 components: - type: Transform - pos: 21.5,23.5 + pos: 21.5,21.5 parent: 2 - - uid: 2070 + - uid: 1984 components: - type: Transform - pos: 23.5,18.5 + pos: 19.5,20.5 parent: 2 - - uid: 2071 + - uid: 1986 components: - type: Transform - pos: 23.5,19.5 + pos: 22.5,23.5 parent: 2 - - uid: 2072 + - uid: 1987 components: - type: Transform - pos: 23.5,20.5 + pos: 19.5,18.5 parent: 2 - - uid: 2074 + - uid: 1991 components: - type: Transform - pos: 21.5,20.5 + pos: 21.5,26.5 parent: 2 - - uid: 2076 + - uid: 1996 components: - type: Transform - pos: 21.5,18.5 + pos: 21.5,27.5 parent: 2 - - uid: 2084 + - uid: 2003 components: - type: Transform - pos: 26.5,22.5 + pos: 21.5,24.5 parent: 2 - - uid: 2085 + - uid: 2007 components: - type: Transform - pos: 27.5,22.5 + pos: 21.5,23.5 parent: 2 - - uid: 2086 + - uid: 2077 components: - type: Transform - pos: 28.5,22.5 + pos: 24.5,23.5 + parent: 2 + - uid: 2080 + components: + - type: Transform + pos: 20.5,21.5 parent: 2 - uid: 2146 components: @@ -24728,11 +25506,6 @@ entities: - type: Transform pos: 36.5,16.5 parent: 2 - - uid: 5385 - components: - - type: Transform - pos: 25.5,22.5 - parent: 2 - uid: 6172 components: - type: Transform @@ -24910,6 +25683,11 @@ entities: rot: 1.5707963267948966 rad pos: 27.5,28.5 parent: 2 + - uid: 9407 + components: + - type: Transform + pos: 26.5,23.5 + parent: 2 - uid: 9425 components: - type: Transform @@ -24987,36 +25765,11 @@ entities: - type: Transform pos: 20.5,-31.5 parent: 2 - - uid: 9611 - components: - - type: Transform - pos: 22.5,22.5 - parent: 2 - uid: 10124 components: - type: Transform pos: 14.5,-30.5 parent: 2 - - uid: 10134 - components: - - type: Transform - pos: 21.5,21.5 - parent: 2 - - uid: 10199 - components: - - type: Transform - pos: 43.5,-13.5 - parent: 2 - - uid: 10223 - components: - - type: Transform - pos: 21.5,19.5 - parent: 2 - - uid: 10227 - components: - - type: Transform - pos: 29.5,22.5 - parent: 2 - uid: 10642 components: - type: Transform @@ -25347,6 +26100,121 @@ entities: - type: Transform pos: 39.5,-38.5 parent: 2 + - uid: 12331 + components: + - type: Transform + pos: 58.5,-14.5 + parent: 2 + - uid: 12332 + components: + - type: Transform + pos: 59.5,-14.5 + parent: 2 + - uid: 12333 + components: + - type: Transform + pos: 59.5,-15.5 + parent: 2 + - uid: 12334 + components: + - type: Transform + pos: 59.5,-16.5 + parent: 2 + - uid: 12335 + components: + - type: Transform + pos: 60.5,-16.5 + parent: 2 + - uid: 12336 + components: + - type: Transform + pos: 61.5,-16.5 + parent: 2 + - uid: 12337 + components: + - type: Transform + pos: 61.5,-17.5 + parent: 2 + - uid: 12338 + components: + - type: Transform + pos: 61.5,-18.5 + parent: 2 + - uid: 12339 + components: + - type: Transform + pos: 61.5,-19.5 + parent: 2 + - uid: 12340 + components: + - type: Transform + pos: 59.5,-13.5 + parent: 2 + - uid: 12341 + components: + - type: Transform + pos: 59.5,-12.5 + parent: 2 + - uid: 12342 + components: + - type: Transform + pos: 60.5,-12.5 + parent: 2 + - uid: 12343 + components: + - type: Transform + pos: 61.5,-12.5 + parent: 2 + - uid: 12344 + components: + - type: Transform + pos: 61.5,-11.5 + parent: 2 + - uid: 12345 + components: + - type: Transform + pos: 61.5,-10.5 + parent: 2 + - uid: 12392 + components: + - type: Transform + pos: 50.5,-15.5 + parent: 2 + - uid: 12393 + components: + - type: Transform + pos: 50.5,-14.5 + parent: 2 + - uid: 12457 + components: + - type: Transform + pos: 52.5,-12.5 + parent: 2 + - uid: 12458 + components: + - type: Transform + pos: 53.5,-12.5 + parent: 2 + - uid: 12459 + components: + - type: Transform + pos: 54.5,-12.5 + parent: 2 + - uid: 12460 + components: + - type: Transform + pos: 54.5,-16.5 + parent: 2 + - uid: 12461 + components: + - type: Transform + pos: 53.5,-16.5 + parent: 2 + - uid: 12462 + components: + - type: Transform + pos: 52.5,-16.5 + parent: 2 - proto: Chair entities: - uid: 897 @@ -25877,6 +26745,11 @@ entities: rot: -1.5707963267948966 rad pos: -0.5,18.5 parent: 2 + - uid: 12300 + components: + - type: Transform + pos: 61.493942,-20.492788 + parent: 2 - proto: ChairOfficeLight entities: - uid: 143 @@ -26650,6 +27523,11 @@ entities: - type: Transform pos: 43.5,12.5 parent: 2 + - uid: 12013 + components: + - type: Transform + pos: 58.5,-9.5 + parent: 2 - proto: ClosetWallEmergencyFilledRandom entities: - uid: 9857 @@ -26905,6 +27783,12 @@ entities: parent: 2 - proto: Cobweb1 entities: + - uid: 2010 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 42.5,-13.5 + parent: 2 - uid: 10957 components: - type: Transform @@ -26922,12 +27806,6 @@ entities: rot: 1.5707963267948966 rad pos: 27.5,-35.5 parent: 2 - - uid: 10964 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 43.5,-13.5 - parent: 2 - uid: 10967 components: - type: Transform @@ -27099,10 +27977,10 @@ entities: parent: 2 - proto: CommsComputerCircuitboard entities: - - uid: 7226 + - uid: 2012 components: - type: Transform - pos: 47.461044,-14.58257 + pos: 45.530457,-14.612856 parent: 2 - proto: ComputerAlert entities: @@ -27258,7 +28136,7 @@ entities: parent: 2 - proto: ComputerMedicalRecords entities: - - uid: 2370 + - uid: 1306 components: - type: Transform rot: -1.5707963267948966 rad @@ -27308,14 +28186,6 @@ entities: - type: Transform pos: 6.5,31.5 parent: 2 -- proto: ComputerShuttleSalvage - entities: - - uid: 1867 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,26.5 - parent: 2 - proto: ComputerSolarControl entities: - uid: 3238 @@ -27693,6 +28563,14 @@ entities: rot: 3.141592653589793 rad pos: 12.5,-31.5 parent: 2 +- proto: CorporateCircuitBoard + entities: + - uid: 12297 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 62.37019,-20.691254 + parent: 2 - proto: CrateArtifactContainer entities: - uid: 3823 @@ -28036,10 +28914,10 @@ entities: parent: 2 - proto: CrewMonitoringComputerCircuitboard entities: - - uid: 6882 + - uid: 9315 components: - type: Transform - pos: 47.41938,-15.510298 + pos: 44.37299,-14.542822 parent: 2 - proto: CrewMonitoringServer entities: @@ -28053,10 +28931,10 @@ entities: available: False - proto: CrewMonitoringServerMachineCircuitboard entities: - - uid: 4313 + - uid: 2001 components: - type: Transform - pos: 47.679794,-15.312244 + pos: 44.706326,-14.355191 parent: 2 - proto: CriminalRecordsComputerCircuitboard entities: @@ -28114,6 +28992,13 @@ entities: - type: Transform pos: -28.180807,-13.210001 parent: 2 +- proto: DefaultStationBeaconAISatellite + entities: + - uid: 530 + components: + - type: Transform + pos: 61.5,-14.5 + parent: 2 - proto: DefaultStationBeaconAME entities: - uid: 11171 @@ -31642,11 +32527,6 @@ entities: rot: 1.5707963267948966 rad pos: 49.5,5.5 parent: 2 - - uid: 8812 - components: - - type: Transform - pos: 22.5,16.5 - parent: 2 - uid: 8813 components: - type: Transform @@ -31681,6 +32561,11 @@ entities: rot: 1.5707963267948966 rad pos: -33.5,-12.5 parent: 2 + - uid: 9413 + components: + - type: Transform + pos: 20.5,16.5 + parent: 2 - uid: 9470 components: - type: Transform @@ -31773,6 +32658,29 @@ entities: rot: 3.141592653589793 rad pos: -19.5,26.5 parent: 2 + - uid: 12370 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 59.5,-19.5 + parent: 2 + - uid: 12371 + components: + - type: Transform + pos: 59.5,-9.5 + parent: 2 + - uid: 12372 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 64.5,-14.5 + parent: 2 + - uid: 12373 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 45.5,-11.5 + parent: 2 - proto: EmergencyMedipen entities: - uid: 1619 @@ -31800,6 +32708,12 @@ entities: parent: 2155 - type: Physics canCollide: False + - uid: 12120 + components: + - type: Transform + parent: 12027 + - type: Physics + canCollide: False - proto: EncryptionKeyCargo entities: - uid: 1384 @@ -31824,6 +32738,12 @@ entities: parent: 3968 - type: Physics canCollide: False + - uid: 12118 + components: + - type: Transform + parent: 12027 + - type: Physics + canCollide: False - proto: EncryptionKeyEngineering entities: - uid: 6675 @@ -31888,6 +32808,12 @@ entities: parent: 3968 - type: Physics canCollide: False + - uid: 12132 + components: + - type: Transform + parent: 12027 + - type: Physics + canCollide: False - proto: ExosuitFabricator entities: - uid: 2558 @@ -31942,15 +32868,10 @@ entities: - type: Transform pos: -35.5,7.5 parent: 2 - - uid: 10136 - components: - - type: Transform - pos: 44.5,-14.5 - parent: 2 - - uid: 10823 + - uid: 11173 components: - type: Transform - pos: -26.5,14.5 + pos: 49.5,-13.5 parent: 2 - uid: 11504 components: @@ -31969,6 +32890,11 @@ entities: - type: Transform pos: 32.5,-36.5 parent: 2 + - uid: 12473 + components: + - type: Transform + pos: -26.5,18.5 + parent: 2 - proto: FaxMachineBase entities: - uid: 946 @@ -32278,11 +33204,17 @@ entities: - type: Transform pos: 35.5,-7.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 9578 - uid: 9808 components: - type: Transform pos: 32.5,-14.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 9578 - uid: 9814 components: - type: Transform @@ -32502,18 +33434,6 @@ entities: rot: 1.5707963267948966 rad pos: 44.5,6.5 parent: 2 - - uid: 9843 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,16.5 - parent: 2 - - uid: 9844 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,16.5 - parent: 2 - uid: 9846 components: - type: Transform @@ -32683,11 +33603,17 @@ entities: - type: Transform pos: 30.5,-7.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 9578 - uid: 9793 components: - type: Transform pos: 29.5,-7.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 9578 - uid: 9794 components: - type: Transform @@ -32738,16 +33664,25 @@ entities: - type: Transform pos: 34.5,-16.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 9578 - uid: 9806 components: - type: Transform pos: 26.5,-10.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 9578 - uid: 9807 components: - type: Transform pos: 30.5,-12.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 9578 - uid: 9810 components: - type: Transform @@ -33055,6 +33990,15 @@ entities: - type: Transform pos: 13.5,-7.5 parent: 2 + - uid: 11096 + components: + - type: Transform + pos: 46.5,-13.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 2370 + - 9961 - uid: 11153 components: - type: Transform @@ -33406,13 +34350,6 @@ entities: - type: Transform pos: -12.527652,-12.407237 parent: 2 -- proto: FoodMealSoftTaco - entities: - - uid: 11916 - components: - - type: Transform - pos: 33.4271,-36.553722 - parent: 2 - proto: FoodMeat entities: - uid: 829 @@ -33513,19 +34450,22 @@ entities: - type: Transform pos: -9.699375,-21.57564 parent: 2 -- proto: FoodTacoBeefSupreme +- proto: FoodTacoShell entities: + - uid: 11099 + components: + - type: Transform + pos: 10.58681,-32.5766 + parent: 2 - uid: 11914 components: - type: Transform pos: 33.39585,-36.366093 parent: 2 -- proto: FoodTacoRat - entities: - - uid: 11099 + - uid: 11916 components: - type: Transform - pos: 10.58681,-32.5766 + pos: 33.4271,-36.553722 parent: 2 - proto: FoodTartMime entities: @@ -33706,14 +34646,6 @@ entities: - type: Transform pos: 27.5,18.5 parent: 2 - - uid: 2029 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,19.5 - parent: 2 - - type: AtmosPipeColor - color: '#0099FFFF' - uid: 2846 components: - type: Transform @@ -33766,6 +34698,13 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FFAA00FF' + - uid: 2026 + components: + - type: Transform + pos: 24.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF6600FF' - uid: 2847 components: - type: Transform @@ -33784,13 +34723,6 @@ entities: rot: 3.141592653589793 rad pos: -52.5,-34.5 parent: 2 - - uid: 11961 - components: - - type: Transform - pos: 24.5,23.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF6600FF' - proto: GasPipeBend entities: - uid: 428 @@ -33880,14 +34812,13 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF6600FF' - - uid: 957 + - uid: 962 components: - type: Transform - rot: 3.141592653589793 rad - pos: 21.5,15.5 + pos: 30.5,21.5 parent: 2 - type: AtmosPipeColor - color: '#0099FFFF' + color: '#FF6600FF' - uid: 1018 components: - type: Transform @@ -33911,22 +34842,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0088FFFF' - - uid: 1947 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,19.5 - parent: 2 - - type: AtmosPipeColor - color: '#0099FFFF' - - uid: 1959 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,20.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF6600FF' - uid: 1960 components: - type: Transform @@ -33951,18 +34866,19 @@ entities: parent: 2 - type: AtmosPipeColor color: '#00AAFFFF' - - uid: 2018 + - uid: 2040 components: - type: Transform - pos: 28.5,20.5 + rot: -1.5707963267948966 rad + pos: 26.5,15.5 parent: 2 - type: AtmosPipeColor color: '#FF6600FF' - - uid: 2040 + - uid: 2049 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 26.5,15.5 + rot: 1.5707963267948966 rad + pos: 26.5,21.5 parent: 2 - type: AtmosPipeColor color: '#FF6600FF' @@ -33974,6 +34890,29 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF6600FF' + - uid: 2084 + components: + - type: Transform + pos: 24.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#0099FFFF' + - uid: 2085 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#0099FFFF' + - uid: 2087 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#0099FFFF' - uid: 2226 components: - type: Transform @@ -34070,6 +35009,22 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0088FFFF' + - uid: 4032 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0099FFFF' + - uid: 6859 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#0099FFFF' - uid: 6907 components: - type: Transform @@ -34704,28 +35659,45 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FFAA00FF' - - uid: 10118 + - uid: 9389 components: - type: Transform - pos: 14.5,-4.5 + rot: 1.5707963267948966 rad + pos: 28.5,18.5 parent: 2 - type: AtmosPipeColor - color: '#0088FFFF' - - uid: 10218 + color: '#FF6600FF' + - uid: 9392 components: - type: Transform - pos: 21.5,20.5 + rot: 1.5707963267948966 rad + pos: 45.5,-14.5 parent: 2 - type: AtmosPipeColor - color: '#00AAFFFF' - - uid: 10219 + color: '#0088FFFF' + - uid: 9396 components: - type: Transform rot: 1.5707963267948966 rad pos: 19.5,20.5 parent: 2 - type: AtmosPipeColor - color: '#00AAFFFF' + color: '#0099FFFF' + - uid: 9401 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF6600FF' + - uid: 10118 + components: + - type: Transform + pos: 14.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0088FFFF' - uid: 10859 components: - type: Transform @@ -34786,6 +35758,53 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0088FFFF' + - uid: 12140 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 58.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0088FFFF' + - uid: 12376 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 58.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0088FFFF' + - uid: 12401 + components: + - type: Transform + pos: 60.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#FFAA00FF' + - uid: 12402 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 59.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#FFAA00FF' + - uid: 12403 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 59.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#FFAA00FF' + - uid: 12404 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 60.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#FFAA00FF' - proto: GasPipeFourway entities: - uid: 726 @@ -34984,8 +36003,22 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0088FFFF' + - uid: 9398 + components: + - type: Transform + pos: 23.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#0099FFFF' - proto: GasPipeStraight entities: + - uid: 617 + components: + - type: Transform + pos: 19.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0099FFFF' - uid: 745 components: - type: Transform @@ -35010,20 +36043,27 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 919 + - uid: 853 components: - type: Transform - pos: 23.5,17.5 + pos: 19.5,18.5 parent: 2 - type: AtmosPipeColor color: '#0099FFFF' - - uid: 959 + - uid: 900 components: - type: Transform - pos: 21.5,17.5 + pos: 19.5,16.5 parent: 2 - type: AtmosPipeColor - color: '#00AAFFFF' + color: '#0099FFFF' + - uid: 960 + components: + - type: Transform + pos: 19.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0099FFFF' - uid: 1173 components: - type: Transform @@ -35064,65 +36104,26 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FFAA00FF' - - uid: 1950 + - uid: 1955 components: - type: Transform - pos: 23.5,18.5 + pos: 23.5,15.5 parent: 2 - type: AtmosPipeColor color: '#0099FFFF' - - uid: 1958 - components: - - type: Transform - pos: 19.5,17.5 - parent: 2 - - type: AtmosPipeColor - color: '#00AAFFFF' - uid: 1970 components: - type: Transform pos: 19.5,13.5 parent: 2 - type: AtmosPipeColor - color: '#00AAFFFF' + color: '#0099FFFF' - uid: 1971 components: - type: Transform rot: -1.5707963267948966 rad pos: 20.5,12.5 parent: 2 - - type: AtmosPipeColor - color: '#00AAFFFF' - - uid: 1972 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,15.5 - parent: 2 - - type: AtmosPipeColor - color: '#0099FFFF' - - uid: 1998 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,19.5 - parent: 2 - - type: AtmosPipeColor - color: '#0099FFFF' - - uid: 2022 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,19.5 - parent: 2 - - type: AtmosPipeColor - color: '#0099FFFF' - - uid: 2027 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 25.5,19.5 - parent: 2 - type: AtmosPipeColor color: '#0099FFFF' - uid: 2031 @@ -35140,36 +36141,29 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0099FFFF' - - uid: 2035 + - uid: 2034 components: - type: Transform - pos: 26.5,17.5 + rot: -1.5707963267948966 rad + pos: 29.5,18.5 parent: 2 - type: AtmosPipeColor color: '#FF6600FF' - - uid: 2037 + - uid: 2035 components: - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,15.5 + pos: 26.5,17.5 parent: 2 - type: AtmosPipeColor color: '#FF6600FF' - - uid: 2041 + - uid: 2037 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,20.5 + rot: 3.141592653589793 rad + pos: 28.5,15.5 parent: 2 - type: AtmosPipeColor color: '#FF6600FF' - - uid: 2042 - components: - - type: Transform - pos: 19.5,16.5 - parent: 2 - - type: AtmosPipeColor - color: '#00AAFFFF' - uid: 2043 components: - type: Transform @@ -35198,6 +36192,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF6600FF' + - uid: 2071 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF6600FF' - uid: 2221 components: - type: Transform @@ -35483,6 +36485,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FFAA00FF' + - uid: 4313 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0099FFFF' - uid: 4508 components: - type: Transform @@ -41114,14 +42124,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FFAA00FF' - - uid: 8146 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 47.5,-9.5 - parent: 2 - - type: AtmosPipeColor - color: '#FFAA00FF' - uid: 8147 components: - type: Transform @@ -44408,6 +45410,27 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FFAA00FF' + - uid: 9397 + components: + - type: Transform + pos: 21.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0099FFFF' + - uid: 9408 + components: + - type: Transform + pos: 23.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0099FFFF' + - uid: 9409 + components: + - type: Transform + pos: 23.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0099FFFF' - uid: 9417 components: - type: Transform @@ -44463,14 +45486,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0088FFFF' - - uid: 9424 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 46.5,-14.5 - parent: 2 - - type: AtmosPipeColor - color: '#0088FFFF' - uid: 9502 components: - type: Transform @@ -44718,6 +45733,41 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FFAA00FF' + - uid: 10964 + components: + - type: Transform + pos: 47.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#FFAA00FF' + - uid: 10997 + components: + - type: Transform + pos: 47.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#FFAA00FF' + - uid: 10998 + components: + - type: Transform + pos: 47.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#FFAA00FF' + - uid: 10999 + components: + - type: Transform + pos: 47.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#FFAA00FF' + - uid: 11000 + components: + - type: Transform + pos: 47.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#FFAA00FF' - uid: 11412 components: - type: Transform @@ -45047,74 +46097,309 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF6600FF' - - uid: 11956 + - uid: 11966 components: - type: Transform - pos: 24.5,18.5 + rot: -1.5707963267948966 rad + pos: 29.5,12.5 parent: 2 - type: AtmosPipeColor color: '#FF6600FF' - - uid: 11957 + - uid: 12121 components: - type: Transform - pos: 24.5,19.5 + rot: -1.5707963267948966 rad + pos: 47.5,-14.5 parent: 2 - type: AtmosPipeColor - color: '#FF6600FF' - - uid: 11958 + color: '#0088FFFF' + - uid: 12122 components: - type: Transform - pos: 24.5,20.5 + rot: -1.5707963267948966 rad + pos: 49.5,-14.5 parent: 2 - type: AtmosPipeColor - color: '#FF6600FF' - - uid: 11959 + color: '#0088FFFF' + - uid: 12123 components: - type: Transform - pos: 24.5,21.5 + rot: -1.5707963267948966 rad + pos: 48.5,-14.5 parent: 2 - type: AtmosPipeColor - color: '#FF6600FF' - - uid: 11960 + color: '#0088FFFF' + - uid: 12124 components: - type: Transform - pos: 24.5,22.5 + rot: -1.5707963267948966 rad + pos: 50.5,-14.5 parent: 2 - type: AtmosPipeColor - color: '#FF6600FF' - - uid: 11966 + color: '#0088FFFF' + - uid: 12125 components: - type: Transform rot: -1.5707963267948966 rad - pos: 29.5,12.5 + pos: 52.5,-14.5 parent: 2 - type: AtmosPipeColor - color: '#FF6600FF' -- proto: GasPipeTJunction - entities: - - uid: 759 + color: '#0088FFFF' + - uid: 12126 components: - type: Transform - pos: 23.5,3.5 + rot: -1.5707963267948966 rad + pos: 53.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0088FFFF' + - uid: 12127 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 54.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0088FFFF' + - uid: 12128 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 55.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0088FFFF' + - uid: 12129 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 56.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0088FFFF' + - uid: 12130 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 57.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0088FFFF' + - uid: 12131 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 51.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0088FFFF' + - uid: 12378 + components: + - type: Transform + pos: 58.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0088FFFF' + - uid: 12379 + components: + - type: Transform + pos: 58.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0088FFFF' + - uid: 12380 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 59.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0088FFFF' + - uid: 12381 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 61.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0088FFFF' + - uid: 12382 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 62.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0088FFFF' + - uid: 12383 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 60.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0088FFFF' + - uid: 12384 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 59.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0088FFFF' + - uid: 12385 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 61.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0088FFFF' + - uid: 12386 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 62.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0088FFFF' + - uid: 12387 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 60.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0088FFFF' + - uid: 12388 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 58.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0088FFFF' + - uid: 12389 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 58.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0088FFFF' + - uid: 12406 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 59.5,-13.5 parent: 2 - type: AtmosPipeColor color: '#FFAA00FF' - - uid: 853 + - uid: 12407 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 59.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#FFAA00FF' + - uid: 12408 components: - type: Transform rot: 1.5707963267948966 rad - pos: 19.5,18.5 + pos: 58.5,-15.5 parent: 2 - type: AtmosPipeColor - color: '#00AAFFFF' - - uid: 958 + color: '#FFAA00FF' + - uid: 12409 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 21.5,18.5 + rot: 1.5707963267948966 rad + pos: 56.5,-15.5 parent: 2 - type: AtmosPipeColor - color: '#00AAFFFF' + color: '#FFAA00FF' + - uid: 12410 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 55.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#FFAA00FF' + - uid: 12411 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 54.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#FFAA00FF' + - uid: 12412 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 53.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#FFAA00FF' + - uid: 12413 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 57.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#FFAA00FF' + - uid: 12414 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 51.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#FFAA00FF' + - uid: 12415 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 52.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#FFAA00FF' + - uid: 12416 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 49.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#FFAA00FF' + - uid: 12417 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 50.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#FFAA00FF' + - uid: 12418 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 48.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#FFAA00FF' +- proto: GasPipeTJunction + entities: + - uid: 759 + components: + - type: Transform + pos: 23.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#FFAA00FF' - uid: 982 components: - type: Transform @@ -45137,7 +46422,7 @@ entities: pos: 19.5,15.5 parent: 2 - type: AtmosPipeColor - color: '#00AAFFFF' + color: '#0099FFFF' - uid: 1966 components: - type: Transform @@ -45152,14 +46437,6 @@ entities: rot: 3.141592653589793 rad pos: 19.5,12.5 parent: 2 - - type: AtmosPipeColor - color: '#00AAFFFF' - - uid: 1993 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,15.5 - parent: 2 - type: AtmosPipeColor color: '#0099FFFF' - uid: 2000 @@ -45169,7 +46446,7 @@ entities: pos: 21.5,12.5 parent: 2 - type: AtmosPipeColor - color: '#00AAFFFF' + color: '#0099FFFF' - uid: 2016 components: - type: Transform @@ -45177,6 +46454,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF6600FF' + - uid: 2042 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF6600FF' - uid: 2047 components: - type: Transform @@ -45193,14 +46478,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF6600FF' - - uid: 2049 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 21.5,19.5 - parent: 2 - - type: AtmosPipeColor - color: '#00AAFFFF' - uid: 2053 components: - type: Transform @@ -45217,14 +46494,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF6600FF' - - uid: 2080 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,19.5 - parent: 2 - - type: AtmosPipeColor - color: '#00AAFFFF' - uid: 2082 components: - type: Transform @@ -45283,6 +46552,13 @@ entities: rot: 3.141592653589793 rad pos: 20.5,-25.5 parent: 2 + - uid: 2254 + components: + - type: Transform + pos: 22.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#0099FFFF' - uid: 2961 components: - type: Transform @@ -45461,6 +46737,13 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0088FFFF' + - uid: 6858 + components: + - type: Transform + pos: 23.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#0099FFFF' - uid: 7009 components: - type: Transform @@ -45684,6 +46967,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FFAA00FF' + - uid: 7226 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF6600FF' - uid: 7260 components: - type: Transform @@ -46413,6 +47704,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FFAA00FF' + - uid: 8034 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF6600FF' - uid: 8039 components: - type: Transform @@ -46491,6 +47790,13 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FFAA00FF' + - uid: 8146 + components: + - type: Transform + pos: 47.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#FFAA00FF' - uid: 8166 components: - type: Transform @@ -47067,6 +48373,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0088FFFF' + - uid: 8812 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF6600FF' - uid: 8927 components: - type: Transform @@ -47102,6 +48416,14 @@ entities: rot: -1.5707963267948966 rad pos: -46.5,-8.5 parent: 2 + - uid: 9415 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 46.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0088FFFF' - uid: 9416 components: - type: Transform @@ -47134,6 +48456,30 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FFAA00FF' + - uid: 12015 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 47.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#FFAA00FF' + - uid: 12377 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 58.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0088FFFF' + - uid: 12405 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 59.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#FFAA00FF' - proto: GasPort entities: - uid: 138 @@ -47156,6 +48502,12 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FFAA00FF' + - uid: 904 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,-19.5 + parent: 2 - uid: 1929 components: - type: Transform @@ -47311,7 +48663,7 @@ entities: pos: 18.5,15.5 parent: 2 - type: AtmosPipeColor - color: '#00AAFFFF' + color: '#0099FFFF' - uid: 1969 components: - type: Transform @@ -47319,7 +48671,23 @@ entities: pos: 18.5,12.5 parent: 2 - type: AtmosPipeColor - color: '#00AAFFFF' + color: '#0099FFFF' + - uid: 2020 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0099FFFF' + - uid: 2022 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0099FFFF' - uid: 2058 components: - type: Transform @@ -47335,6 +48703,14 @@ entities: parent: 2 - type: GasPressurePump targetPressure: 80 + - uid: 2944 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0099FFFF' - uid: 3811 components: - type: Transform @@ -47377,7 +48753,7 @@ entities: pos: 21.5,13.5 parent: 2 - type: AtmosPipeColor - color: '#00AAFFFF' + color: '#0099FFFF' - proto: GasThermoMachineFreezerEnabled entities: - uid: 631 @@ -47416,22 +48792,13 @@ entities: color: '#FF6600FF' - proto: GasValve entities: - - uid: 904 - components: - - type: Transform - pos: 23.5,16.5 - parent: 2 - - type: GasValve - open: False - - type: AtmosPipeColor - color: '#0099FFFF' - uid: 1962 components: - type: Transform pos: 19.5,14.5 parent: 2 - type: AtmosPipeColor - color: '#00AAFFFF' + color: '#0099FFFF' - uid: 2052 components: - type: Transform @@ -47555,6 +48922,9 @@ entities: rot: -1.5707963267948966 rad pos: 31.5,-8.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 9578 - type: AtmosPipeColor color: '#0088FFFF' - uid: 7173 @@ -47595,6 +48965,9 @@ entities: rot: -1.5707963267948966 rad pos: 36.5,-8.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 9578 - type: AtmosPipeColor color: '#0088FFFF' - uid: 7206 @@ -48461,14 +49834,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0088FFFF' - - uid: 9415 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 46.5,-15.5 - parent: 2 - - type: AtmosPipeColor - color: '#0088FFFF' - uid: 9954 components: - type: Transform @@ -48542,6 +49907,36 @@ entities: - type: Transform pos: -50.5,-30.5 parent: 2 + - uid: 11956 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 45.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0088FFFF' + - uid: 12390 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 63.5,-17.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 12429 + - type: AtmosPipeColor + color: '#0088FFFF' + - uid: 12391 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 63.5,-11.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 12429 + - type: AtmosPipeColor + color: '#0088FFFF' - proto: GasVentScrubber entities: - uid: 1172 @@ -48671,6 +50066,9 @@ entities: rot: 1.5707963267948966 rad pos: 28.5,-9.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 9578 - type: AtmosPipeColor color: '#FFAA00FF' - uid: 7111 @@ -48695,6 +50093,9 @@ entities: rot: 3.141592653589793 rad pos: 35.5,-12.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 9578 - type: AtmosPipeColor color: '#FFAA00FF' - uid: 7141 @@ -49589,6 +50990,17 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FFAA00FF' + - uid: 10834 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 46.5,-15.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 2370 + - type: AtmosPipeColor + color: '#FFAA00FF' - uid: 10870 components: - type: Transform @@ -49635,18 +51047,45 @@ entities: - type: Transform pos: -52.5,-31.5 parent: 2 + - uid: 12399 + components: + - type: Transform + pos: 60.5,-11.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 12429 + - type: AtmosPipeColor + color: '#FFAA00FF' + - uid: 12400 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 60.5,-17.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 12429 + - type: AtmosPipeColor + color: '#FFAA00FF' - proto: GasVolumePump entities: - - uid: 956 + - uid: 1972 components: - type: Transform - rot: 3.141592653589793 rad - pos: 21.5,16.5 + rot: -1.5707963267948966 rad + pos: 29.5,19.5 parent: 2 - - type: GasVolumePump - transferRate: 15 - type: AtmosPipeColor - color: '#00AAFFFF' + color: '#FF6600FF' + - uid: 1976 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF6600FF' - uid: 1995 components: - type: Transform @@ -49663,7 +51102,7 @@ entities: - type: GasVolumePump transferRate: 15 - type: AtmosPipeColor - color: '#00AAFFFF' + color: '#0099FFFF' - uid: 2028 components: - type: Transform @@ -49672,6 +51111,62 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF6600FF' + - uid: 2029 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF6600FF' + - uid: 2066 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF6600FF' + - uid: 2067 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF6600FF' + - uid: 2070 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF6600FF' + - uid: 3256 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0099FFFF' + - uid: 9393 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0099FFFF' + - uid: 9441 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0099FFFF' - proto: Gauze entities: - uid: 3927 @@ -50153,11 +51648,6 @@ entities: - type: Transform pos: 5.5,6.5 parent: 2 - - uid: 960 - components: - - type: Transform - pos: 22.5,19.5 - parent: 2 - uid: 969 components: - type: Transform @@ -50633,36 +52123,11 @@ entities: - type: Transform pos: 18.5,20.5 parent: 2 - - uid: 1955 - components: - - type: Transform - pos: 18.5,19.5 - parent: 2 - - uid: 1957 - components: - - type: Transform - pos: 22.5,20.5 - parent: 2 - uid: 1973 components: - type: Transform pos: 25.5,20.5 parent: 2 - - uid: 1979 - components: - - type: Transform - pos: 21.5,17.5 - parent: 2 - - uid: 1980 - components: - - type: Transform - pos: 20.5,17.5 - parent: 2 - - uid: 1981 - components: - - type: Transform - pos: 19.5,17.5 - parent: 2 - uid: 1988 components: - type: Transform @@ -50678,10 +52143,10 @@ entities: - type: Transform pos: 26.5,17.5 parent: 2 - - uid: 2020 + - uid: 2018 components: - type: Transform - pos: 25.5,18.5 + pos: 22.5,17.5 parent: 2 - uid: 2023 components: @@ -51228,11 +52693,6 @@ entities: - type: Transform pos: -50.5,-18.5 parent: 2 - - uid: 6888 - components: - - type: Transform - pos: -49.5,-18.5 - parent: 2 - uid: 6894 components: - type: Transform @@ -51423,6 +52883,21 @@ entities: - type: Transform pos: 45.5,-17.5 parent: 2 + - uid: 9400 + components: + - type: Transform + pos: 23.5,17.5 + parent: 2 + - uid: 9405 + components: + - type: Transform + pos: 24.5,17.5 + parent: 2 + - uid: 9412 + components: + - type: Transform + pos: 18.5,21.5 + parent: 2 - uid: 9455 components: - type: Transform @@ -51444,15 +52919,15 @@ entities: rot: 1.5707963267948966 rad pos: 9.5,-31.5 parent: 2 - - uid: 9578 + - uid: 9579 components: - type: Transform - pos: -23.5,18.5 + pos: -24.5,18.5 parent: 2 - - uid: 9579 + - uid: 9685 components: - type: Transform - pos: -24.5,18.5 + pos: 45.5,-13.5 parent: 2 - uid: 9730 components: @@ -51479,6 +52954,16 @@ entities: - type: Transform pos: -11.5,-21.5 parent: 2 + - uid: 10134 + components: + - type: Transform + pos: 49.5,-14.5 + parent: 2 + - uid: 10136 + components: + - type: Transform + pos: 51.5,-15.5 + parent: 2 - uid: 10151 components: - type: Transform @@ -51639,125 +53124,36 @@ entities: - type: Transform pos: -57.5,15.5 parent: 2 -- proto: GrilleDiagonal - entities: - - uid: 11719 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -54.5,-33.5 - parent: 2 -- proto: GrilleSpawner - entities: - - uid: 3640 - components: - - type: Transform - pos: 37.5,23.5 - parent: 2 - - uid: 9389 - components: - - type: Transform - pos: 60.5,-7.5 - parent: 2 - - uid: 9390 - components: - - type: Transform - pos: 60.5,-6.5 - parent: 2 - - uid: 9391 - components: - - type: Transform - pos: 60.5,-4.5 - parent: 2 - - uid: 9392 - components: - - type: Transform - pos: 60.5,-3.5 - parent: 2 - - uid: 9393 - components: - - type: Transform - pos: 59.5,-8.5 - parent: 2 - - uid: 9394 - components: - - type: Transform - pos: 59.5,-9.5 - parent: 2 - - uid: 9395 - components: - - type: Transform - pos: 58.5,-9.5 - parent: 2 - - uid: 9396 - components: - - type: Transform - pos: 57.5,-9.5 - parent: 2 - - uid: 9397 - components: - - type: Transform - pos: 56.5,-9.5 - parent: 2 - - uid: 9398 - components: - - type: Transform - pos: 59.5,-2.5 - parent: 2 - - uid: 9399 - components: - - type: Transform - pos: 59.5,-1.5 - parent: 2 - - uid: 9400 - components: - - type: Transform - pos: 58.5,-1.5 - parent: 2 - - uid: 9401 - components: - - type: Transform - pos: 57.5,-1.5 - parent: 2 - - uid: 9402 - components: - - type: Transform - pos: 56.5,-1.5 - parent: 2 - - uid: 9406 - components: - - type: Transform - pos: 59.5,-5.5 - parent: 2 - - uid: 9407 - components: - - type: Transform - pos: 58.5,-5.5 - parent: 2 - - uid: 9408 + - uid: 11960 components: - type: Transform - pos: 57.5,-5.5 + pos: 57.5,-13.5 parent: 2 - - uid: 9409 + - uid: 12022 components: - type: Transform - pos: 56.5,-5.5 + pos: 57.5,-15.5 parent: 2 - - uid: 9410 + - uid: 12058 components: - type: Transform - pos: 55.5,-10.5 + rot: -1.5707963267948966 rad + pos: 60.5,-14.5 parent: 2 - - uid: 9411 +- proto: GrilleDiagonal + entities: + - uid: 11719 components: - type: Transform - pos: 55.5,-11.5 + rot: 1.5707963267948966 rad + pos: -54.5,-33.5 parent: 2 - - uid: 9412 +- proto: GrilleSpawner + entities: + - uid: 3640 components: - type: Transform - pos: 55.5,-12.5 + pos: 37.5,23.5 parent: 2 - uid: 10984 components: @@ -51789,26 +53185,6 @@ entities: - type: Transform pos: 32.5,23.5 parent: 2 - - uid: 10997 - components: - - type: Transform - pos: 54.5,-13.5 - parent: 2 - - uid: 10998 - components: - - type: Transform - pos: 53.5,-13.5 - parent: 2 - - uid: 10999 - components: - - type: Transform - pos: 52.5,-13.5 - parent: 2 - - uid: 11000 - components: - - type: Transform - pos: 51.5,-13.5 - parent: 2 - uid: 11003 components: - type: Transform @@ -51893,10 +53269,10 @@ entities: parent: 2 - proto: HandgunSafeSpawner entities: - - uid: 2804 + - uid: 12141 components: - type: Transform - pos: -1.5,-5.5 + pos: -1.5,-4.5 parent: 2 - proto: HandheldHealthAnalyzer entities: @@ -51930,58 +53306,51 @@ entities: chance: 1 - proto: HeatExchanger entities: - - uid: 963 + - uid: 2033 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 20.5,18.5 + rot: -1.5707963267948966 rad + pos: 28.5,21.5 parent: 2 - type: AtmosPipeColor - color: '#00AAFFFF' - - uid: 966 + color: '#FF6600FF' + - uid: 2074 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 20.5,19.5 + pos: 22.5,20.5 parent: 2 - type: AtmosPipeColor - color: '#00AAFFFF' - - uid: 2033 + color: '#0099FFFF' + - uid: 2075 components: - type: Transform - pos: 26.5,19.5 + pos: 23.5,20.5 parent: 2 - type: AtmosPipeColor - color: '#FF6600FF' - - uid: 2034 + color: '#0099FFFF' + - uid: 2076 components: - type: Transform - pos: 28.5,18.5 + pos: 24.5,20.5 parent: 2 - type: AtmosPipeColor - color: '#FF6600FF' - - uid: 2039 + color: '#0099FFFF' + - uid: 6882 components: - type: Transform - pos: 28.5,19.5 + rot: -1.5707963267948966 rad + pos: 28.5,20.5 parent: 2 - type: AtmosPipeColor color: '#FF6600FF' - - uid: 2044 + - uid: 9600 components: - type: Transform - pos: 26.5,18.5 + rot: -1.5707963267948966 rad + pos: 28.5,19.5 parent: 2 - type: AtmosPipeColor color: '#FF6600FF' - - uid: 10220 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 20.5,20.5 - parent: 2 - - type: AtmosPipeColor - color: '#00AAFFFF' - proto: HighSecCommandLocked entities: - uid: 2354 @@ -51996,15 +53365,15 @@ entities: parent: 2 - proto: HoloprojectorEngineering entities: - - uid: 2166 + - uid: 2837 components: - type: Transform - pos: 31.650194,-0.29853484 + pos: 31.386017,-2.6490197 parent: 2 - - uid: 2837 + - uid: 9022 components: - type: Transform - pos: 31.35332,-0.62688875 + pos: 31.656849,-2.377998 parent: 2 - proto: HoloprojectorSecurity entities: @@ -52141,17 +53510,17 @@ entities: parent: 2 - proto: IDComputerCircuitboard entities: - - uid: 4032 + - uid: 9844 components: - type: Transform - pos: 47.658962,-14.321973 + pos: 45.665874,-14.33141 parent: 2 - proto: Igniter entities: - uid: 2030 components: - type: Transform - pos: 27,19 + pos: 28.525389,19.950005 parent: 2 - proto: IngotSilver entities: @@ -52168,6 +53537,11 @@ entities: rot: 1.5707963267948966 rad pos: 44.5,0.5 parent: 2 + - uid: 12009 + components: + - type: Transform + pos: 62.5,-13.5 + parent: 2 - proto: IntercomCommand entities: - uid: 4677 @@ -52213,13 +53587,19 @@ entities: rot: 1.5707963267948966 rad pos: -53.5,-17.5 parent: 2 + - uid: 12312 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 62.5,-15.5 + parent: 2 - proto: IntercomEngineering entities: - - uid: 10834 + - uid: 2307 components: - type: Transform rot: 3.141592653589793 rad - pos: 25.5,21.5 + pos: 20.5,19.5 parent: 2 - uid: 10835 components: @@ -52606,6 +53986,11 @@ entities: parent: 2 - proto: LockerAtmosphericsFilledHardsuit entities: + - uid: 773 + components: + - type: Transform + pos: 31.5,-0.5 + parent: 2 - uid: 10896 components: - type: Transform @@ -52641,10 +54026,10 @@ entities: parent: 2 - proto: LockerChemistryFilled entities: - - uid: 577 + - uid: 9411 components: - type: Transform - pos: 19.5,-19.5 + pos: 20.5,-20.5 parent: 2 - proto: LockerChiefEngineerFilled entities: @@ -52695,6 +54080,11 @@ entities: - type: Transform pos: 42.5,-11.5 parent: 2 + - uid: 12142 + components: + - type: Transform + pos: 59.5,-9.5 + parent: 2 - proto: LockerEngineerFilled entities: - uid: 774 @@ -53363,13 +54753,6 @@ entities: - type: Transform pos: 44.742798,-4.6113973 parent: 2 -- proto: MaterialReclaimer - entities: - - uid: 8977 - components: - - type: Transform - pos: -11.5,0.5 - parent: 2 - proto: MaterialWoodPlank entities: - uid: 11777 @@ -53663,6 +55046,14 @@ entities: - type: Transform pos: -1.5,-9.5 parent: 2 +- proto: NTDefaultCircuitBoard + entities: + - uid: 12299 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 62.380608,-20.378536 + parent: 2 - proto: NuclearBomb entities: - uid: 851 @@ -54426,6 +55817,11 @@ entities: rot: -1.5707963267948966 rad pos: -6.5,-32.5 parent: 2 + - uid: 2009 + components: + - type: Transform + pos: 48.5,-14.5 + parent: 2 - uid: 3402 components: - type: Transform @@ -55310,13 +56706,6 @@ entities: rot: 1.5707963267948966 rad pos: -35.5,-23.5 parent: 2 - - uid: 9202 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,19.5 - parent: 2 - - type: Timer - uid: 9203 components: - type: Transform @@ -55512,17 +56901,6 @@ entities: rot: 1.5707963267948966 rad pos: -55.5,-15.5 parent: 2 - - uid: 9541 - components: - - type: Transform - pos: 44.5,-15.5 - parent: 2 - - uid: 9542 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 45.5,-14.5 - parent: 2 - uid: 9550 components: - type: Transform @@ -55534,12 +56912,24 @@ entities: - type: Transform pos: 11.5,-3.5 parent: 2 + - uid: 9633 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 44.5,-16.5 + parent: 2 - uid: 9850 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,17.5 parent: 2 + - uid: 10223 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.5,-38.5 + parent: 2 - uid: 10901 components: - type: Transform @@ -55609,6 +56999,121 @@ entities: rot: 3.141592653589793 rad pos: 36.5,-39.5 parent: 2 + - uid: 12287 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 56.5,-13.5 + parent: 2 + - uid: 12314 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 56.5,-15.5 + parent: 2 + - uid: 12319 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 58.5,-10.5 + parent: 2 + - uid: 12320 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 58.5,-18.5 + parent: 2 + - uid: 12321 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 54.5,-16.5 + parent: 2 + - uid: 12322 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 54.5,-12.5 + parent: 2 + - uid: 12323 + components: + - type: Transform + pos: 63.5,-9.5 + parent: 2 + - uid: 12324 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 63.5,-19.5 + parent: 2 + - uid: 12325 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 61.5,-21.5 + parent: 2 + - uid: 12326 + components: + - type: Transform + pos: 63.5,-16.5 + parent: 2 + - uid: 12327 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 63.5,-12.5 + parent: 2 + - uid: 12328 + components: + - type: Transform + pos: 61.5,-7.5 + parent: 2 + - uid: 12329 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 61.5,-14.5 + parent: 2 + - uid: 12330 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 66.5,-14.5 + parent: 2 + - uid: 12423 + components: + - type: Transform + pos: -24.5,20.5 + parent: 2 + - uid: 12436 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 61.5,-4.5 + parent: 2 + - uid: 12437 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 67.5,-9.5 + parent: 2 + - uid: 12438 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 69.5,-14.5 + parent: 2 + - uid: 12439 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 67.5,-19.5 + parent: 2 + - uid: 12440 + components: + - type: Transform + pos: 61.5,-24.5 + parent: 2 - proto: PoweredLightBlueInterior entities: - uid: 458 @@ -55778,11 +57283,6 @@ entities: - type: Transform pos: 23.5,30.5 parent: 2 - - uid: 11096 - components: - - type: Transform - pos: 29.5,23.5 - parent: 2 - proto: PoweredSmallLight entities: - uid: 1319 @@ -55791,6 +57291,18 @@ entities: rot: -1.5707963267948966 rad pos: -18.5,-13.5 parent: 2 + - uid: 1979 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,19.5 + parent: 2 + - uid: 1993 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,22.5 + parent: 2 - uid: 4506 components: - type: Transform @@ -55824,24 +57336,6 @@ entities: rot: -1.5707963267948966 rad pos: -10.5,-1.5 parent: 2 - - uid: 6855 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,18.5 - parent: 2 - - uid: 6858 - components: - - type: Transform - pos: 20.5,21.5 - parent: 2 - - uid: 6859 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,19.5 - parent: 2 - - type: Timer - uid: 8762 components: - type: Transform @@ -55881,6 +57375,12 @@ entities: - type: Transform pos: 12.5,-28.5 parent: 2 + - uid: 9402 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,19.5 + parent: 2 - uid: 9549 components: - type: Transform @@ -55904,6 +57404,12 @@ entities: rot: 3.141592653589793 rad pos: -55.5,14.5 parent: 2 + - uid: 12428 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 50.5,-15.5 + parent: 2 - proto: PoweredSmallLightMaintenance entities: - uid: 6823 @@ -56149,6 +57655,23 @@ entities: rot: 3.141592653589793 rad pos: -12.5,-15.5 parent: 2 + - uid: 10218 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,18.5 + parent: 2 + - uid: 10220 + components: + - type: Transform + pos: 31.5,-34.5 + parent: 2 + - uid: 10227 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 38.5,-35.5 + parent: 2 - uid: 10924 components: - type: Transform @@ -56287,11 +57810,6 @@ entities: - type: Transform pos: -41.5,11.5 parent: 2 - - uid: 1888 - components: - - type: Transform - pos: 31.5,-0.5 - parent: 2 - uid: 2152 components: - type: Transform @@ -56302,6 +57820,11 @@ entities: - type: Transform pos: 33.5,20.5 parent: 2 + - uid: 2166 + components: + - type: Transform + pos: 31.5,-2.5 + parent: 2 - uid: 2191 components: - type: Transform @@ -56405,16 +57928,6 @@ entities: - type: Transform pos: -29.5,8.5 parent: 2 - - uid: 9301 - components: - - type: Transform - pos: 47.5,-14.5 - parent: 2 - - uid: 9302 - components: - - type: Transform - pos: 47.5,-15.5 - parent: 2 - uid: 9303 components: - type: Transform @@ -56430,11 +57943,22 @@ entities: - type: Transform pos: 44.5,-16.5 parent: 2 + - uid: 9319 + components: + - type: Transform + pos: 44.5,-14.5 + parent: 2 - uid: 9323 components: - type: Transform pos: 46.5,-16.5 parent: 2 + - uid: 9406 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 45.5,-14.5 + parent: 2 - uid: 9483 components: - type: Transform @@ -56470,6 +57994,27 @@ entities: - type: Transform pos: 37.5,9.5 parent: 2 + - uid: 12139 + components: + - type: Transform + pos: 62.5,-12.5 + parent: 2 + - uid: 12296 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 62.5,-20.5 + parent: 2 + - uid: 12306 + components: + - type: Transform + pos: 66.5,-14.5 + parent: 2 + - uid: 12308 + components: + - type: Transform + pos: 62.5,-16.5 + parent: 2 - proto: RadioHandheld entities: - uid: 9569 @@ -56589,6 +58134,13 @@ entities: rot: 3.141592653589793 rad pos: 6.5,24.5 parent: 2 +- proto: RandomAnimalSpawner + entities: + - uid: 10219 + components: + - type: Transform + pos: 8.5,10.5 + parent: 2 - proto: RandomAnomalySpawner entities: - uid: 11182 @@ -56670,7 +58222,9 @@ entities: pos: -41.5,19.5 parent: 2 - type: RandomSpawner - chance: 1 + prototypes: [] + rarePrototypes: [] + gameRules: [] - proto: RandomItem entities: - uid: 10321 @@ -56981,11 +58535,6 @@ entities: - type: Transform pos: 43.5,-3.5 parent: 2 - - uid: 10264 - components: - - type: Transform - pos: 43.5,-14.5 - parent: 2 - uid: 10294 components: - type: Transform @@ -57159,7 +58708,9 @@ entities: pos: 10.5,-18.5 parent: 2 - type: RandomSpawner - chance: 1 + prototypes: [] + rarePrototypes: [] + gameRules: [] - uid: 7104 components: - type: Transform @@ -57598,11 +59149,6 @@ entities: - type: Transform pos: 17.5,21.5 parent: 2 - - uid: 9022 - components: - - type: Transform - pos: 32.5,-3.5 - parent: 2 - uid: 10810 components: - type: Transform @@ -57649,7 +59195,6 @@ entities: - uid: 2616 components: - type: Transform - rot: 3.141592653589793 rad pos: 12.5,-29.5 parent: 2 - proto: ReinforcedGirder @@ -57719,41 +59264,6 @@ entities: - type: Transform pos: -61.5,13.5 parent: 2 - - uid: 9386 - components: - - type: Transform - pos: 60.5,-5.5 - parent: 2 - - uid: 9387 - components: - - type: Transform - pos: 60.5,-8.5 - parent: 2 - - uid: 9388 - components: - - type: Transform - pos: 60.5,-2.5 - parent: 2 - - uid: 9403 - components: - - type: Transform - pos: 55.5,-9.5 - parent: 2 - - uid: 9404 - components: - - type: Transform - pos: 55.5,-1.5 - parent: 2 - - uid: 9405 - components: - - type: Transform - pos: 55.5,-5.5 - parent: 2 - - uid: 9413 - components: - - type: Transform - pos: 55.5,-13.5 - parent: 2 - uid: 9465 components: - type: Transform @@ -57921,11 +59431,6 @@ entities: - type: Transform pos: 28.5,17.5 parent: 2 - - uid: 2019 - components: - - type: Transform - pos: 25.5,18.5 - parent: 2 - uid: 2021 components: - type: Transform @@ -57968,6 +59473,16 @@ entities: - type: Transform pos: 51.5,-0.5 parent: 2 + - uid: 12116 + components: + - type: Transform + pos: 57.5,-13.5 + parent: 2 + - uid: 12117 + components: + - type: Transform + pos: 57.5,-15.5 + parent: 2 - proto: ReinforcedWindow entities: - uid: 44 @@ -58340,35 +59855,20 @@ entities: - type: Transform pos: 18.5,20.5 parent: 2 - - uid: 1978 - components: - - type: Transform - pos: 18.5,19.5 - parent: 2 - - uid: 1982 - components: - - type: Transform - pos: 21.5,17.5 - parent: 2 - - uid: 1983 - components: - - type: Transform - pos: 20.5,17.5 - parent: 2 - - uid: 1984 + - uid: 1989 components: - type: Transform - pos: 19.5,17.5 + pos: 45.5,-13.5 parent: 2 - - uid: 1986 + - uid: 2027 components: - type: Transform - pos: 22.5,20.5 + pos: 22.5,17.5 parent: 2 - - uid: 1987 + - uid: 2064 components: - type: Transform - pos: 22.5,19.5 + pos: 23.5,17.5 parent: 2 - uid: 2093 components: @@ -58540,6 +60040,11 @@ entities: - type: Transform pos: -27.5,19.5 parent: 2 + - uid: 2945 + components: + - type: Transform + pos: 18.5,21.5 + parent: 2 - uid: 2965 components: - type: Transform @@ -58800,11 +60305,6 @@ entities: - type: Transform pos: -11.5,30.5 parent: 2 - - uid: 9277 - components: - - type: Transform - pos: -23.5,18.5 - parent: 2 - uid: 9384 components: - type: Transform @@ -58815,6 +60315,11 @@ entities: - type: Transform pos: 45.5,-17.5 parent: 2 + - uid: 9404 + components: + - type: Transform + pos: 24.5,17.5 + parent: 2 - uid: 9694 components: - type: Transform @@ -58870,6 +60375,16 @@ entities: - type: Transform pos: 20.5,-35.5 parent: 2 + - uid: 10156 + components: + - type: Transform + pos: 51.5,-15.5 + parent: 2 + - uid: 10198 + components: + - type: Transform + pos: 49.5,-14.5 + parent: 2 - uid: 10784 components: - type: Transform @@ -59035,6 +60550,12 @@ entities: - type: Transform pos: -56.5,17.5 parent: 2 + - uid: 12057 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 60.5,-14.5 + parent: 2 - proto: ResearchAndDevelopmentServer entities: - uid: 3293 @@ -59148,14 +60669,18 @@ entities: pos: -39.5,-21.5 parent: 2 - type: RandomSpawner - chance: 1 + prototypes: [] + rarePrototypes: [] + gameRules: [] - uid: 10208 components: - type: Transform pos: 5.5,-29.5 parent: 2 - type: RandomSpawner - chance: 1 + prototypes: [] + rarePrototypes: [] + gameRules: [] - uid: 11944 components: - type: Transform @@ -59201,11 +60726,6 @@ entities: - type: Transform pos: 32.5,-16.5 parent: 2 - - uid: 8708 - components: - - type: Transform - pos: 9.5,-20.5 - parent: 2 - uid: 8710 components: - type: Transform @@ -59251,6 +60771,11 @@ entities: - type: Transform pos: -15.5,24.5 parent: 2 + - uid: 12455 + components: + - type: Transform + pos: 3.5,-23.5 + parent: 2 - proto: Screwdriver entities: - uid: 3336 @@ -59328,6 +60853,11 @@ entities: - type: Transform pos: -55.358536,16.57394 parent: 2 + - uid: 12289 + components: + - type: Transform + pos: 62.5,-12.5 + parent: 2 - proto: SheetPlasma entities: - uid: 4058 @@ -59364,6 +60894,11 @@ entities: - type: Transform pos: 32.5,20.5 parent: 2 + - uid: 12307 + components: + - type: Transform + pos: 66.5,-14.5 + parent: 2 - proto: SheetPlastic entities: - uid: 668 @@ -59432,6 +60967,11 @@ entities: - type: Transform pos: -55.66062,16.615635 parent: 2 + - uid: 12288 + components: + - type: Transform + pos: 62.5,-16.5 + parent: 2 - proto: SheetSteel10 entities: - uid: 11779 @@ -59439,6 +60979,135 @@ entities: - type: Transform pos: -50.330425,-32.345634 parent: 2 +- proto: ShelfBar + entities: + - uid: 12136 + components: + - type: Transform + pos: 9.5,-20.5 + parent: 2 +- proto: ShelfChemistry + entities: + - uid: 10823 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,16.5 + parent: 2 +- proto: ShelfChemistryChemistrySecure + entities: + - uid: 6888 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,-17.5 + parent: 2 +- proto: ShelfGlass + entities: + - uid: 12424 + components: + - type: Transform + pos: -49.5,-18.5 + parent: 2 + - uid: 12463 + components: + - type: Transform + pos: -11.5,-7.5 + parent: 2 + - uid: 12464 + components: + - type: Transform + pos: -11.5,1.5 + parent: 2 + - uid: 12465 + components: + - type: Transform + pos: -39.5,7.5 + parent: 2 + - uid: 12467 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,18.5 + parent: 2 + - uid: 12468 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,23.5 + parent: 2 + - uid: 12469 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,15.5 + parent: 2 + - uid: 12470 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,2.5 + parent: 2 +- proto: ShelfKitchen + entities: + - uid: 9811 + components: + - type: Transform + pos: -0.5,-13.5 + parent: 2 +- proto: ShelfMetal + entities: + - uid: 8825 + components: + - type: Transform + pos: 17.5,-14.5 + parent: 2 + - uid: 12420 + components: + - type: Transform + pos: -26.5,14.5 + parent: 2 + - uid: 12466 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,24.5 + parent: 2 + - uid: 12471 + components: + - type: Transform + pos: -34.5,-32.5 + parent: 2 + - uid: 12474 + components: + - type: Transform + pos: -32.5,10.5 + parent: 2 +- proto: ShelfRGlass + entities: + - uid: 9277 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,-11.5 + parent: 2 + - uid: 12419 + components: + - type: Transform + pos: -20.5,-21.5 + parent: 2 + - uid: 12472 + components: + - type: Transform + pos: -23.5,18.5 + parent: 2 +- proto: ShelfRWood + entities: + - uid: 12475 + components: + - type: Transform + pos: -10.5,12.5 + parent: 2 - proto: ShotgunSafeSpawner entities: - uid: 11286 @@ -59540,6 +61209,25 @@ entities: - type: Transform pos: 33.5,10.5 parent: 2 +- proto: SignAi + entities: + - uid: 12303 + components: + - type: Transform + pos: 55.5,-13.5 + parent: 2 +- proto: SignAiUpload + entities: + - uid: 12302 + components: + - type: Transform + pos: 59.5,-20.5 + parent: 2 + - uid: 12304 + components: + - type: Transform + pos: 55.5,-15.5 + parent: 2 - proto: SignalButtonDirectional entities: - uid: 2038 @@ -59901,10 +61589,10 @@ entities: - type: Transform pos: 19.5,-14.5 parent: 2 - - uid: 530 + - uid: 12456 components: - type: Transform - pos: 23.5,-17.5 + pos: 23.5,-20.5 parent: 2 - proto: SignCloning entities: @@ -59922,14 +61610,6 @@ entities: parent: 2 - proto: SignCryogenicsMed entities: - - uid: 2064 - components: - - type: MetaData - desc: A sign indicating the chamber used for eliminating heat. - name: cold sign - - type: Transform - pos: 22.5,17.5 - parent: 2 - uid: 2484 components: - type: MetaData @@ -59938,6 +61618,14 @@ entities: - type: Transform pos: 23.5,-22.5 parent: 2 + - uid: 3257 + components: + - type: MetaData + desc: A sign indicating the cold loop. + name: ice sign + - type: Transform + pos: 21.5,17.5 + parent: 2 - uid: 11109 components: - type: Transform @@ -60222,6 +61910,14 @@ entities: rot: 3.141592653589793 rad pos: -14.5,20.5 parent: 2 +- proto: SignEVA + entities: + - uid: 11957 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 50.5,-16.5 + parent: 2 - proto: SignFlammableMed entities: - uid: 2059 @@ -60394,6 +62090,14 @@ entities: - type: Transform pos: -6.5,-37.5 parent: 2 +- proto: SignSpace + entities: + - uid: 11958 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 51.5,-13.5 + parent: 2 - proto: SignSurgery entities: - uid: 2523 @@ -60492,6 +62196,11 @@ entities: - type: Transform pos: -56.5,16.5 parent: 2 + - uid: 12134 + components: + - type: Transform + pos: 64.5,-15.5 + parent: 2 - proto: SodaDispenser entities: - uid: 321 @@ -60855,23 +62564,6 @@ entities: - type: Transform pos: -11.5,11.5 parent: 2 -- proto: SpawnMobDrone - entities: - - uid: 2254 - components: - - type: Transform - pos: 31.5,18.5 - parent: 2 - - uid: 2944 - components: - - type: Transform - pos: 31.5,19.5 - parent: 2 - - uid: 2945 - components: - - type: Transform - pos: 31.5,20.5 - parent: 2 - proto: SpawnMobFoxRenault entities: - uid: 4645 @@ -60934,9 +62626,9 @@ entities: - type: Transform pos: 20.5,-30.5 parent: 2 -- proto: SpawnMobSecDogLaika +- proto: SpawnMobSecLaikaOrShiva entities: - - uid: 1306 + - uid: 9424 components: - type: Transform pos: -37.5,6.5 @@ -61766,6 +63458,21 @@ entities: - type: Transform pos: 27.5,-9.5 parent: 2 +- proto: StationAiUploadComputer + entities: + - uid: 3481 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 61.5,-21.5 + parent: 2 +- proto: StationAnchor + entities: + - uid: 12155 + components: + - type: Transform + pos: 61.5,-8.5 + parent: 2 - proto: StationMap entities: - uid: 8709 @@ -61810,6 +63517,12 @@ entities: rot: -1.5707963267948966 rad pos: -11.5,25.5 parent: 2 + - uid: 12435 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 60.5,-15.5 + parent: 2 - proto: StationMapBroken entities: - uid: 3763 @@ -61819,10 +63532,10 @@ entities: parent: 2 - proto: StationRecordsComputerCircuitboard entities: - - uid: 9319 + - uid: 2011 components: - type: Transform - pos: 47.367294,-14.384516 + pos: 45.384624,-14.404378 parent: 2 - proto: SteelBench entities: @@ -62062,6 +63775,11 @@ entities: - type: Transform pos: -54.5,16.5 parent: 2 + - uid: 12148 + components: + - type: Transform + pos: 64.5,-13.5 + parent: 2 - proto: SubstationWallBasic entities: - uid: 11729 @@ -62092,6 +63810,11 @@ entities: parent: 2 - proto: SuitStorageEngi entities: + - uid: 577 + components: + - type: Transform + pos: 20.5,16.5 + parent: 2 - uid: 779 components: - type: Transform @@ -62107,15 +63830,10 @@ entities: - type: Transform pos: 44.5,10.5 parent: 2 - - uid: 3256 - components: - - type: Transform - pos: 22.5,16.5 - parent: 2 - - uid: 3257 + - uid: 9387 components: - type: Transform - pos: 25.5,16.5 + pos: 21.5,16.5 parent: 2 - proto: SuitStorageEVA entities: @@ -62149,6 +63867,11 @@ entities: - type: Transform pos: -16.5,-32.5 parent: 2 + - uid: 9202 + components: + - type: Transform + pos: 48.5,-14.5 + parent: 2 - proto: SuitStorageEVAAlternate entities: - uid: 11576 @@ -62227,6 +63950,17 @@ entities: - SurveillanceCameraCommand nameSet: True id: vault exterior dexter + - uid: 9391 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 44.5,-14.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: Boards - uid: 9438 components: - type: Transform @@ -62254,12 +63988,11 @@ entities: rot: -1.5707963267948966 rad pos: 45.5,-11.5 parent: 2 - - uid: 9441 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 47.5,-15.5 - parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: Conference - uid: 9450 components: - type: Transform @@ -62293,30 +64026,74 @@ entities: - SurveillanceCameraCommand nameSet: True id: EVA room - - uid: 9690 + - uid: 9736 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 38.5,2.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: gravity + - uid: 12430 components: - type: Transform rot: -1.5707963267948966 rad - pos: 31.5,19.5 + pos: 58.5,-17.5 parent: 2 - type: SurveillanceCamera setupAvailableNetworks: - SurveillanceCameraCommand nameSet: True - id: drones - - uid: 9736 + id: AI inside SW + - uid: 12431 components: - type: Transform - rot: 3.141592653589793 rad - pos: 38.5,2.5 + rot: -1.5707963267948966 rad + pos: 58.5,-11.5 parent: 2 - type: SurveillanceCamera setupAvailableNetworks: - SurveillanceCameraCommand nameSet: True - id: gravity + id: AI inside NW + - uid: 12432 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 64.5,-14.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: AI inside E + - uid: 12433 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 54.5,-15.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: AI external door - proto: SurveillanceCameraEngineering entities: + - uid: 9399 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,13.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: TEG sinister - uid: 9683 components: - type: Transform @@ -62339,17 +64116,6 @@ entities: - SurveillanceCameraEngineering nameSet: True id: front desk - - uid: 9685 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,16.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: TEG sinister - uid: 9686 components: - type: Transform @@ -62637,12 +64403,12 @@ entities: id: Hall - proto: SurveillanceCameraRouterCommand entities: - - uid: 4664 + - uid: 12375 components: - type: MetaData name: camera router (command) - type: Transform - pos: 44.5,-8.5 + pos: 59.5,-19.5 parent: 2 - proto: SurveillanceCameraRouterEngineering entities: @@ -62655,12 +64421,12 @@ entities: parent: 2 - proto: SurveillanceCameraRouterGeneral entities: - - uid: 3481 + - uid: 12374 components: - type: MetaData name: camera router (general) - type: Transform - pos: -1.5,-4.5 + pos: 58.5,-19.5 parent: 2 - proto: SurveillanceCameraRouterMedical entities: @@ -63183,16 +64949,6 @@ entities: - SurveillanceCameraSupply nameSet: True id: salvage exterior - - uid: 9633 - components: - - type: Transform - pos: 15.5,18.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSupply - nameSet: True - id: break room - uid: 9635 components: - type: Transform @@ -64096,6 +65852,12 @@ entities: - type: Transform pos: -18.5,-32.5 parent: 2 + - uid: 12295 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 60.5,-20.5 + parent: 2 - proto: TableReinforcedGlass entities: - uid: 10 @@ -64536,6 +66298,28 @@ entities: showEnts: False occludes: True ents: [] + - uid: 12027 + components: + - type: Transform + pos: 60.5,-19.5 + parent: 2 + - type: ContainerContainer + containers: + key_slots: !type:Container + showEnts: False + occludes: True + ents: + - 12118 + - 12120 + - 12132 + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] - proto: TintedWindow entities: - uid: 318 @@ -64964,28 +66748,22 @@ entities: - Left: Forward - Right: Reverse - Middle: Off - - uid: 11173 + - uid: 9410 components: - - type: MetaData - name: blast door lever - type: Transform pos: 29.5,16.5 parent: 2 - type: DeviceLinkSource linkedPorts: - 8034: - - Left: Open - - Right: Open - - Middle: Close - 2026: + 2086: - Left: Open - Right: Open - Middle: Close - 2025: + 1978: - Left: Open - Right: Open - Middle: Close - 10156: + 9395: - Left: Open - Right: Open - Middle: Close @@ -65375,6 +67153,14 @@ entities: - type: Transform pos: 26.5,3.5 parent: 2 +- proto: WallmountTelescreen + entities: + - uid: 12434 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 60.5,-13.5 + parent: 2 - proto: WallmountTelevision entities: - uid: 3732 @@ -65870,11 +67656,6 @@ entities: - type: Transform pos: 25.5,-3.5 parent: 2 - - uid: 773 - components: - - type: Transform - pos: 31.5,-2.5 - parent: 2 - uid: 783 components: - type: Transform @@ -65960,10 +67741,11 @@ entities: - type: Transform pos: -16.5,11.5 parent: 2 - - uid: 962 + - uid: 959 components: - type: Transform - pos: 22.5,21.5 + rot: 3.141592653589793 rad + pos: 31.5,20.5 parent: 2 - uid: 965 components: @@ -66980,6 +68762,11 @@ entities: - type: Transform pos: 51.5,-1.5 parent: 2 + - uid: 1888 + components: + - type: Transform + pos: 32.5,-3.5 + parent: 2 - uid: 1902 components: - type: Transform @@ -67020,70 +68807,61 @@ entities: - type: Transform pos: 32.5,11.5 parent: 2 - - uid: 1952 - components: - - type: Transform - pos: 18.5,21.5 - parent: 2 - uid: 1953 components: - type: Transform pos: 17.5,17.5 parent: 2 - - uid: 1974 - components: - - type: Transform - pos: 25.5,21.5 - parent: 2 - - uid: 1976 + - uid: 1957 components: - type: Transform - pos: 22.5,17.5 + rot: -1.5707963267948966 rad + pos: 43.5,-13.5 parent: 2 - - uid: 1989 + - uid: 1974 components: - type: Transform - pos: 22.5,18.5 + pos: 25.5,21.5 parent: 2 - uid: 1994 components: - type: Transform pos: 25.5,17.5 parent: 2 - - uid: 2009 + - uid: 2013 components: - type: Transform - pos: 30.5,21.5 + pos: 30.5,17.5 parent: 2 - - uid: 2010 + - uid: 2014 components: - type: Transform - pos: 30.5,20.5 + pos: 29.5,17.5 parent: 2 - - uid: 2011 + - uid: 2019 components: - type: Transform - pos: 30.5,18.5 + pos: 51.5,-16.5 parent: 2 - - uid: 2012 + - uid: 2024 components: - type: Transform - pos: 30.5,19.5 + pos: 32.5,14.5 parent: 2 - - uid: 2013 + - uid: 2039 components: - type: Transform - pos: 30.5,17.5 + pos: 20.5,17.5 parent: 2 - - uid: 2014 + - uid: 2041 components: - type: Transform - pos: 29.5,17.5 + pos: 20.5,18.5 parent: 2 - - uid: 2024 + - uid: 2044 components: - type: Transform - pos: 32.5,14.5 + pos: 21.5,17.5 parent: 2 - uid: 2089 components: @@ -67405,11 +69183,6 @@ entities: - type: Transform pos: 41.5,-11.5 parent: 2 - - uid: 2280 - components: - - type: Transform - pos: 44.5,-14.5 - parent: 2 - uid: 2281 components: - type: Transform @@ -67455,11 +69228,6 @@ entities: - type: Transform pos: 50.5,-13.5 parent: 2 - - uid: 2307 - components: - - type: Transform - pos: 45.5,-13.5 - parent: 2 - uid: 2311 components: - type: Transform @@ -69145,6 +70913,16 @@ entities: - type: Transform pos: 18.5,-35.5 parent: 2 + - uid: 4635 + components: + - type: Transform + pos: 25.5,18.5 + parent: 2 + - uid: 4664 + components: + - type: Transform + pos: 59.5,-20.5 + parent: 2 - uid: 4742 components: - type: Transform @@ -69191,6 +70969,12 @@ entities: rot: 1.5707963267948966 rad pos: -37.5,-34.5 parent: 2 + - uid: 6855 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5,-16.5 + parent: 2 - uid: 6865 components: - type: Transform @@ -69386,6 +71170,11 @@ entities: - type: Transform pos: -21.5,25.5 parent: 2 + - uid: 8708 + components: + - type: Transform + pos: 60.5,-21.5 + parent: 2 - uid: 8764 components: - type: Transform @@ -69426,6 +71215,11 @@ entities: - type: Transform pos: -47.5,-23.5 parent: 2 + - uid: 8977 + components: + - type: Transform + pos: 20.5,19.5 + parent: 2 - uid: 9065 components: - type: Transform @@ -69441,6 +71235,11 @@ entities: - type: Transform pos: -15.5,24.5 parent: 2 + - uid: 9301 + components: + - type: Transform + pos: 25.5,22.5 + parent: 2 - uid: 9307 components: - type: Transform @@ -69469,12 +71268,8 @@ entities: - uid: 9314 components: - type: Transform - pos: 48.5,-15.5 - parent: 2 - - uid: 9315 - components: - - type: Transform - pos: 48.5,-14.5 + rot: 3.141592653589793 rad + pos: 31.5,18.5 parent: 2 - uid: 9336 components: @@ -69496,6 +71291,43 @@ entities: - type: Transform pos: -27.5,22.5 parent: 2 + - uid: 9390 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 50.5,-16.5 + parent: 2 + - uid: 9394 + components: + - type: Transform + pos: 18.5,19.5 + parent: 2 + - uid: 9403 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,19.5 + parent: 2 + - uid: 9541 + components: + - type: Transform + pos: 31.5,22.5 + parent: 2 + - uid: 9542 + components: + - type: Transform + pos: 30.5,22.5 + parent: 2 + - uid: 9611 + components: + - type: Transform + pos: 26.5,22.5 + parent: 2 + - uid: 9690 + components: + - type: Transform + pos: 51.5,2.5 + parent: 2 - uid: 9699 components: - type: Transform @@ -69526,6 +71358,12 @@ entities: - type: Transform pos: 41.5,-40.5 parent: 2 + - uid: 9843 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 51.5,-13.5 + parent: 2 - uid: 10089 components: - type: Transform @@ -69541,6 +71379,11 @@ entities: - type: Transform pos: -17.5,24.5 parent: 2 + - uid: 10199 + components: + - type: Transform + pos: 56.5,-12.5 + parent: 2 - uid: 10226 components: - type: Transform @@ -69551,6 +71394,11 @@ entities: - type: Transform pos: -32.5,25.5 parent: 2 + - uid: 10264 + components: + - type: Transform + pos: 63.5,-20.5 + parent: 2 - uid: 10461 components: - type: Transform @@ -69824,6 +71672,523 @@ entities: - type: Transform pos: -59.5,16.5 parent: 2 + - uid: 11959 + components: + - type: Transform + pos: 55.5,-12.5 + parent: 2 + - uid: 11961 + components: + - type: Transform + pos: 66.5,-11.5 + parent: 2 + - uid: 11974 + components: + - type: Transform + pos: 57.5,-11.5 + parent: 2 + - uid: 11975 + components: + - type: Transform + pos: 57.5,-10.5 + parent: 2 + - uid: 11976 + components: + - type: Transform + pos: 57.5,-9.5 + parent: 2 + - uid: 11977 + components: + - type: Transform + pos: 57.5,-8.5 + parent: 2 + - uid: 11978 + components: + - type: Transform + pos: 58.5,-8.5 + parent: 2 + - uid: 11979 + components: + - type: Transform + pos: 59.5,-7.5 + parent: 2 + - uid: 11980 + components: + - type: Transform + pos: 59.5,-8.5 + parent: 2 + - uid: 11982 + components: + - type: Transform + pos: 60.5,-6.5 + parent: 2 + - uid: 11983 + components: + - type: Transform + pos: 61.5,-6.5 + parent: 2 + - uid: 11984 + components: + - type: Transform + pos: 62.5,-6.5 + parent: 2 + - uid: 11986 + components: + - type: Transform + pos: 63.5,-7.5 + parent: 2 + - uid: 11987 + components: + - type: Transform + pos: 63.5,-8.5 + parent: 2 + - uid: 11988 + components: + - type: Transform + pos: 64.5,-8.5 + parent: 2 + - uid: 11989 + components: + - type: Transform + pos: 65.5,-8.5 + parent: 2 + - uid: 11990 + components: + - type: Transform + pos: 65.5,-9.5 + parent: 2 + - uid: 11991 + components: + - type: Transform + pos: 65.5,-10.5 + parent: 2 + - uid: 11992 + components: + - type: Transform + pos: 65.5,-11.5 + parent: 2 + - uid: 11993 + components: + - type: Transform + pos: 66.5,-17.5 + parent: 2 + - uid: 11994 + components: + - type: Transform + pos: 66.5,-12.5 + parent: 2 + - uid: 11995 + components: + - type: Transform + pos: 67.5,-12.5 + parent: 2 + - uid: 11996 + components: + - type: Transform + pos: 67.5,-13.5 + parent: 2 + - uid: 11997 + components: + - type: Transform + pos: 67.5,-14.5 + parent: 2 + - uid: 11998 + components: + - type: Transform + pos: 67.5,-15.5 + parent: 2 + - uid: 11999 + components: + - type: Transform + pos: 67.5,-16.5 + parent: 2 + - uid: 12000 + components: + - type: Transform + pos: 66.5,-16.5 + parent: 2 + - uid: 12001 + components: + - type: Transform + pos: 56.5,-17.5 + parent: 2 + - uid: 12002 + components: + - type: Transform + pos: 65.5,-17.5 + parent: 2 + - uid: 12003 + components: + - type: Transform + pos: 65.5,-18.5 + parent: 2 + - uid: 12004 + components: + - type: Transform + pos: 65.5,-20.5 + parent: 2 + - uid: 12005 + components: + - type: Transform + pos: 65.5,-19.5 + parent: 2 + - uid: 12006 + components: + - type: Transform + pos: 64.5,-20.5 + parent: 2 + - uid: 12007 + components: + - type: Transform + pos: 62.5,-13.5 + parent: 2 + - uid: 12008 + components: + - type: Transform + pos: 63.5,-21.5 + parent: 2 + - uid: 12010 + components: + - type: Transform + pos: 62.5,-22.5 + parent: 2 + - uid: 12011 + components: + - type: Transform + pos: 61.5,-22.5 + parent: 2 + - uid: 12012 + components: + - type: Transform + pos: 60.5,-22.5 + parent: 2 + - uid: 12014 + components: + - type: Transform + pos: 59.5,-21.5 + parent: 2 + - uid: 12016 + components: + - type: Transform + pos: 58.5,-20.5 + parent: 2 + - uid: 12017 + components: + - type: Transform + pos: 57.5,-20.5 + parent: 2 + - uid: 12018 + components: + - type: Transform + pos: 57.5,-19.5 + parent: 2 + - uid: 12019 + components: + - type: Transform + pos: 57.5,-18.5 + parent: 2 + - uid: 12020 + components: + - type: Transform + pos: 57.5,-17.5 + parent: 2 + - uid: 12021 + components: + - type: Transform + pos: 56.5,-11.5 + parent: 2 + - uid: 12023 + components: + - type: Transform + pos: 55.5,-16.5 + parent: 2 + - uid: 12024 + components: + - type: Transform + pos: 63.5,-15.5 + parent: 2 + - uid: 12025 + components: + - type: Transform + pos: 63.5,-14.5 + parent: 2 + - uid: 12026 + components: + - type: Transform + pos: 63.5,-13.5 + parent: 2 + - uid: 12028 + components: + - type: Transform + pos: 62.5,-15.5 + parent: 2 + - uid: 12029 + components: + - type: Transform + pos: 60.5,-13.5 + parent: 2 + - uid: 12031 + components: + - type: Transform + pos: 60.5,-15.5 + parent: 2 + - uid: 12059 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 57.5,-16.5 + parent: 2 + - uid: 12061 + components: + - type: Transform + pos: 68.5,-12.5 + parent: 2 + - uid: 12062 + components: + - type: Transform + pos: 68.5,-13.5 + parent: 2 + - uid: 12063 + components: + - type: Transform + pos: 68.5,-15.5 + parent: 2 + - uid: 12064 + components: + - type: Transform + pos: 68.5,-16.5 + parent: 2 + - uid: 12066 + components: + - type: Transform + pos: 68.5,-14.5 + parent: 2 + - uid: 12067 + components: + - type: Transform + pos: 67.5,-17.5 + parent: 2 + - uid: 12068 + components: + - type: Transform + pos: 67.5,-11.5 + parent: 2 + - uid: 12069 + components: + - type: Transform + pos: 66.5,-10.5 + parent: 2 + - uid: 12070 + components: + - type: Transform + pos: 66.5,-9.5 + parent: 2 + - uid: 12071 + components: + - type: Transform + pos: 66.5,-8.5 + parent: 2 + - uid: 12073 + components: + - type: Transform + pos: 65.5,-7.5 + parent: 2 + - uid: 12074 + components: + - type: Transform + pos: 64.5,-7.5 + parent: 2 + - uid: 12075 + components: + - type: Transform + pos: 64.5,-6.5 + parent: 2 + - uid: 12076 + components: + - type: Transform + pos: 63.5,-6.5 + parent: 2 + - uid: 12077 + components: + - type: Transform + pos: 63.5,-5.5 + parent: 2 + - uid: 12078 + components: + - type: Transform + pos: 61.5,-5.5 + parent: 2 + - uid: 12079 + components: + - type: Transform + pos: 60.5,-5.5 + parent: 2 + - uid: 12080 + components: + - type: Transform + pos: 59.5,-5.5 + parent: 2 + - uid: 12081 + components: + - type: Transform + pos: 62.5,-5.5 + parent: 2 + - uid: 12082 + components: + - type: Transform + pos: 59.5,-6.5 + parent: 2 + - uid: 12083 + components: + - type: Transform + pos: 58.5,-6.5 + parent: 2 + - uid: 12084 + components: + - type: Transform + pos: 58.5,-7.5 + parent: 2 + - uid: 12085 + components: + - type: Transform + pos: 57.5,-7.5 + parent: 2 + - uid: 12086 + components: + - type: Transform + pos: 56.5,-8.5 + parent: 2 + - uid: 12087 + components: + - type: Transform + pos: 56.5,-9.5 + parent: 2 + - uid: 12088 + components: + - type: Transform + pos: 56.5,-10.5 + parent: 2 + - uid: 12089 + components: + - type: Transform + pos: 56.5,-18.5 + parent: 2 + - uid: 12090 + components: + - type: Transform + pos: 56.5,-20.5 + parent: 2 + - uid: 12092 + components: + - type: Transform + pos: 56.5,-19.5 + parent: 2 + - uid: 12093 + components: + - type: Transform + pos: 57.5,-21.5 + parent: 2 + - uid: 12094 + components: + - type: Transform + pos: 58.5,-21.5 + parent: 2 + - uid: 12095 + components: + - type: Transform + pos: 58.5,-22.5 + parent: 2 + - uid: 12096 + components: + - type: Transform + pos: 59.5,-22.5 + parent: 2 + - uid: 12097 + components: + - type: Transform + pos: 59.5,-23.5 + parent: 2 + - uid: 12098 + components: + - type: Transform + pos: 60.5,-23.5 + parent: 2 + - uid: 12099 + components: + - type: Transform + pos: 61.5,-23.5 + parent: 2 + - uid: 12100 + components: + - type: Transform + pos: 62.5,-23.5 + parent: 2 + - uid: 12101 + components: + - type: Transform + pos: 63.5,-23.5 + parent: 2 + - uid: 12102 + components: + - type: Transform + pos: 63.5,-22.5 + parent: 2 + - uid: 12103 + components: + - type: Transform + pos: 64.5,-22.5 + parent: 2 + - uid: 12104 + components: + - type: Transform + pos: 64.5,-21.5 + parent: 2 + - uid: 12105 + components: + - type: Transform + pos: 65.5,-21.5 + parent: 2 + - uid: 12107 + components: + - type: Transform + pos: 66.5,-19.5 + parent: 2 + - uid: 12108 + components: + - type: Transform + pos: 66.5,-18.5 + parent: 2 + - uid: 12109 + components: + - type: Transform + pos: 66.5,-20.5 + parent: 2 + - uid: 12113 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 57.5,-12.5 + parent: 2 + - uid: 12114 + components: + - type: Transform + pos: 55.5,-15.5 + parent: 2 + - uid: 12115 + components: + - type: Transform + pos: 55.5,-13.5 + parent: 2 + - uid: 12119 + components: + - type: Transform + pos: 56.5,-16.5 + parent: 2 + - uid: 12291 + components: + - type: Transform + pos: 62.5,-21.5 + parent: 2 - proto: WallReinforcedDiagonal entities: - uid: 9887 @@ -69849,6 +72214,52 @@ entities: rot: 1.5707963267948966 rad pos: -2.5,-7.5 parent: 2 + - uid: 12060 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 68.5,-11.5 + parent: 2 + - uid: 12065 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 68.5,-17.5 + parent: 2 + - uid: 12072 + components: + - type: Transform + pos: 56.5,-7.5 + parent: 2 + - uid: 12091 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 56.5,-21.5 + parent: 2 + - uid: 12106 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 66.5,-21.5 + parent: 2 + - uid: 12110 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 55.5,-17.5 + parent: 2 + - uid: 12111 + components: + - type: Transform + pos: 55.5,-11.5 + parent: 2 + - uid: 12112 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 66.5,-7.5 + parent: 2 - proto: WallSolid entities: - uid: 13 @@ -72864,6 +75275,16 @@ entities: - type: Transform pos: 32.5,-39.5 parent: 2 + - uid: 12421 + components: + - type: Transform + pos: -49.5,-18.5 + parent: 2 + - uid: 12422 + components: + - type: Transform + pos: -23.5,18.5 + parent: 2 - proto: WallSolidDiagonal entities: - uid: 350 @@ -72889,12 +75310,6 @@ entities: rot: -1.5707963267948966 rad pos: -11.5,-25.5 parent: 2 - - uid: 1933 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 51.5,2.5 - parent: 2 - uid: 2431 components: - type: Transform @@ -72907,12 +75322,6 @@ entities: rot: 1.5707963267948966 rad pos: -24.5,-3.5 parent: 2 - - uid: 4635 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 51.5,-13.5 - parent: 2 - proto: WallSolidRust entities: - uid: 11696 @@ -73276,6 +75685,28 @@ entities: - type: Transform pos: -27.556564,7.2677417 parent: 2 +- proto: WeaponTurretSyndicateBroken + entities: + - uid: 12315 + components: + - type: Transform + pos: 64.5,-19.5 + parent: 2 + - uid: 12316 + components: + - type: Transform + pos: 64.5,-9.5 + parent: 2 + - uid: 12317 + components: + - type: Transform + pos: 59.5,-11.5 + parent: 2 + - uid: 12318 + components: + - type: Transform + pos: 59.5,-17.5 + parent: 2 - proto: WeldingFuelTankFull entities: - uid: 10202 @@ -73455,6 +75886,19 @@ entities: - type: Transform pos: 21.5,-21.5 parent: 2 +- proto: WindoorSecureCommandLocked + entities: + - uid: 12309 + components: + - type: Transform + pos: 61.5,-15.5 + parent: 2 + - uid: 12310 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 61.5,-13.5 + parent: 2 - proto: WindoorSecureEngineeringLocked entities: - uid: 767 @@ -73529,6 +75973,12 @@ entities: - type: Transform pos: -29.5,-16.5 parent: 2 + - uid: 12294 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 61.5,-20.5 + parent: 2 - proto: WindoorSecureSecurityLocked entities: - uid: 356 @@ -74056,11 +76506,6 @@ entities: - type: Transform pos: -50.5,-18.5 parent: 2 - - uid: 8825 - components: - - type: Transform - pos: -49.5,-18.5 - parent: 2 - uid: 8855 components: - type: Transform @@ -74328,6 +76773,641 @@ entities: - type: Transform pos: 22.5,-21.5 parent: 2 + - uid: 12135 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 62.5,-2.5 + parent: 2 + - uid: 12202 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 63.5,-2.5 + parent: 2 + - uid: 12203 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 61.5,-2.5 + parent: 2 + - uid: 12204 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 65.5,-2.5 + parent: 2 + - uid: 12205 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 64.5,-2.5 + parent: 2 + - uid: 12206 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 67.5,-2.5 + parent: 2 + - uid: 12207 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 69.5,-2.5 + parent: 2 + - uid: 12208 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 68.5,-2.5 + parent: 2 + - uid: 12209 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 66.5,-2.5 + parent: 2 + - uid: 12210 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 71.5,-2.5 + parent: 2 + - uid: 12211 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 72.5,-2.5 + parent: 2 + - uid: 12212 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 70.5,-2.5 + parent: 2 + - uid: 12213 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 72.5,-2.5 + parent: 2 + - uid: 12214 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 72.5,-3.5 + parent: 2 + - uid: 12215 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 72.5,-4.5 + parent: 2 + - uid: 12216 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 72.5,-5.5 + parent: 2 + - uid: 12217 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 72.5,-6.5 + parent: 2 + - uid: 12218 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 72.5,-7.5 + parent: 2 + - uid: 12219 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 72.5,-8.5 + parent: 2 + - uid: 12220 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 72.5,-9.5 + parent: 2 + - uid: 12221 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 72.5,-11.5 + parent: 2 + - uid: 12222 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 72.5,-12.5 + parent: 2 + - uid: 12223 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 72.5,-10.5 + parent: 2 + - uid: 12224 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 72.5,-13.5 + parent: 2 + - uid: 12225 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 72.5,-14.5 + parent: 2 + - uid: 12226 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 72.5,-15.5 + parent: 2 + - uid: 12227 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 72.5,-16.5 + parent: 2 + - uid: 12228 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 72.5,-17.5 + parent: 2 + - uid: 12229 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 72.5,-18.5 + parent: 2 + - uid: 12230 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 72.5,-19.5 + parent: 2 + - uid: 12231 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 72.5,-20.5 + parent: 2 + - uid: 12232 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 72.5,-21.5 + parent: 2 + - uid: 12233 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 72.5,-22.5 + parent: 2 + - uid: 12234 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 72.5,-23.5 + parent: 2 + - uid: 12235 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 72.5,-24.5 + parent: 2 + - uid: 12236 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 72.5,-25.5 + parent: 2 + - uid: 12237 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 72.5,-26.5 + parent: 2 + - uid: 12238 + components: + - type: Transform + pos: 71.5,-26.5 + parent: 2 + - uid: 12239 + components: + - type: Transform + pos: 70.5,-26.5 + parent: 2 + - uid: 12240 + components: + - type: Transform + pos: 69.5,-26.5 + parent: 2 + - uid: 12241 + components: + - type: Transform + pos: 68.5,-26.5 + parent: 2 + - uid: 12242 + components: + - type: Transform + pos: 72.5,-26.5 + parent: 2 + - uid: 12243 + components: + - type: Transform + pos: 66.5,-26.5 + parent: 2 + - uid: 12244 + components: + - type: Transform + pos: 65.5,-26.5 + parent: 2 + - uid: 12245 + components: + - type: Transform + pos: 67.5,-26.5 + parent: 2 + - uid: 12246 + components: + - type: Transform + pos: 63.5,-26.5 + parent: 2 + - uid: 12247 + components: + - type: Transform + pos: 64.5,-26.5 + parent: 2 + - uid: 12248 + components: + - type: Transform + pos: 62.5,-26.5 + parent: 2 + - uid: 12249 + components: + - type: Transform + pos: 61.5,-26.5 + parent: 2 + - uid: 12250 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 62.5,-25.5 + parent: 2 + - uid: 12251 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 64.5,-25.5 + parent: 2 + - uid: 12252 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 65.5,-25.5 + parent: 2 + - uid: 12253 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 66.5,-25.5 + parent: 2 + - uid: 12254 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 67.5,-25.5 + parent: 2 + - uid: 12255 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 68.5,-25.5 + parent: 2 + - uid: 12256 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 63.5,-25.5 + parent: 2 + - uid: 12257 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 70.5,-25.5 + parent: 2 + - uid: 12258 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 69.5,-25.5 + parent: 2 + - uid: 12259 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 71.5,-24.5 + parent: 2 + - uid: 12260 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 71.5,-22.5 + parent: 2 + - uid: 12261 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 71.5,-21.5 + parent: 2 + - uid: 12262 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 71.5,-23.5 + parent: 2 + - uid: 12263 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 71.5,-18.5 + parent: 2 + - uid: 12264 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 71.5,-20.5 + parent: 2 + - uid: 12265 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 71.5,-16.5 + parent: 2 + - uid: 12266 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 71.5,-17.5 + parent: 2 + - uid: 12267 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 71.5,-15.5 + parent: 2 + - uid: 12268 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 71.5,-13.5 + parent: 2 + - uid: 12269 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 71.5,-12.5 + parent: 2 + - uid: 12270 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 71.5,-11.5 + parent: 2 + - uid: 12271 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 71.5,-10.5 + parent: 2 + - uid: 12272 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 71.5,-8.5 + parent: 2 + - uid: 12273 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 71.5,-7.5 + parent: 2 + - uid: 12274 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 71.5,-6.5 + parent: 2 + - uid: 12275 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 71.5,-5.5 + parent: 2 + - uid: 12276 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 71.5,-4.5 + parent: 2 + - uid: 12277 + components: + - type: Transform + pos: 70.5,-3.5 + parent: 2 + - uid: 12278 + components: + - type: Transform + pos: 68.5,-3.5 + parent: 2 + - uid: 12279 + components: + - type: Transform + pos: 67.5,-3.5 + parent: 2 + - uid: 12280 + components: + - type: Transform + pos: 69.5,-3.5 + parent: 2 + - uid: 12281 + components: + - type: Transform + pos: 66.5,-3.5 + parent: 2 + - uid: 12282 + components: + - type: Transform + pos: 65.5,-3.5 + parent: 2 + - uid: 12283 + components: + - type: Transform + pos: 64.5,-3.5 + parent: 2 + - uid: 12284 + components: + - type: Transform + pos: 62.5,-3.5 + parent: 2 + - uid: 12285 + components: + - type: Transform + pos: 63.5,-3.5 + parent: 2 + - uid: 12292 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 60.5,-20.5 + parent: 2 + - uid: 12293 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 62.5,-20.5 + parent: 2 + - uid: 12346 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 60.5,-2.5 + parent: 2 + - uid: 12347 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 58.5,-2.5 + parent: 2 + - uid: 12348 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 57.5,-2.5 + parent: 2 + - uid: 12349 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 59.5,-2.5 + parent: 2 + - uid: 12350 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 57.5,-2.5 + parent: 2 + - uid: 12351 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 57.5,-3.5 + parent: 2 + - uid: 12352 + components: + - type: Transform + pos: 58.5,-3.5 + parent: 2 + - uid: 12353 + components: + - type: Transform + pos: 59.5,-3.5 + parent: 2 + - uid: 12354 + components: + - type: Transform + pos: 60.5,-3.5 + parent: 2 + - uid: 12355 + components: + - type: Transform + pos: 60.5,-26.5 + parent: 2 + - uid: 12356 + components: + - type: Transform + pos: 59.5,-26.5 + parent: 2 + - uid: 12357 + components: + - type: Transform + pos: 58.5,-26.5 + parent: 2 + - uid: 12358 + components: + - type: Transform + pos: 57.5,-26.5 + parent: 2 + - uid: 12359 + components: + - type: Transform + pos: 56.5,-26.5 + parent: 2 + - uid: 12360 + components: + - type: Transform + pos: 55.5,-26.5 + parent: 2 + - uid: 12361 + components: + - type: Transform + pos: 54.5,-26.5 + parent: 2 + - uid: 12362 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 54.5,-26.5 + parent: 2 + - uid: 12363 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 54.5,-25.5 + parent: 2 + - uid: 12364 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 55.5,-25.5 + parent: 2 + - uid: 12365 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 56.5,-25.5 + parent: 2 + - uid: 12366 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 57.5,-25.5 + parent: 2 + - uid: 12367 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 58.5,-25.5 + parent: 2 + - uid: 12368 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 59.5,-25.5 + parent: 2 + - uid: 12369 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 60.5,-25.5 + parent: 2 - proto: Wirecutter entities: - uid: 3337 diff --git a/Resources/Maps/chibi.yml b/Resources/Maps/chibi.yml index ed19b453524..af9f8850244 100644 --- a/Resources/Maps/chibi.yml +++ b/Resources/Maps/chibi.yml @@ -53,7 +53,7 @@ entities: chunks: 0,0: ind: 0,0 - tiles: YAAAAAAAAQAAAAAAPQAAAAAAPQAAAAAAAQAAAAAAPQAAAAAAAQAAAAACPQAAAAAAgQAAAAAAgQAAAAAADAAAAAABAQAAAAABAQAAAAABAgAAAAAAAgAAAAACCQAAAAAAYAAAAAACAQAAAAACCQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAgAAAAACAgAAAAAAAgAAAAADAgAAAAACgQAAAAAAYAAAAAADYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAACQAAAAAACQAAAAAAgQAAAAAADAAAAAADgQAAAAAACQAAAAAACQAAAAAAAgAAAAABAgAAAAAAgQAAAAAAAQAAAAADAQAAAAADYAAAAAABYAAAAAADYAAAAAABYAAAAAADYAAAAAAAYAAAAAAAYAAAAAADYAAAAAAAYAAAAAAAYAAAAAADYAAAAAADYAAAAAACYAAAAAADYAAAAAADYAAAAAABYAAAAAABYAAAAAADYAAAAAACYAAAAAACYAAAAAAAYAAAAAAAYAAAAAABYAAAAAADYAAAAAAAYAAAAAAAYAAAAAADYAAAAAACYAAAAAACYAAAAAADYAAAAAACDwAAAAACDwAAAAAADwAAAAACYAAAAAADgQAAAAAAYAAAAAACYAAAAAACYAAAAAAAYAAAAAABYAAAAAABYAAAAAABYAAAAAADYAAAAAABYAAAAAADgQAAAAAAgQAAAAAADwAAAAADDwAAAAACgQAAAAAADAAAAAABgQAAAAAAgQAAAAAAYAAAAAABYAAAAAABgQAAAAAAgQAAAAAAYAAAAAABCQAAAAAAgQAAAAAADAAAAAADgQAAAAAAYAAAAAACAQAAAAACDwAAAAADgQAAAAAAgQAAAAAADAAAAAACgQAAAAAAYAAAAAABYAAAAAADCQAAAAAAYAAAAAAAYAAAAAACAQAAAAABgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAADwAAAAABAQAAAAACDAAAAAAAgQAAAAAADAAAAAABgQAAAAAAAQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAAQAAAAAADAAAAAABgQAAAAAADAAAAAABYAAAAAABDwAAAAAADwAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAQAAAAAAYAAAAAACCQAAAAAAAQAAAAABAQAAAAAAAQAAAAABgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAADYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAADAAAAAAADAAAAAABgQAAAAAAgQAAAAAAYAAAAAADAQAAAAABYAAAAAADDAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAACQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAADAAAAAAAgQAAAAAAYAAAAAADAQAAAAABYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAADAAAAAABgQAAAAAACQAAAAAAgQAAAAAACgAAAAAACgAAAAAACgAAAAAAgQAAAAAAYAAAAAACYAAAAAADYAAAAAACgQAAAAAADAAAAAABgQAAAAAAgQAAAAAABgAAAAAABgAAAAABBgAAAAADCQAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAAYAAAAAADAQAAAAAAYAAAAAADBgAAAAABBgAAAAACBgAAAAABBgAAAAAABgAAAAAABgAAAAADBgAAAAACBgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACQAAAAAAYAAAAAACAQAAAAACYAAAAAACBgAAAAAABgAAAAABBgAAAAAABgAAAAAABgAAAAABBgAAAAADCQAAAAAACQAAAAAA + tiles: YAAAAAAAAQAAAAAAPQAAAAAAPQAAAAAAAQAAAAAAPQAAAAAAAQAAAAACPQAAAAAAgQAAAAAAgQAAAAAADAAAAAABAQAAAAABAQAAAAABAgAAAAAAAgAAAAACgQAAAAAAYAAAAAACAQAAAAACCQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAgAAAAACAgAAAAAAAgAAAAADAgAAAAACgQAAAAAAYAAAAAADYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAACQAAAAAACQAAAAAAgQAAAAAADAAAAAADgQAAAAAACQAAAAAACQAAAAAAAgAAAAABAgAAAAAAgQAAAAAAAQAAAAADAQAAAAADYAAAAAABYAAAAAADYAAAAAABYAAAAAADYAAAAAAAYAAAAAAAYAAAAAADYAAAAAAAYAAAAAAAYAAAAAADYAAAAAADYAAAAAACYAAAAAADYAAAAAADYAAAAAABYAAAAAABYAAAAAADYAAAAAACYAAAAAACYAAAAAAAYAAAAAAAYAAAAAABYAAAAAADYAAAAAAAYAAAAAAAYAAAAAADYAAAAAACYAAAAAACYAAAAAADYAAAAAACDwAAAAACDwAAAAAADwAAAAACYAAAAAADgQAAAAAAYAAAAAACYAAAAAACYAAAAAAAYAAAAAABYAAAAAABYAAAAAABYAAAAAADYAAAAAABYAAAAAADgQAAAAAAgQAAAAAADwAAAAADDwAAAAACgQAAAAAADAAAAAABgQAAAAAAgQAAAAAAYAAAAAABYAAAAAABgQAAAAAAgQAAAAAAYAAAAAABCQAAAAAAgQAAAAAADAAAAAADgQAAAAAAYAAAAAACAQAAAAACDwAAAAADgQAAAAAAgQAAAAAADAAAAAACgQAAAAAAYAAAAAABYAAAAAADCQAAAAAAYAAAAAAAYAAAAAACAQAAAAABgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAADwAAAAABAQAAAAACDAAAAAAAgQAAAAAADAAAAAABgQAAAAAAAQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAAQAAAAAADAAAAAABgQAAAAAADAAAAAABYAAAAAABDwAAAAAADwAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAQAAAAAAYAAAAAACCQAAAAAAAQAAAAABAQAAAAAAAQAAAAABgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAADYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAADAAAAAAADAAAAAABgQAAAAAAgQAAAAAAYAAAAAADAQAAAAABYAAAAAADDAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAACQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAADAAAAAAAgQAAAAAAYAAAAAADAQAAAAABYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAADAAAAAABgQAAAAAACQAAAAAAgQAAAAAACgAAAAAACgAAAAAACgAAAAAAgQAAAAAAYAAAAAACYAAAAAADYAAAAAACgQAAAAAADAAAAAABgQAAAAAAgQAAAAAABgAAAAAABgAAAAABBgAAAAADCQAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAAYAAAAAADAQAAAAAAYAAAAAADBgAAAAABBgAAAAACBgAAAAABBgAAAAAABgAAAAAABgAAAAADBgAAAAACBgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACQAAAAAAYAAAAAACAQAAAAACYAAAAAACBgAAAAAABgAAAAABBgAAAAAABgAAAAAABgAAAAABBgAAAAADCQAAAAAACQAAAAAA version: 6 -1,0: ind: -1,0 @@ -61,7 +61,7 @@ entities: version: 6 0,-1: ind: 0,-1 - tiles: gQAAAAAAgQAAAAAACQAAAAAABgAAAAACBgAAAAABBgAAAAABBgAAAAABBgAAAAAAgQAAAAAAYAAAAAADYAAAAAACYAAAAAAAYAAAAAABYAAAAAABYAAAAAADYAAAAAABgQAAAAAAgQAAAAAABgAAAAAABgAAAAABgQAAAAAABgAAAAADAQAAAAADBgAAAAABgQAAAAAAYAAAAAACYAAAAAACYAAAAAABYAAAAAABYAAAAAABYAAAAAABYAAAAAACgQAAAAAAgQAAAAAACQAAAAAAgQAAAAAAgQAAAAAABgAAAAABAQAAAAADBgAAAAADgQAAAAAAYAAAAAADYAAAAAABYAAAAAADYAAAAAADgQAAAAAAYAAAAAABYAAAAAACCQAAAAAACQAAAAAAgQAAAAAABgAAAAACBgAAAAAABgAAAAACBgAAAAABBgAAAAACgQAAAAAAYAAAAAADYAAAAAABYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAABgAAAAAABgAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAAQAAAAAAYAAAAAAABgAAAAACBgAAAAAAAQAAAAAABgAAAAAABwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABAQAAAAABYAAAAAAABgAAAAABBgAAAAACBgAAAAACAQAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAADAAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAADYAAAAAADCQAAAAAABgAAAAABAQAAAAADBgAAAAAABgAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAgAAAAADAgAAAAADAgAAAAADgQAAAAAAYAAAAAACAQAAAAAAYAAAAAAABgAAAAACBgAAAAADBgAAAAAAAQAAAAACBgAAAAABDAAAAAADgQAAAAAAgQAAAAAAAgAAAAACAgAAAAABAgAAAAACAgAAAAACBgAAAAAAYAAAAAABAQAAAAACYAAAAAABgQAAAAAABgAAAAABBgAAAAAABgAAAAABBgAAAAADgQAAAAAAgQAAAAAAgQAAAAAAAgAAAAABAgAAAAADAgAAAAACAQAAAAABgQAAAAAAYAAAAAAAYAAAAAABYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAgAAAAABAgAAAAADAgAAAAAAAQAAAAABgQAAAAAAYAAAAAABAQAAAAAAYAAAAAABDAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAgAAAAADAgAAAAACAgAAAAACAQAAAAABAgAAAAADYAAAAAADYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAADAAAAAADgQAAAAAAgQAAAAAAgQAAAAAADAAAAAADAgAAAAAAAgAAAAAAAgAAAAADAgAAAAAAAQAAAAABYAAAAAADAQAAAAACgQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAgAAAAADAgAAAAABAgAAAAACAgAAAAACAgAAAAADYAAAAAADAQAAAAAAgQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAgAAAAAAAgAAAAADgQAAAAAAYAAAAAACYAAAAAADPQAAAAAAPQAAAAAAAQAAAAABPQAAAAAAAQAAAAABPQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAgAAAAABAgAAAAACAgAAAAACAgAAAAADCQAAAAAA + tiles: gQAAAAAAgQAAAAAACQAAAAAABgAAAAACBgAAAAABBgAAAAABBgAAAAABBgAAAAAAgQAAAAAAYAAAAAADYAAAAAACYAAAAAAAYAAAAAABYAAAAAABYAAAAAADYAAAAAABgQAAAAAAgQAAAAAABgAAAAAABgAAAAABgQAAAAAABgAAAAADAQAAAAADBgAAAAABgQAAAAAAYAAAAAACYAAAAAACYAAAAAABYAAAAAABYAAAAAABYAAAAAABYAAAAAACgQAAAAAAgQAAAAAACQAAAAAAgQAAAAAAgQAAAAAABgAAAAABAQAAAAADBgAAAAADgQAAAAAAYAAAAAADYAAAAAABYAAAAAADYAAAAAADgQAAAAAAYAAAAAABYAAAAAACCQAAAAAACQAAAAAAgQAAAAAABgAAAAACBgAAAAAABgAAAAACBgAAAAABBgAAAAACgQAAAAAAYAAAAAADYAAAAAABYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAABgAAAAAABgAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAAQAAAAAAYAAAAAAABgAAAAACBgAAAAAAAQAAAAAABgAAAAAABwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABAQAAAAABYAAAAAAABgAAAAABBgAAAAACBgAAAAACAQAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAADAAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAADYAAAAAADCQAAAAAABgAAAAABAQAAAAADBgAAAAAABgAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAgAAAAADAgAAAAADAgAAAAADgQAAAAAAYAAAAAACAQAAAAAAYAAAAAAABgAAAAACBgAAAAADBgAAAAAAAQAAAAACBgAAAAABDAAAAAADgQAAAAAAgQAAAAAAAgAAAAACAgAAAAABAgAAAAACAgAAAAACBgAAAAAAYAAAAAABAQAAAAACYAAAAAABgQAAAAAABgAAAAABBgAAAAAABgAAAAABBgAAAAADgQAAAAAAgQAAAAAAgQAAAAAAAgAAAAABAgAAAAADAgAAAAACAQAAAAABgQAAAAAAYAAAAAAAYAAAAAABYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAgAAAAABAgAAAAADAgAAAAAAAQAAAAABgQAAAAAAYAAAAAABAQAAAAAAYAAAAAABDAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAgAAAAADAgAAAAACAgAAAAACAQAAAAABAgAAAAADYAAAAAADYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAADAAAAAADgQAAAAAAgQAAAAAAgQAAAAAADAAAAAADAgAAAAAAAgAAAAAAAgAAAAADAgAAAAAAAQAAAAABYAAAAAADAQAAAAACgQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAgAAAAADAgAAAAABAgAAAAACAgAAAAACAgAAAAADYAAAAAADAQAAAAAACQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAgAAAAAAAgAAAAADgQAAAAAAYAAAAAACYAAAAAADPQAAAAAAPQAAAAAAAQAAAAABPQAAAAAAAQAAAAABPQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAgAAAAABAgAAAAACAgAAAAACAgAAAAADCQAAAAAA version: 6 -1,-1: ind: -1,-1 @@ -85,7 +85,7 @@ entities: version: 6 0,-2: ind: 0,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAAAAAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAAAAAAAAAAAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAABQAAAAAABQAAAAAAAAAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAACQAAAAAACQAAAAAACQAAAAAAgQAAAAAAAAAAAAAABQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAABQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAACQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAABQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAACQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABQAAAAAABQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAACQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABQAAAAAABQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAACQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABgQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAABBQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAACQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAADBQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAACBQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABAAAAAAAgQAAAAAABAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAACQAAAAAACQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAACQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACgQAAAAAAgQAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAAAAAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAAAAAAAAAAAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAAAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAACQAAAAAACQAAAAAACQAAAAAAgQAAAAAABQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAACQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABQAAAAAACQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAACQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAACQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAACQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABgQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAABBQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAACQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAADBQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAACBQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABAAAAAAAgQAAAAAABAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAACQAAAAAACQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAACQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACgQAAAAAAgQAAAAAA version: 6 -1,-2: ind: -1,-2 @@ -93,7 +93,7 @@ entities: version: 6 1,-2: ind: 1,-2 - tiles: gQAAAAAABQAAAAAAgQAAAAAAAAAAAAAAgQAAAAAABQAAAAAAgQAAAAAAAAAAAAAAgQAAAAAABQAAAAAAgQAAAAAAAAAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAABQAAAAAAgQAAAAAAAAAAAAAAgQAAAAAABQAAAAAAgQAAAAAAAAAAAAAAgQAAAAAABQAAAAAAgQAAAAAAAAAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABQAAAAAABQAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAgQAAAAAABQAAAAAAAAAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABQAAAAAABQAAAAAAAAAAAAAABQAAAAAAgQAAAAAABQAAAAAAAAAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAADYAAAAAAAYAAAAAABYAAAAAACgQAAAAAABQAAAAAAgQAAAAAABQAAAAAABQAAAAAAgQAAAAAABQAAAAAAAAAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAABYAAAAAAAYAAAAAAAYAAAAAADgQAAAAAABQAAAAAAgQAAAAAAAAAAAAAABQAAAAAAgQAAAAAABQAAAAAAAAAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAYAAAAAADYAAAAAABYAAAAAABgQAAAAAABQAAAAAAgQAAAAAABQAAAAAABQAAAAAAgQAAAAAABQAAAAAABQAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAADCQAAAAAACQAAAAAAgQAAAAAAgQAAAAAACQAAAAAACQAAAAAACQAAAAAAgQAAAAAABAAAAAAAgQAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAACYAAAAAACCQAAAAAACQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAYAAAAAABYAAAAAABCQAAAAAACQAAAAAAYAAAAAACYAAAAAACYAAAAAADYAAAAAAAgQAAAAAABAAAAAAAgQAAAAAABQAAAAAABQAAAAAABQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADgQAAAAAAYAAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABQAAAAAABQAAAAAABQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAACgQAAAAAAYAAAAAABYAAAAAABYAAAAAABYAAAAAABYAAAAAADYAAAAAAAgQAAAAAABQAAAAAABQAAAAAABQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAACQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAACQAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEQAAAAAAEQAAAAAA + tiles: gQAAAAAABQAAAAAAgQAAAAAAAAAAAAAAgQAAAAAABQAAAAAAgQAAAAAAAAAAAAAAgQAAAAAABQAAAAAAgQAAAAAAAAAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAABQAAAAAAgQAAAAAAAAAAAAAAgQAAAAAABQAAAAAAgQAAAAAAAAAAAAAAgQAAAAAABQAAAAAAgQAAAAAAAAAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABQAAAAAABQAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAgQAAAAAABQAAAAAAAAAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAgQAAAAAABQAAAAAAAAAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAADYAAAAAAAYAAAAAABYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABQAAAAAAAAAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAABYAAAAAAAYAAAAAAAYAAAAAADCQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAABQAAAAAAAAAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAYAAAAAADYAAAAAABYAAAAAABCQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAABQAAAAAABQAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAADCQAAAAAACQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAABAAAAAAAgQAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAACYAAAAAACCQAAAAAACQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAYAAAAAABYAAAAAABCQAAAAAACQAAAAAAYAAAAAACYAAAAAACYAAAAAADYAAAAAAAgQAAAAAABAAAAAAAgQAAAAAABQAAAAAABQAAAAAABQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADgQAAAAAAYAAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABQAAAAAABQAAAAAABQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAACgQAAAAAAYAAAAAABYAAAAAABYAAAAAABYAAAAAABYAAAAAADYAAAAAAAgQAAAAAABQAAAAAABQAAAAAABQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAACQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAACQAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEQAAAAAAEQAAAAAA version: 6 1,-3: ind: 1,-3 @@ -126,8 +126,8 @@ entities: - type: Broadphase - type: Physics bodyStatus: InAir - angularDamping: 10000 - linearDamping: 10000 + angularDamping: 0.05 + linearDamping: 0.05 fixedRotation: False bodyType: Dynamic - type: Fixtures @@ -135,8 +135,6 @@ entities: - type: OccluderTree - type: SpreaderGrid - type: Shuttle - angularDamping: 10000 - linearDamping: 10000 - type: Gravity gravityShakeSound: !type:SoundPathSpecifier path: /Audio/Effects/alert.ogg @@ -580,6 +578,7 @@ entities: 143: 10,-13 150: 12,-14 421: 18,-23 + 425: 22,-22 - node: color: '#52B4E996' id: HalfTileOverlayGreyscale180 @@ -650,6 +649,7 @@ entities: decals: 325: 24,-16 412: 18,-25 + 426: 22,-24 - node: color: '#334E6DC8' id: HalfTileOverlayGreyscale270 @@ -741,6 +741,7 @@ entities: 341: 5,18 342: 5,20 418: 17,-24 + 427: 21,-23 - node: color: '#334E6DC8' id: HalfTileOverlayGreyscale90 @@ -827,6 +828,7 @@ entities: id: HalfTileOverlayGreyscale90 decals: 413: 19,-24 + 428: 23,-23 - node: color: '#FA750096' id: MiniTileCheckerAOverlay @@ -930,6 +932,7 @@ entities: 140: 18,-13 149: 9,-13 420: 17,-23 + 429: 21,-22 - node: color: '#334E6DC8' id: ThreeQuarterTileOverlayGreyscale180 @@ -946,6 +949,7 @@ entities: id: ThreeQuarterTileOverlayGreyscale180 decals: 410: 19,-25 + 430: 23,-24 - node: color: '#8D1C9996' id: ThreeQuarterTileOverlayGreyscale270 @@ -974,6 +978,7 @@ entities: 112: 14,-22 324: 22,-16 419: 17,-25 + 431: 21,-24 - node: color: '#334E6DC8' id: ThreeQuarterTileOverlayGreyscale90 @@ -1008,6 +1013,7 @@ entities: 106: 18,-18 148: 11,-13 411: 19,-23 + 432: 23,-22 - node: color: '#FFFFFFFF' id: WarnCornerNE @@ -1075,9 +1081,9 @@ entities: 1,0: 0: 61695 1,1: - 0: 60655 + 0: 56559 1,2: - 0: 61182 + 0: 61133 1,3: 0: 61422 1,-1: @@ -1095,8 +1101,7 @@ entities: 2,-1: 0: 41647 2,4: - 0: 1764 - 2: 2048 + 0: 3812 3,0: 0: 63095 3,1: @@ -1127,8 +1132,7 @@ entities: 1: 51340 -3,0: 0: 28672 - 3: 2 - 4: 236 + 2: 238 -3,1: 0: 127 1: 28672 @@ -1142,13 +1146,13 @@ entities: -3,2: 1: 44661 -3,-1: - 4: 57344 + 2: 57344 0: 2286 -3,4: 0: 2730 1: 1092 -2,0: - 4: 17 + 2: 17 0: 61646 -2,1: 0: 62207 @@ -1159,7 +1163,7 @@ entities: 1: 15 0: 58608 -2,-1: - 4: 4096 + 2: 4096 0: 51379 -2,4: 0: 2730 @@ -1182,8 +1186,7 @@ entities: 1,-4: 0: 65535 1,-3: - 0: 30710 - 5: 32768 + 0: 63478 1,-2: 0: 61695 2,-2: @@ -1224,9 +1227,9 @@ entities: -2,-3: 0: 4095 -2,-2: - 6: 17 + 3: 17 0: 61440 - 7: 68 + 4: 68 -2,-5: 1: 63740 -1,-4: @@ -1246,7 +1249,7 @@ entities: 1: 252 4,4: 0: 55 - 1: 63488 + 1: 61440 4,5: 1: 248 5,0: @@ -1259,7 +1262,7 @@ entities: 0: 30471 5,4: 0: 7 - 1: 61952 + 1: 61440 5,-1: 0: 61167 6,1: @@ -1268,13 +1271,13 @@ entities: 0: 32628 6,3: 0: 119 - 1: 61440 + 1: 57344 6,-1: 0: 65263 6,0: 0: 60942 6,4: - 1: 30197 + 1: 30180 7,0: 0: 56579 1: 136 @@ -1297,7 +1300,9 @@ entities: 8,3: 1: 30202 5,5: - 1: 50 + 1: 242 + 6,5: + 1: 116 8,4: 1: 1 4,-5: @@ -1338,25 +1343,27 @@ entities: 1: 8752 0,-8: 1: 61440 + 0,-7: + 1: 4383 + 5: 52224 -1,-8: 1: 32768 + -1,-7: + 1: 34952 0,-6: - 1: 62258 - 8: 136 + 1: 61713 + 5: 204 -1,-6: 1: 65528 0,-5: 1: 4095 - 0,-7: - 1: 8928 - 8: 32768 1,-8: 1: 36864 1,-7: - 1: 127 - 8: 28672 + 1: 15 + 5: 30464 1,-6: - 8: 119 + 5: 119 1: 28672 1,-5: 1: 823 @@ -1385,8 +1392,6 @@ entities: 0: 29183 -2,-6: 1: 52352 - -1,-7: - 1: 34952 4,-8: 0: 10069 1: 34 @@ -1476,36 +1481,6 @@ entities: - 0 - 0 - 0 - - volume: 2500 - temperature: 293.14975 - moles: - - 20.078888 - - 75.53487 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - volume: 2500 - temperature: 234.99979 - moles: - - 20.078888 - - 75.53487 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - volume: 2500 temperature: 235 moles: @@ -1521,21 +1496,6 @@ entities: - 0 - 0 - 0 - - volume: 2500 - temperature: 293.15 - moles: - - 21.6852 - - 81.57766 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - volume: 2500 temperature: 293.15 moles: @@ -3002,13 +2962,6 @@ entities: - type: Transform pos: -7.5,6.5 parent: 2 - - uid: 2969 - components: - - type: MetaData - name: APC (ENG, SOL) - - type: Transform - pos: 24.5,-21.5 - parent: 2 - uid: 3022 components: - type: MetaData @@ -3114,6 +3067,14 @@ entities: rot: 3.141592653589793 rad pos: -0.5,-3.5 parent: 2 + - uid: 4308 + components: + - type: MetaData + name: APC (ENG, SOL) + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,-22.5 + parent: 2 - proto: AtmosDeviceFanDirectional entities: - uid: 9 @@ -3154,6 +3115,11 @@ entities: parent: 2 - proto: AtmosFixBlockerMarker entities: + - uid: 1648 + components: + - type: Transform + pos: 3.5,-22.5 + parent: 2 - uid: 2566 components: - type: Transform @@ -3172,7 +3138,7 @@ entities: - uid: 2569 components: - type: Transform - pos: 5.5,-24.5 + pos: 6.5,-25.5 parent: 2 - uid: 2570 components: @@ -3184,11 +3150,6 @@ entities: - type: Transform pos: 5.5,-22.5 parent: 2 - - uid: 2572 - components: - - type: Transform - pos: 4.5,-24.5 - parent: 2 - uid: 2573 components: - type: Transform @@ -3199,20 +3160,60 @@ entities: - type: Transform pos: 4.5,-22.5 parent: 2 - - uid: 2575 + - uid: 3834 + components: + - type: Transform + pos: 3.5,-23.5 + parent: 2 + - uid: 4069 + components: + - type: Transform + pos: 5.5,-24.5 + parent: 2 + - uid: 4086 + components: + - type: Transform + pos: 4.5,-24.5 + parent: 2 + - uid: 4258 + components: + - type: Transform + pos: 4.5,-25.5 + parent: 2 + - uid: 4268 + components: + - type: Transform + pos: 3.5,-25.5 + parent: 2 + - uid: 4269 components: - type: Transform pos: 3.5,-24.5 parent: 2 - - uid: 2576 + - uid: 4270 components: - type: Transform - pos: 3.5,-23.5 + pos: 5.5,-25.5 parent: 2 - - uid: 2577 + - uid: 4288 components: - type: Transform - pos: 3.5,-22.5 + pos: 2.5,-25.5 + parent: 2 + - uid: 4289 + components: + - type: Transform + pos: 2.5,-24.5 + parent: 2 + - uid: 4290 + components: + - type: Transform + pos: 2.5,-23.5 + parent: 2 + - uid: 4291 + components: + - type: Transform + pos: 2.5,-22.5 parent: 2 - proto: AtmosFixFreezerMarker entities: @@ -3686,6 +3687,11 @@ entities: - type: Transform pos: 0.5,-2.5 parent: 2 + - uid: 990 + components: + - type: Transform + pos: 22.5,-20.5 + parent: 2 - uid: 1469 components: - type: Transform @@ -3696,6 +3702,21 @@ entities: - type: Transform pos: 10.5,-9.5 parent: 2 + - uid: 1566 + components: + - type: Transform + pos: 16.5,1.5 + parent: 2 + - uid: 1647 + components: + - type: Transform + pos: 22.5,-21.5 + parent: 2 + - uid: 2632 + components: + - type: Transform + pos: 14.5,1.5 + parent: 2 - uid: 2904 components: - type: Transform @@ -4021,11 +4042,6 @@ entities: - type: Transform pos: 22.5,-16.5 parent: 2 - - uid: 2970 - components: - - type: Transform - pos: 24.5,-21.5 - parent: 2 - uid: 2971 components: - type: Transform @@ -5771,11 +5787,6 @@ entities: - type: Transform pos: 15.5,1.5 parent: 2 - - uid: 3377 - components: - - type: Transform - pos: 15.5,0.5 - parent: 2 - uid: 3378 components: - type: Transform @@ -6196,6 +6207,11 @@ entities: - type: Transform pos: -0.5,-3.5 parent: 2 + - uid: 4309 + components: + - type: Transform + pos: 24.5,-22.5 + parent: 2 - proto: CableHV entities: - uid: 43 @@ -7627,6 +7643,16 @@ entities: - type: Transform pos: -0.5,-2.5 parent: 2 + - uid: 973 + components: + - type: Transform + pos: 25.5,-22.5 + parent: 2 + - uid: 1649 + components: + - type: Transform + pos: 24.5,-22.5 + parent: 2 - uid: 2985 components: - type: Transform @@ -7782,11 +7808,6 @@ entities: - type: Transform pos: 25.5,-21.5 parent: 2 - - uid: 3016 - components: - - type: Transform - pos: 24.5,-21.5 - parent: 2 - uid: 3440 components: - type: Transform @@ -9424,6 +9445,41 @@ entities: - type: Transform pos: 0.5,-17.5 parent: 2 + - uid: 4292 + components: + - type: Transform + pos: 3.5,-23.5 + parent: 2 + - uid: 4293 + components: + - type: Transform + pos: 3.5,-24.5 + parent: 2 + - uid: 4294 + components: + - type: Transform + pos: 3.5,-25.5 + parent: 2 + - uid: 4295 + components: + - type: Transform + pos: 4.5,-25.5 + parent: 2 + - uid: 4296 + components: + - type: Transform + pos: 5.5,-25.5 + parent: 2 + - uid: 4297 + components: + - type: Transform + pos: 6.5,-25.5 + parent: 2 + - uid: 4302 + components: + - type: Transform + pos: 2.5,-24.5 + parent: 2 - proto: Chair entities: - uid: 336 @@ -10252,15 +10308,10 @@ entities: parent: 2 - proto: CrateEngineeringSolar entities: - - uid: 973 - components: - - type: Transform - pos: 24.5,-26.5 - parent: 2 - - uid: 990 + - uid: 805 components: - type: Transform - pos: 21.5,-20.5 + pos: 23.5,-25.5 parent: 2 - uid: 4116 components: @@ -13375,11 +13426,6 @@ entities: parent: 2 - proto: Floodlight entities: - - uid: 1553 - components: - - type: Transform - pos: 23.512129,-22.550402 - parent: 2 - uid: 1555 components: - type: Transform @@ -13695,12 +13741,16 @@ entities: rot: 3.141592653589793 rad pos: 1.5,-20.5 parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' - uid: 318 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,-19.5 parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' - uid: 359 components: - type: Transform @@ -13739,12 +13789,16 @@ entities: rot: -1.5707963267948966 rad pos: 6.5,-20.5 parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' - uid: 560 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,-19.5 parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' - uid: 561 components: - type: Transform @@ -13768,74 +13822,100 @@ entities: rot: 1.5707963267948966 rad pos: 4.5,-22.5 parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 698 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-24.5 parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 700 components: - type: Transform pos: 14.5,-22.5 parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 706 components: - type: Transform pos: 13.5,-17.5 parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' - uid: 707 components: - type: Transform rot: -1.5707963267948966 rad pos: 13.5,-20.5 parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' - uid: 710 components: - type: Transform rot: -1.5707963267948966 rad pos: 8.5,-22.5 parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 715 components: - type: Transform rot: -1.5707963267948966 rad pos: 13.5,-24.5 parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 719 components: - type: Transform pos: 10.5,-21.5 parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 740 components: - type: Transform rot: 3.141592653589793 rad pos: 10.5,-20.5 parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' - uid: 741 components: - type: Transform pos: 10.5,-19.5 parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' - uid: 743 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,-21.5 parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 754 components: - type: Transform rot: 3.141592653589793 rad pos: 10.5,-22.5 parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 756 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-17.5 parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' - uid: 1491 components: - type: Transform @@ -14237,11 +14317,11 @@ entities: color: '#FFAA00FF' - proto: GasPipeHalf entities: - - uid: 4271 + - uid: 1184 components: - type: Transform rot: -1.5707963267948966 rad - pos: 3.5,-23.5 + pos: 2.5,-23.5 parent: 2 - proto: GasPipeStraight entities: @@ -14337,6 +14417,8 @@ entities: rot: 1.5707963267948966 rad pos: 2.5,-20.5 parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' - uid: 566 components: - type: Transform @@ -14349,12 +14431,16 @@ entities: rot: 1.5707963267948966 rad pos: 3.5,-20.5 parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' - uid: 699 components: - type: Transform rot: -1.5707963267948966 rad pos: 12.5,-24.5 parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 705 components: - type: Transform @@ -14367,96 +14453,128 @@ entities: rot: 1.5707963267948966 rad pos: 7.5,-24.5 parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 711 components: - type: Transform rot: 1.5707963267948966 rad pos: 9.5,-24.5 parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 712 components: - type: Transform rot: 1.5707963267948966 rad pos: 10.5,-24.5 parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 714 components: - type: Transform rot: -1.5707963267948966 rad pos: 11.5,-24.5 parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 718 components: - type: Transform rot: -1.5707963267948966 rad pos: 12.5,-22.5 parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 721 components: - type: Transform rot: -1.5707963267948966 rad pos: 8.5,-24.5 parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 722 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,-22.5 parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 723 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-23.5 parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 728 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,-19.5 parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' - uid: 729 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,-19.5 parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' - uid: 730 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,-17.5 parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' - uid: 731 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,-17.5 parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' - uid: 732 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,-17.5 parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' - uid: 734 components: - type: Transform rot: 1.5707963267948966 rad pos: 10.5,-17.5 parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' - uid: 735 components: - type: Transform rot: 1.5707963267948966 rad pos: 11.5,-17.5 parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' - uid: 736 components: - type: Transform rot: 1.5707963267948966 rad pos: 12.5,-17.5 parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' - uid: 744 components: - type: Transform @@ -14475,12 +14593,16 @@ entities: rot: 1.5707963267948966 rad pos: 4.5,-20.5 parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' - uid: 753 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,-20.5 parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' - uid: 770 components: - type: Transform @@ -14495,12 +14617,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#00AAFFFF' - - uid: 1184 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-23.5 - parent: 2 - uid: 1321 components: - type: Transform @@ -14528,11 +14644,17 @@ entities: rot: -1.5707963267948966 rad pos: 19.5,-8.5 parent: 2 - - uid: 1934 + - uid: 1568 components: - type: Transform rot: -1.5707963267948966 rad - pos: -0.5,-11.5 + pos: 1.5,-23.5 + parent: 2 + - uid: 1934 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-11.5 parent: 2 - type: AtmosPipeColor color: '#00AAFFFF' @@ -17359,6 +17481,8 @@ entities: rot: -1.5707963267948966 rad pos: 9.5,-17.5 parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' - uid: 3650 components: - type: Transform @@ -17429,29 +17553,39 @@ entities: rot: -1.5707963267948966 rad pos: 5.5,-18.5 parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' - uid: 713 components: - type: Transform rot: -1.5707963267948966 rad pos: 14.5,-23.5 parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 737 components: - type: Transform rot: -1.5707963267948966 rad pos: 13.5,-19.5 parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' - uid: 738 components: - type: Transform rot: -1.5707963267948966 rad pos: 13.5,-18.5 parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' - uid: 747 components: - type: Transform pos: 13.5,-23.5 parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 855 components: - type: Transform @@ -18224,18 +18358,24 @@ entities: - type: Transform pos: 5.5,-17.5 parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' - uid: 3803 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-18.5 parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' - uid: 3809 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-19.5 parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' - uid: 3922 components: - type: Transform @@ -18288,6 +18428,8 @@ entities: rot: 1.5707963267948966 rad pos: 11.5,-23.5 parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 742 components: - type: Transform @@ -18311,20 +18453,20 @@ entities: rot: 1.5707963267948966 rad pos: 11.5,-18.5 parent: 2 - - uid: 4208 + - uid: 1409 components: - type: Transform rot: 1.5707963267948966 rad - pos: -3.5,-12.5 + pos: 0.5,-23.5 parent: 2 - - type: AtmosPipeColor - color: '#FFAA00FF' - - uid: 4269 + - uid: 4208 components: - type: Transform rot: 1.5707963267948966 rad - pos: 1.5,-23.5 + pos: -3.5,-12.5 parent: 2 + - type: AtmosPipeColor + color: '#FFAA00FF' - proto: GasPressurePump entities: - uid: 436 @@ -18365,6 +18507,8 @@ entities: parent: 2 - type: GasPressurePump targetPressure: 4500 + - type: AtmosPipeColor + color: '#0000FFFF' - uid: 550 components: - type: Transform @@ -18377,6 +18521,8 @@ entities: rot: 1.5707963267948966 rad pos: 12.5,-23.5 parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 751 components: - type: Transform @@ -18385,6 +18531,8 @@ entities: parent: 2 - type: GasPressurePump targetPressure: 4500 + - type: AtmosPipeColor + color: '#0000FFFF' - uid: 755 components: - type: Transform @@ -18393,12 +18541,16 @@ entities: parent: 2 - type: GasPressurePump targetPressure: 4500 + - type: AtmosPipeColor + color: '#0000FFFF' - uid: 766 components: - type: Transform rot: 1.5707963267948966 rad pos: 12.5,-19.5 parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' - uid: 767 components: - type: Transform @@ -18407,6 +18559,8 @@ entities: parent: 2 - type: GasPressurePump targetPressure: 4500 + - type: AtmosPipeColor + color: '#0000FFFF' - uid: 1493 components: - type: MetaData @@ -18451,6 +18605,8 @@ entities: parent: 2 - type: GasValve open: False + - type: AtmosPipeColor + color: '#FF0000FF' - proto: GasVentPump entities: - uid: 480 @@ -19458,44 +19614,63 @@ entities: rot: -1.5707963267948966 rad pos: 4.5,-17.5 parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' - uid: 701 components: - type: Transform rot: 1.5707963267948966 rad pos: 9.5,-19.5 parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' - uid: 717 components: - type: Transform rot: -1.5707963267948966 rad pos: 13.5,-22.5 parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 720 components: - type: Transform rot: -1.5707963267948966 rad pos: 9.5,-21.5 parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 724 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,-19.5 parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' - uid: 725 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,-18.5 parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' - uid: 1539 components: - type: Transform rot: 1.5707963267948966 rad pos: 12.5,-20.5 parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' - proto: Girder entities: + - uid: 1405 + components: + - type: Transform + pos: -0.5,-22.5 + parent: 2 - uid: 1548 components: - type: Transform @@ -19536,11 +19711,6 @@ entities: - type: Transform pos: -13.5,-6.5 parent: 2 - - uid: 2632 - components: - - type: Transform - pos: 0.5,-22.5 - parent: 2 - uid: 2633 components: - type: Transform @@ -19827,11 +19997,6 @@ entities: - type: Transform pos: 19.5,-19.5 parent: 2 - - uid: 792 - components: - - type: Transform - pos: 22.5,-21.5 - parent: 2 - uid: 800 components: - type: Transform @@ -19847,21 +20012,11 @@ entities: - type: Transform pos: 29.5,2.5 parent: 2 - - uid: 805 - components: - - type: Transform - pos: 21.5,-21.5 - parent: 2 - uid: 829 components: - type: Transform pos: 21.5,-12.5 parent: 2 - - uid: 859 - components: - - type: Transform - pos: 23.5,-21.5 - parent: 2 - uid: 994 components: - type: Transform @@ -20162,11 +20317,6 @@ entities: - type: Transform pos: 18.5,-21.5 parent: 2 - - uid: 1648 - components: - - type: Transform - pos: 15.5,0.5 - parent: 2 - uid: 1742 components: - type: Transform @@ -20202,6 +20352,16 @@ entities: - type: Transform pos: -4.5,20.5 parent: 2 + - uid: 3016 + components: + - type: Transform + pos: 20.5,-23.5 + parent: 2 + - uid: 3377 + components: + - type: Transform + pos: 1.5,-23.5 + parent: 2 - uid: 3624 components: - type: Transform @@ -20697,6 +20857,11 @@ entities: - type: Transform pos: 9.5,21.5 parent: 2 + - uid: 3779 + components: + - type: Transform + pos: 20.5,-22.5 + parent: 2 - uid: 3923 components: - type: Transform @@ -20737,11 +20902,6 @@ entities: - type: Transform pos: -12.5,13.5 parent: 2 - - uid: 4258 - components: - - type: Transform - pos: 2.5,-23.5 - parent: 2 - proto: GrilleSpawner entities: - uid: 2778 @@ -20824,24 +20984,32 @@ entities: rot: -1.5707963267948966 rad pos: 6.5,-22.5 parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 694 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,-22.5 parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 695 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-24.5 parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 696 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,-24.5 parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 704 components: - type: Transform @@ -21344,10 +21512,10 @@ entities: parent: 2 - proto: LockerSalvageSpecialistFilled entities: - - uid: 1616 + - uid: 4280 components: - type: Transform - pos: 26.5,-14.5 + pos: 27.5,-15.5 parent: 2 - proto: LockerScienceFilled entities: @@ -21616,11 +21784,6 @@ entities: parent: 2 - proto: MaintenanceWeaponSpawner entities: - - uid: 773 - components: - - type: Transform - pos: 6.5,-26.5 - parent: 2 - uid: 3801 components: - type: Transform @@ -21646,12 +21809,10 @@ entities: - type: Transform pos: 20.5,19.5 parent: 2 -- proto: MaterialReclaimer - entities: - - uid: 1409 + - uid: 4281 components: - type: Transform - pos: -6.5,-2.5 + pos: 7.5,-27.5 parent: 2 - proto: MedalCase entities: @@ -21949,10 +22110,10 @@ entities: parent: 2 - proto: PortableGeneratorPacman entities: - - uid: 1543 + - uid: 859 components: - type: Transform - pos: 22.5,-20.5 + pos: 24.5,-17.5 parent: 2 - proto: PortableScrubber entities: @@ -22348,6 +22509,12 @@ entities: - type: Transform pos: 4.5,1.5 parent: 2 + - uid: 4311 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,-20.5 + parent: 2 - proto: PoweredLightBlueInterior entities: - uid: 1290 @@ -22362,12 +22529,6 @@ entities: rot: 3.141592653589793 rad pos: 33.5,-2.5 parent: 2 - - uid: 1649 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,-25.5 - parent: 2 - uid: 3145 components: - type: Transform @@ -22407,17 +22568,28 @@ entities: rot: 1.5707963267948966 rad pos: 27.5,-19.5 parent: 2 - - uid: 4086 - components: - - type: Transform - pos: 4.5,-26.5 - parent: 2 - uid: 4087 components: - type: Transform rot: -1.5707963267948966 rad pos: -9.5,-15.5 parent: 2 + - uid: 4287 + components: + - type: Transform + pos: 4.5,-27.5 + parent: 2 + - uid: 4304 + components: + - type: Transform + pos: 20.5,-26.5 + parent: 2 + - uid: 4310 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,-23.5 + parent: 2 - proto: PoweredLightColoredFrostyBlue entities: - uid: 3853 @@ -22434,6 +22606,12 @@ entities: parent: 2 - proto: PoweredSmallLight entities: + - uid: 3672 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-25.5 + parent: 2 - uid: 3822 components: - type: Transform @@ -22451,12 +22629,6 @@ entities: - type: Transform pos: 7.5,-17.5 parent: 2 - - uid: 3838 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,-24.5 - parent: 2 - uid: 3842 components: - type: Transform @@ -22767,6 +22939,11 @@ entities: - type: Transform pos: 5.5,8.5 parent: 2 + - uid: 2572 + components: + - type: Transform + pos: -3.5,9.5 + parent: 2 - uid: 4054 components: - type: Transform @@ -22807,16 +22984,6 @@ entities: - type: Transform pos: -5.5,-2.5 parent: 2 - - uid: 4068 - components: - - type: Transform - pos: -3.5,7.5 - parent: 2 - - uid: 4069 - components: - - type: Transform - pos: -3.5,9.5 - parent: 2 - uid: 4072 components: - type: Transform @@ -22890,8 +23057,9 @@ entities: pos: 2.5,0.5 parent: 2 - type: RandomSpawner - chance: 1 - rareChance: 0.05 + prototypes: [] + rarePrototypes: [] + gameRules: [] - proto: RandomSnacks entities: - uid: 613 @@ -23042,10 +23210,10 @@ entities: parent: 2 - proto: Recycler entities: - - uid: 1405 + - uid: 2576 components: - type: Transform - rot: -1.5707963267948966 rad + rot: 1.5707963267948966 rad pos: -9.5,-4.5 parent: 2 - proto: ReinforcedPlasmaWindow @@ -23232,6 +23400,11 @@ entities: - type: Transform pos: 7.5,-19.5 parent: 2 + - uid: 670 + components: + - type: Transform + pos: 1.5,-23.5 + parent: 2 - uid: 675 components: - type: Transform @@ -23252,20 +23425,10 @@ entities: - type: Transform pos: 5.5,-21.5 parent: 2 - - uid: 788 - components: - - type: Transform - pos: 23.5,-21.5 - parent: 2 - - uid: 811 - components: - - type: Transform - pos: 22.5,-21.5 - parent: 2 - - uid: 863 + - uid: 988 components: - type: Transform - pos: 21.5,-21.5 + pos: 20.5,-22.5 parent: 2 - uid: 1021 components: @@ -23442,6 +23605,11 @@ entities: - type: Transform pos: 30.5,-1.5 parent: 2 + - uid: 1553 + components: + - type: Transform + pos: 20.5,-23.5 + parent: 2 - uid: 1556 components: - type: Transform @@ -23462,16 +23630,6 @@ entities: - type: Transform pos: 25.5,-12.5 parent: 2 - - uid: 3672 - components: - - type: Transform - pos: 2.5,-23.5 - parent: 2 - - uid: 3834 - components: - - type: Transform - pos: 15.5,0.5 - parent: 2 - uid: 4007 components: - type: Transform @@ -23607,6 +23765,11 @@ entities: - type: Transform pos: 5.44535,-6.393665 parent: 2 + - uid: 671 + components: + - type: Transform + pos: -0.69058394,-21.583221 + parent: 2 - uid: 842 components: - type: Transform @@ -23617,11 +23780,6 @@ entities: - type: Transform pos: 23.5,-20.5 parent: 2 - - uid: 4268 - components: - - type: Transform - pos: 1.5278275,-21.608345 - parent: 2 - proto: SheetGlass10 entities: - uid: 3622 @@ -23696,6 +23854,94 @@ entities: - type: Transform pos: 31.5,11.5 parent: 2 +- proto: ShelfBar + entities: + - uid: 2575 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,7.5 + parent: 2 +- proto: ShelfChemistryChemistrySecure + entities: + - uid: 4275 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,0.5 + parent: 2 +- proto: ShelfGlass + entities: + - uid: 1569 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,-14.5 + parent: 2 + - uid: 4279 + components: + - type: Transform + pos: 29.5,1.5 + parent: 2 + - uid: 4300 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,13.5 + parent: 2 +- proto: ShelfKitchen + entities: + - uid: 4271 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,1.5 + parent: 2 +- proto: ShelfMetal + entities: + - uid: 3838 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-2.5 + parent: 2 + - uid: 4277 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,-19.5 + parent: 2 + - uid: 4278 + components: + - type: Transform + pos: 31.5,-13.5 + parent: 2 + - uid: 4298 + components: + - type: Transform + pos: 7.5,-11.5 + parent: 2 + - uid: 4299 + components: + - type: Transform + pos: -6.5,-1.5 + parent: 2 +- proto: ShelfRGlass + entities: + - uid: 4276 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,-2.5 + parent: 2 +- proto: ShelfRWood + entities: + - uid: 4301 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,13.5 + parent: 2 - proto: ShotGunCabinetFilled entities: - uid: 2551 @@ -23987,15 +24233,15 @@ entities: parent: 2 - proto: SignFlammableMed entities: - - uid: 1566 + - uid: 4068 components: - type: Transform - pos: 2.5,-22.5 + pos: 1.5,-22.5 parent: 2 - - uid: 1568 + - uid: 4286 components: - type: Transform - pos: 6.5,-25.5 + pos: 6.5,-26.5 parent: 2 - proto: SignGravity entities: @@ -24006,10 +24252,10 @@ entities: parent: 2 - proto: SignHydro1 entities: - - uid: 1569 + - uid: 4274 components: - type: Transform - pos: 7.5,-2.5 + pos: 5.5,-3.5 parent: 2 - proto: SignJanitor entities: @@ -24393,10 +24639,10 @@ entities: parent: 2 - proto: SolarTracker entities: - - uid: 988 + - uid: 4303 components: - type: Transform - pos: 22.5,-24.5 + pos: 26.5,-27.5 parent: 2 - proto: SophicScribe entities: @@ -24834,6 +25080,13 @@ entities: - type: Transform pos: 16.5,-8.5 parent: 2 +- proto: StationAnchor + entities: + - uid: 863 + components: + - type: Transform + pos: 22.5,-22.5 + parent: 2 - proto: StationMap entities: - uid: 212 @@ -25806,7 +26059,7 @@ entities: - Left: Forward - Right: Reverse - Middle: Off - 1405: + 2576: - Left: Forward - Right: Reverse - Middle: Off @@ -26613,7 +26866,7 @@ entities: - uid: 660 components: - type: Transform - pos: 2.5,-22.5 + pos: 1.5,-24.5 parent: 2 - uid: 662 components: @@ -26638,27 +26891,17 @@ entities: - uid: 668 components: - type: Transform - pos: 2.5,-25.5 + pos: 1.5,-25.5 parent: 2 - uid: 669 components: - type: Transform - pos: 3.5,-25.5 - parent: 2 - - uid: 670 - components: - - type: Transform - pos: 4.5,-25.5 - parent: 2 - - uid: 671 - components: - - type: Transform - pos: 5.5,-25.5 + pos: 1.5,-26.5 parent: 2 - uid: 672 components: - type: Transform - pos: 6.5,-25.5 + pos: 15.5,0.5 parent: 2 - uid: 673 components: @@ -26685,11 +26928,21 @@ entities: - type: Transform pos: 7.5,-26.5 parent: 2 + - uid: 773 + components: + - type: Transform + pos: 1.5,-21.5 + parent: 2 - uid: 791 components: - type: Transform pos: -11.5,-5.5 parent: 2 + - uid: 792 + components: + - type: Transform + pos: 24.5,-21.5 + parent: 2 - uid: 814 components: - type: Transform @@ -26723,7 +26976,7 @@ entities: - uid: 862 components: - type: Transform - pos: 24.5,-21.5 + pos: 21.5,-24.5 parent: 2 - uid: 864 components: @@ -27250,10 +27503,15 @@ entities: - type: Transform pos: 31.5,5.5 parent: 2 - - uid: 1647 + - uid: 1543 components: - type: Transform - pos: 20.5,-22.5 + pos: 22.5,-24.5 + parent: 2 + - uid: 1616 + components: + - type: Transform + pos: 2.5,-26.5 parent: 2 - uid: 1650 components: @@ -27275,6 +27533,16 @@ entities: - type: Transform pos: 20.5,-25.5 parent: 2 + - uid: 2577 + components: + - type: Transform + pos: 1.5,-22.5 + parent: 2 + - uid: 2969 + components: + - type: Transform + pos: 23.5,-24.5 + parent: 2 - uid: 3670 components: - type: Transform @@ -27285,11 +27553,6 @@ entities: - type: Transform pos: 19.5,18.5 parent: 2 - - uid: 3779 - components: - - type: Transform - pos: 20.5,-23.5 - parent: 2 - uid: 3981 components: - type: Transform @@ -27355,10 +27618,40 @@ entities: - type: Transform pos: 24.5,15.5 parent: 2 - - uid: 4270 + - uid: 4282 components: - type: Transform - pos: 2.5,-24.5 + pos: 3.5,-26.5 + parent: 2 + - uid: 4283 + components: + - type: Transform + pos: 4.5,-26.5 + parent: 2 + - uid: 4284 + components: + - type: Transform + pos: 5.5,-26.5 + parent: 2 + - uid: 4285 + components: + - type: Transform + pos: 6.5,-26.5 + parent: 2 + - uid: 4305 + components: + - type: Transform + pos: 24.5,-24.5 + parent: 2 + - uid: 4306 + components: + - type: Transform + pos: 24.5,-23.5 + parent: 2 + - uid: 4307 + components: + - type: Transform + pos: 24.5,-22.5 parent: 2 - proto: WallSolid entities: @@ -28404,6 +28697,14 @@ entities: rot: 3.141592653589793 rad pos: 18.5,-1.5 parent: 2 +- proto: WindoorSecureCommandLocked + entities: + - uid: 788 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,-21.5 + parent: 2 - proto: WindoorSecureMedicalLocked entities: - uid: 351 @@ -28641,6 +28942,18 @@ entities: rot: 1.5707963267948966 rad pos: 12.5,-4.5 parent: 2 + - uid: 811 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,-21.5 + parent: 2 + - uid: 2970 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,-21.5 + parent: 2 - proto: Wrench entities: - uid: 85 diff --git a/Resources/Maps/edge.yml b/Resources/Maps/edge.yml index e51931ddda5..074c3f2baff 100644 --- a/Resources/Maps/edge.yml +++ b/Resources/Maps/edge.yml @@ -5,6 +5,7 @@ tilemap: 0: Space 1: FloorArcadeBlue 2: FloorArcadeBlue2 + 20: FloorAstroGrass 14: FloorBar 17: FloorBlue 18: FloorBlueCircuit @@ -53,6 +54,7 @@ tilemap: 96: FloorSteelCheckerDark 10: FloorSteelCheckerLight 15: FloorSteelDamaged + 19: FloorSteelDiagonal 5: FloorSteelDiagonalMini 102: FloorSteelHerringbone 105: FloorSteelMono @@ -96,175 +98,175 @@ entities: chunks: 0,0: ind: 0,0 - tiles: XgAAAAACMAAAAAAAMAAAAAACfwAAAAAAXgAAAAACXgAAAAADMAAAAAABMAAAAAABXgAAAAABXgAAAAACMAAAAAABXgAAAAABMAAAAAAAMAAAAAACXgAAAAADMAAAAAACMAAAAAACXgAAAAACXgAAAAABbQAAAAAAXgAAAAADXgAAAAADXgAAAAADXgAAAAABXgAAAAABXgAAAAACXgAAAAAAMAAAAAAAXgAAAAABXgAAAAAAMAAAAAACXgAAAAAAMAAAAAAAXgAAAAADNQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAANQAAAAABXgAAAAABXgAAAAACXgAAAAABXgAAAAABNQAAAAADMAAAAAADXgAAAAACNQAAAAAAfwAAAAAAbwAAAAABbwAAAAAAfwAAAAAAbwAAAAAAbwAAAAABfwAAAAAAfwAAAAAAfwAAAAAASAAAAAAASAAAAAAAfwAAAAAAfwAAAAAAXgAAAAACMAAAAAADXgAAAAACfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbgAAAAAAcQAAAAADMAAAAAADMAAAAAABMAAAAAABMAAAAAADcQAAAAACbgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAcQAAAAAAcQAAAAACcQAAAAADcQAAAAACcQAAAAAAcQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAcQAAAAAAcQAAAAADcQAAAAAAfwAAAAAAcQAAAAAAcQAAAAAAcQAAAAADcQAAAAADcQAAAAABcQAAAAADbwAAAAADfwAAAAAAfwAAAAAAfwAAAAAAbwAAAAAAbgAAAAAAcQAAAAABcQAAAAADcQAAAAACSAAAAAAAcQAAAAACcQAAAAAAcQAAAAADcQAAAAABcQAAAAABcQAAAAABfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAcQAAAAABcQAAAAABcQAAAAADfwAAAAAAcQAAAAADcQAAAAABcQAAAAADcQAAAAACcQAAAAACcQAAAAADbwAAAAAAbwAAAAADfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAcQAAAAABcQAAAAABcQAAAAAAfwAAAAAAfwAAAAAASAAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAbgAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAcQAAAAAAcQAAAAAAcQAAAAABfwAAAAAAcQAAAAADcQAAAAACcQAAAAADfwAAAAAAcQAAAAAAcQAAAAACbgAAAAAAbgAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAcQAAAAADcQAAAAABcQAAAAABSAAAAAAAcQAAAAAAcQAAAAADcQAAAAAAfwAAAAAAcQAAAAAAcgAAAAABbwAAAAABbwAAAAABfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAcQAAAAABcQAAAAACcQAAAAABfwAAAAAAcQAAAAACcQAAAAAAcQAAAAAASAAAAAAAcQAAAAADcgAAAAACfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAcQAAAAAAcQAAAAADcQAAAAACfwAAAAAAcQAAAAABcQAAAAABfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbwAAAAAAbwAAAAACbwAAAAADbgAAAAAAcQAAAAAAcQAAAAACcQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbwAAAAADbwAAAAACbwAAAAABfwAAAAAAcQAAAAACcQAAAAABcQAAAAACcQAAAAABcQAAAAADcQAAAAAC + tiles: XgAAAAACMAAAAAAAMAAAAAACfwAAAAAAXgAAAAACXgAAAAADMAAAAAABMAAAAAABXgAAAAABXgAAAAACMAAAAAABXgAAAAABMAAAAAAAMAAAAAACXgAAAAADMAAAAAACMAAAAAACXgAAAAACXgAAAAABbQAAAAAAXgAAAAADXgAAAAADXgAAAAADXgAAAAABXgAAAAABXgAAAAACXgAAAAAAMAAAAAAAXgAAAAABXgAAAAAAMAAAAAACXgAAAAAAMAAAAAAAXgAAAAADNQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAANQAAAAABXgAAAAABXgAAAAACXgAAAAABXgAAAAABNQAAAAADMAAAAAADXgAAAAACNQAAAAAAfwAAAAAAbwAAAAABbwAAAAAAfwAAAAAAbwAAAAAAbwAAAAABfwAAAAAAfwAAAAAAUAAAAAAASAAAAAAASAAAAAAAUAAAAAAAfwAAAAAAXgAAAAACMAAAAAADXgAAAAACfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbgAAAAAAcQAAAAADMAAAAAADMAAAAAABMAAAAAABMAAAAAADcQAAAAACbgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAcQAAAAAAcQAAAAACcQAAAAADcQAAAAACcQAAAAAAcQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAcQAAAAAAcQAAAAADcQAAAAAAfwAAAAAAcQAAAAAAcQAAAAAAcQAAAAADcQAAAAADcQAAAAABcQAAAAADbwAAAAADfwAAAAAAfwAAAAAAfwAAAAAAbwAAAAAAbgAAAAAAcQAAAAABcQAAAAADcQAAAAACSAAAAAAAcQAAAAACcQAAAAAAcQAAAAADcQAAAAABcQAAAAABcQAAAAABfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAcQAAAAABcQAAAAABcQAAAAADfwAAAAAAcQAAAAADcQAAAAABcQAAAAADcQAAAAACcQAAAAACcQAAAAADbwAAAAAAbwAAAAADfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAcQAAAAABcQAAAAABcQAAAAAAfwAAAAAAfwAAAAAASAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAbgAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAcQAAAAAAcQAAAAAAcQAAAAABUAAAAAAAcQAAAAADcQAAAAACcQAAAAADfwAAAAAAcQAAAAAAcQAAAAACbgAAAAAAbgAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAcQAAAAADcQAAAAABcQAAAAABSAAAAAAAcQAAAAAAcQAAAAADcQAAAAAAfwAAAAAAcQAAAAAAcgAAAAABbwAAAAABbwAAAAABfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAcQAAAAABcQAAAAACcQAAAAABfwAAAAAAcQAAAAACcQAAAAAAcQAAAAAASAAAAAAAcQAAAAADcgAAAAACfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAcQAAAAAAcQAAAAADcQAAAAACfwAAAAAAcQAAAAABcQAAAAABfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbwAAAAAAbwAAAAACbwAAAAADbgAAAAAAcQAAAAAAcQAAAAACcQAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbwAAAAADbwAAAAACbwAAAAABfwAAAAAAcQAAAAACcQAAAAABcQAAAAACcQAAAAABcQAAAAADcQAAAAAC version: 6 0,-1: ind: 0,-1 - tiles: fwAAAAAAfwAAAAAAfwAAAAAAAQAAAAAAYAAAAAADYAAAAAAAYAAAAAAAYAAAAAADfwAAAAAAXgAAAAAAMAAAAAAAXgAAAAAAXgAAAAACXgAAAAABXgAAAAAAXgAAAAABfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAATwAAAAADfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAACMAAAAAAAXgAAAAACUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAbgAAAAAAXgAAAAAAXgAAAAADXgAAAAABXgAAAAABXgAAAAABTwAAAAADXgAAAAAAMAAAAAADXgAAAAADXgAAAAABXgAAAAACXgAAAAABUAAAAAAAbwAAAAAAbwAAAAABfwAAAAAAXgAAAAABXgAAAAACXgAAAAACXgAAAAAAXgAAAAACTwAAAAACXgAAAAABXgAAAAAAXgAAAAACXgAAAAACXgAAAAADXgAAAAACUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAABXgAAAAADXgAAAAADXgAAAAAAXgAAAAACfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAATwAAAAACfwAAAAAAUAAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAAAXgAAAAACXgAAAAACXgAAAAADXgAAAAACfwAAAAAAXgAAAAACXgAAAAADXgAAAAADXgAAAAAAXgAAAAADUAAAAAAAfwAAAAAAbwAAAAACbwAAAAAAfwAAAAAAMAAAAAAAMAAAAAAAMAAAAAACMAAAAAACMAAAAAABTwAAAAACXgAAAAABMAAAAAADMAAAAAAAMAAAAAAAXgAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAATwAAAAADTwAAAAACfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAAAXgAAAAAAXgAAAAABXgAAAAACXgAAAAAAUAAAAAAAfwAAAAAAXgAAAAABXgAAAAACXgAAAAABXgAAAAAAXgAAAAABXgAAAAAAXgAAAAABXgAAAAACfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAUAAAAAAAbgAAAAAAXgAAAAAAMAAAAAAAMAAAAAADXgAAAAACXgAAAAABMAAAAAAAMAAAAAADXgAAAAAATwAAAAAAXgAAAAABXgAAAAACXgAAAAACXgAAAAABXgAAAAACUAAAAAAAfwAAAAAAXgAAAAABXgAAAAABXgAAAAACXgAAAAACXgAAAAACXgAAAAAAXgAAAAACXgAAAAABfwAAAAAAXgAAAAABXgAAAAABXgAAAAADXgAAAAABXgAAAAABUAAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAXgAAAAACXgAAAAADXgAAAAACXgAAAAABXgAAAAADfwAAAAAAXgAAAAAAXgAAAAACMAAAAAAAMAAAAAADXgAAAAAAXgAAAAAAXgAAAAACMAAAAAABXgAAAAAAfwAAAAAAXgAAAAAAMAAAAAAAMAAAAAAAMAAAAAABXgAAAAADbQAAAAAAXgAAAAAAXgAAAAABMAAAAAACMAAAAAAAXgAAAAAAXgAAAAACMAAAAAADXgAAAAAANQAAAAADfwAAAAAAXgAAAAACXgAAAAADXgAAAAACXgAAAAAAXgAAAAABfwAAAAAAfwAAAAAATwAAAAAAfwAAAAAAfwAAAAAATwAAAAABfwAAAAAAMAAAAAAAXgAAAAAANQAAAAABfwAAAAAAfwAAAAAAfwAAAAAATwAAAAADfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAADXgAAAAAANQAAAAAANQAAAAABXgAAAAADXgAAAAABMAAAAAAAXgAAAAABXgAAAAADbQAAAAAAXgAAAAABXgAAAAAAXgAAAAAAXgAAAAACXgAAAAACXgAAAAACXgAAAAADMAAAAAAAXgAAAAAAXgAAAAADMAAAAAAAXgAAAAAD + tiles: fwAAAAAAfwAAAAAAfwAAAAAAAQAAAAAAYAAAAAADYAAAAAAAYAAAAAAAYAAAAAADfwAAAAAAXgAAAAAAMAAAAAAAXgAAAAAAXgAAAAACXgAAAAABXgAAAAAAXgAAAAABfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAATwAAAAADUAAAAAAAUAAAAAAAfwAAAAAAXgAAAAACMAAAAAAAXgAAAAACUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAbgAAAAAAXgAAAAAAXgAAAAADXgAAAAABXgAAAAABXgAAAAABTwAAAAADXgAAAAAAMAAAAAADXgAAAAADXgAAAAABXgAAAAACXgAAAAABUAAAAAAAbwAAAAAAbwAAAAABfwAAAAAAXgAAAAABXgAAAAACXgAAAAACXgAAAAAAXgAAAAACTwAAAAACXgAAAAABXgAAAAAAXgAAAAACXgAAAAACXgAAAAADXgAAAAACUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAABXgAAAAADXgAAAAADXgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAATwAAAAACfwAAAAAAUAAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAAAXgAAAAACXgAAAAACXgAAAAADXgAAAAACUAAAAAAAXgAAAAACXgAAAAADXgAAAAADXgAAAAAAXgAAAAADUAAAAAAAfwAAAAAAbwAAAAACbwAAAAAAfwAAAAAAMAAAAAAAMAAAAAAAMAAAAAACMAAAAAACMAAAAAABTwAAAAACXgAAAAABMAAAAAADMAAAAAAAMAAAAAAAXgAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAATwAAAAADTwAAAAACfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAAAXgAAAAAAXgAAAAABXgAAAAACXgAAAAAAUAAAAAAAfwAAAAAAXgAAAAABXgAAAAACXgAAAAABXgAAAAAAXgAAAAABXgAAAAAAXgAAAAABXgAAAAACfwAAAAAAfwAAAAAAUAAAAAAAbQAAAAAAbQAAAAAAUAAAAAAAUAAAAAAAbgAAAAAAXgAAAAAAMAAAAAAAMAAAAAADXgAAAAACXgAAAAABMAAAAAAAMAAAAAADXgAAAAAATwAAAAAAXgAAAAABXgAAAAACXgAAAAACXgAAAAABXgAAAAACUAAAAAAAfwAAAAAAXgAAAAABXgAAAAABXgAAAAACXgAAAAACXgAAAAACXgAAAAAAXgAAAAACXgAAAAABfwAAAAAAXgAAAAABXgAAAAABXgAAAAADXgAAAAABXgAAAAABUAAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAXgAAAAACXgAAAAADXgAAAAACXgAAAAABXgAAAAADUAAAAAAAXgAAAAAAXgAAAAACMAAAAAAAMAAAAAADXgAAAAAAXgAAAAAAXgAAAAACMAAAAAABXgAAAAAAUAAAAAAAXgAAAAAAMAAAAAAAMAAAAAAAMAAAAAABXgAAAAADbQAAAAAAXgAAAAAAXgAAAAABMAAAAAACMAAAAAAAXgAAAAAAXgAAAAACMAAAAAADXgAAAAAANQAAAAADUAAAAAAAXgAAAAACXgAAAAADXgAAAAACXgAAAAAAXgAAAAABfwAAAAAAfwAAAAAATwAAAAAAUAAAAAAAUAAAAAAATwAAAAABfwAAAAAAMAAAAAAAXgAAAAAANQAAAAABfwAAAAAAfwAAAAAAfwAAAAAATwAAAAADfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAADXgAAAAAANQAAAAAANQAAAAABXgAAAAADXgAAAAABMAAAAAAAXgAAAAABXgAAAAADbQAAAAAAXgAAAAABXgAAAAAAXgAAAAAAXgAAAAACXgAAAAACXgAAAAACXgAAAAADMAAAAAAAXgAAAAAAXgAAAAADMAAAAAAAXgAAAAAD version: 6 -1,0: ind: -1,0 - tiles: XgAAAAABXgAAAAACXgAAAAACMAAAAAAAbQAAAAAAXgAAAAABXgAAAAABXgAAAAACMAAAAAACXgAAAAACXgAAAAACXgAAAAACMAAAAAABfwAAAAAAMAAAAAAAMAAAAAABXgAAAAABXgAAAAADXgAAAAABXgAAAAACfwAAAAAAXgAAAAAAXgAAAAACXgAAAAADXgAAAAACXgAAAAACXgAAAAACXgAAAAADXgAAAAABbQAAAAAAXgAAAAACXgAAAAABfwAAAAAATwAAAAACTwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAACXgAAAAADXgAAAAAAfwAAAAAANQAAAAAAXgAAAAABXgAAAAACXgAAAAADXgAAAAADQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfwAAAAAAXgAAAAACMAAAAAACXgAAAAABfwAAAAAANQAAAAACXgAAAAADMAAAAAADMAAAAAADXgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfwAAAAAAXgAAAAAAXgAAAAAAMAAAAAADfwAAAAAAXgAAAAADMAAAAAAAXgAAAAACXgAAAAABXgAAAAAAXgAAAAABXgAAAAAAXgAAAAABXgAAAAADXgAAAAAAXgAAAAACTwAAAAABXgAAAAADXgAAAAADXgAAAAABfwAAAAAAfwAAAAAAfwAAAAAAMAAAAAABMAAAAAAAXgAAAAAAMAAAAAABMAAAAAAAXgAAAAACMAAAAAAAMAAAAAAAXgAAAAAATwAAAAABXgAAAAAAXgAAAAAAXgAAAAACXgAAAAABfwAAAAAAfwAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAABXgAAAAADQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfwAAAAAAXgAAAAAAMAAAAAAAXgAAAAABXgAAAAACbgAAAAAAbwAAAAACfwAAAAAALwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfwAAAAAAfwAAAAAAXgAAAAABMAAAAAACXgAAAAABfwAAAAAAfwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAAfwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAfwAAAAAAXgAAAAAAXgAAAAAAfwAAAAAAfwAAAAAAbwAAAAABLwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAATwAAAAAAXgAAAAABXgAAAAABfwAAAAAAbgAAAAAAbgAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAAfwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAfwAAAAAAMAAAAAACXgAAAAABbQAAAAAAbgAAAAAAbgAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAAfwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAfwAAAAAAXgAAAAAAMAAAAAACfwAAAAAAbwAAAAABbwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAXgAAAAADXgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAAfwAAAAAAPwAAAAAAPwAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAXgAAAAABXgAAAAABbgAAAAAAfwAAAAAAfwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAA + tiles: XgAAAAABXgAAAAACXgAAAAACMAAAAAAAbQAAAAAAXgAAAAABXgAAAAABXgAAAAACMAAAAAACXgAAAAACXgAAAAACXgAAAAACMAAAAAABfwAAAAAAMAAAAAAAMAAAAAABXgAAAAABXgAAAAADXgAAAAABXgAAAAACUAAAAAAAXgAAAAAAXgAAAAACXgAAAAADXgAAAAACXgAAAAACXgAAAAACXgAAAAADXgAAAAABbQAAAAAAXgAAAAACXgAAAAABfwAAAAAATwAAAAACTwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAXgAAAAACXgAAAAADXgAAAAAAfwAAAAAANQAAAAAAXgAAAAABPQAAAAAAPQAAAAAAPQAAAAAAUAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfwAAAAAAXgAAAAACMAAAAAACXgAAAAABUAAAAAAANQAAAAACXgAAAAADPQAAAAAAPQAAAAAAPQAAAAAAXgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAUAAAAAAAXgAAAAAAXgAAAAAAMAAAAAADUAAAAAAAXgAAAAADMAAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAXgAAAAABXgAAAAAAXgAAAAABXgAAAAADXgAAAAAAXgAAAAACXgAAAAAAXgAAAAADXgAAAAADXgAAAAABfwAAAAAAfwAAAAAAfwAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAUAAAAAAAMAAAAAAAXgAAAAACMAAAAAAAMAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAACXgAAAAABfwAAAAAAfwAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAUAAAAAAAXgAAAAADQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfwAAAAAAXgAAAAAAMAAAAAAAXgAAAAABXgAAAAACbgAAAAAAbwAAAAACfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfwAAAAAAfwAAAAAAXgAAAAABMAAAAAACXgAAAAABfwAAAAAAfwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAAfwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAfwAAAAAAXgAAAAAAXgAAAAAAfwAAAAAAfwAAAAAAbwAAAAABLwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAATwAAAAAAXgAAAAABXgAAAAABUAAAAAAAbgAAAAAAbgAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAAfwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAUAAAAAAAMAAAAAACXgAAAAABbQAAAAAAbgAAAAAAbgAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAAfwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAfwAAAAAAXgAAAAAAMAAAAAACUAAAAAAAbwAAAAABbwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAXgAAAAADXgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAAfwAAAAAAPwAAAAAAPwAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAXgAAAAABXgAAAAABbgAAAAAAfwAAAAAAfwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAA version: 6 -1,-1: ind: -1,-1 - tiles: fwAAAAAAXgAAAAADXgAAAAAAXgAAAAADXgAAAAABXgAAAAACfwAAAAAAXgAAAAAAXgAAAAAAUAAAAAAAfwAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAACXgAAAAABMAAAAAACXgAAAAAAXgAAAAADXgAAAAADMAAAAAACXgAAAAADXgAAAAADXgAAAAACXgAAAAACbgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAABXgAAAAACXgAAAAADMAAAAAAAXgAAAAAAXgAAAAAAXgAAAAADMAAAAAACXgAAAAADXgAAAAABXgAAAAACfwAAAAAAbwAAAAAAbwAAAAACfwAAAAAAfwAAAAAAXgAAAAABNQAAAAABNQAAAAACNQAAAAADfwAAAAAAfwAAAAAAfwAAAAAATwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAABfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAewAAAAADewAAAAAAewAAAAAAewAAAAADewAAAAADewAAAAADewAAAAADewAAAAABfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAADfwAAAAAALAAAAAAALAAAAAAAfwAAAAAAewAAAAAAewAAAAAADgAAAAABDgAAAAADDgAAAAACDgAAAAABDgAAAAADDgAAAAABfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAABfwAAAAAALAAAAAAALAAAAAAATwAAAAACewAAAAACewAAAAAADgAAAAACDgAAAAAAMAAAAAACMAAAAAACMAAAAAABMAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAADfwAAAAAALAAAAAAALAAAAAAAfwAAAAAAewAAAAABewAAAAABDgAAAAABMAAAAAADDgAAAAAADgAAAAABDgAAAAADDgAAAAACfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAewAAAAADewAAAAACDgAAAAAAMAAAAAABDgAAAAADDgAAAAABDgAAAAACDgAAAAABbgAAAAAAfwAAAAAAfwAAAAAAXgAAAAABfwAAAAAAewAAAAACewAAAAACfwAAAAAAewAAAAAAewAAAAACDgAAAAADMAAAAAABDgAAAAADDgAAAAADDgAAAAADDgAAAAACfwAAAAAAbwAAAAACbwAAAAADXgAAAAADfwAAAAAAewAAAAADewAAAAAATwAAAAAAewAAAAABewAAAAADDgAAAAABMAAAAAAADgAAAAABDgAAAAACDgAAAAAAbQAAAAAAfwAAAAAAbgAAAAAAfwAAAAAAXgAAAAABfwAAAAAAewAAAAABewAAAAACfwAAAAAAewAAAAADewAAAAACDgAAAAABDgAAAAAADgAAAAADDgAAAAACDgAAAAAAbQAAAAAAfwAAAAAAXgAAAAACMAAAAAADXgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAewAAAAADewAAAAABDgAAAAACDgAAAAACfwAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAfwAAAAAANQAAAAACXgAAAAAAXgAAAAADNQAAAAABNQAAAAAANQAAAAABfwAAAAAAfwAAAAAAfwAAAAAATwAAAAADfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAANQAAAAADXgAAAAADXgAAAAACXgAAAAADMAAAAAADXgAAAAABbQAAAAAAXgAAAAADXgAAAAADMAAAAAACXgAAAAACXgAAAAADXgAAAAADMAAAAAABXgAAAAAAbQAAAAAAXgAAAAAAXgAAAAAB + tiles: fwAAAAAAXgAAAAADXgAAAAAAXgAAAAADXgAAAAABXgAAAAACUAAAAAAAXgAAAAAAXgAAAAAAUAAAAAAAfwAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAACXgAAAAABMAAAAAACXgAAAAAAXgAAAAADXgAAAAADMAAAAAACXgAAAAADXgAAAAADXgAAAAACXgAAAAACbgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAABXgAAAAACXgAAAAADMAAAAAAAXgAAAAAAXgAAAAAAXgAAAAADMAAAAAACXgAAAAADXgAAAAABXgAAAAACfwAAAAAAbwAAAAAAbwAAAAACfwAAAAAAfwAAAAAAXgAAAAABNQAAAAABNQAAAAACNQAAAAADfwAAAAAAfwAAAAAAUAAAAAAATwAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAABfwAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAewAAAAADewAAAAAAewAAAAAAewAAAAADewAAAAADewAAAAADewAAAAADewAAAAABfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAADfwAAAAAALAAAAAAALAAAAAAAfwAAAAAAewAAAAAAewAAAAAADgAAAAABDgAAAAADDgAAAAACDgAAAAABDgAAAAADDgAAAAABfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAABfwAAAAAALAAAAAAALAAAAAAATwAAAAACewAAAAACewAAAAAADgAAAAACDgAAAAAAMAAAAAACMAAAAAACMAAAAAABMAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAADfwAAAAAALAAAAAAALAAAAAAAfwAAAAAAewAAAAABewAAAAABDgAAAAABMAAAAAADDgAAAAAADgAAAAABDgAAAAADDgAAAAACfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAewAAAAADewAAAAACDgAAAAAAMAAAAAABDgAAAAADDgAAAAABDgAAAAACDgAAAAABbgAAAAAAfwAAAAAAfwAAAAAAXgAAAAABfwAAAAAAewAAAAACewAAAAACfwAAAAAAewAAAAAAewAAAAACDgAAAAADMAAAAAABDgAAAAADDgAAAAADDgAAAAADDgAAAAACfwAAAAAAbwAAAAACbwAAAAADXgAAAAADfwAAAAAAewAAAAADewAAAAAATwAAAAAAewAAAAABewAAAAADDgAAAAABMAAAAAAADgAAAAABDgAAAAACDgAAAAAAbQAAAAAAfwAAAAAAbgAAAAAAfwAAAAAAXgAAAAABfwAAAAAAewAAAAABewAAAAACfwAAAAAAewAAAAADewAAAAACDgAAAAABDgAAAAAADgAAAAADDgAAAAACDgAAAAAAbQAAAAAAfwAAAAAAXgAAAAACMAAAAAADXgAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAewAAAAADewAAAAABDgAAAAACDgAAAAACfwAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAfwAAAAAANQAAAAACXgAAAAAAXgAAAAADNQAAAAABNQAAAAAANQAAAAABfwAAAAAAfwAAAAAAUAAAAAAATwAAAAADfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAfwAAAAAANQAAAAADXgAAAAADXgAAAAACXgAAAAADMAAAAAADXgAAAAABbQAAAAAAXgAAAAADXgAAAAADMAAAAAACXgAAAAACXgAAAAADXgAAAAADMAAAAAABXgAAAAAAbQAAAAAAXgAAAAAAXgAAAAAB version: 6 1,0: ind: 1,0 - tiles: bQAAAAAAXgAAAAAAMAAAAAABMAAAAAADXgAAAAABMAAAAAACMAAAAAAAXgAAAAACMAAAAAABMAAAAAADXgAAAAAAMAAAAAADMAAAAAADXgAAAAAAMAAAAAACMAAAAAACfwAAAAAAXgAAAAAAXgAAAAACXgAAAAAAXgAAAAAAXgAAAAADXgAAAAACXgAAAAADXgAAAAAAXgAAAAACXgAAAAADXgAAAAACXgAAAAACXgAAAAABXgAAAAACXgAAAAABfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAAAXgAAAAACXgAAAAAAXgAAAAADfwAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAcQAAAAADcQAAAAABcQAAAAABcQAAAAACcQAAAAABcQAAAAABcQAAAAABfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAcQAAAAABcQAAAAABcQAAAAAAcQAAAAACcQAAAAAAcQAAAAAAcQAAAAABfwAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAfwAAAAAAcQAAAAABcQAAAAADcQAAAAAAcQAAAAACcQAAAAAAcQAAAAACcQAAAAABfwAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAfwAAAAAAfgAAAAAAAAAAAAAASAAAAAAAcQAAAAABcQAAAAAAcQAAAAADcQAAAAADcQAAAAABcQAAAAAAcQAAAAADbQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAfwAAAAAAfgAAAAAAfwAAAAAASAAAAAAAcQAAAAACcQAAAAADcQAAAAADcQAAAAADcQAAAAABcQAAAAAAcQAAAAAAfwAAAAAAIAAAAAAAIAAAAAAAbQAAAAAAIAAAAAAAfwAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAcQAAAAACcQAAAAADcQAAAAADcQAAAAABcQAAAAAAcQAAAAACcQAAAAABfwAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAfwAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAfwAAAAAASAAAAAAAfwAAAAAAfwAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAfwAAAAAAfgAAAAAAfwAAAAAAcQAAAAABcQAAAAAAcQAAAAADcQAAAAAAfwAAAAAAcQAAAAACcQAAAAAAcQAAAAACfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfwAAAAAAcgAAAAABcgAAAAABcgAAAAACcQAAAAADfwAAAAAAcQAAAAADcQAAAAADcQAAAAABfwAAAAAAcQAAAAABcQAAAAACcQAAAAABcQAAAAAAfwAAAAAAfgAAAAAAfwAAAAAAcgAAAAAAcgAAAAADcgAAAAAAcQAAAAADfwAAAAAAcQAAAAACcQAAAAABcQAAAAADfwAAAAAAcQAAAAAAcQAAAAADcQAAAAAAcQAAAAABfwAAAAAAfgAAAAAAfwAAAAAAcQAAAAAAcQAAAAACcQAAAAABcQAAAAAAfwAAAAAAcQAAAAAAcQAAAAABcQAAAAABbQAAAAAAcQAAAAACcQAAAAABcQAAAAABcQAAAAABfwAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAASAAAAAAAfwAAAAAAfwAAAAAAcQAAAAABcQAAAAADcQAAAAADUAAAAAAAcQAAAAACcQAAAAABcQAAAAAAcQAAAAACfwAAAAAAbgAAAAAAfwAAAAAAcQAAAAADcQAAAAADcQAAAAABcQAAAAADSAAAAAAAcQAAAAACcQAAAAADcQAAAAAAUAAAAAAAcQAAAAACcQAAAAACcQAAAAACcQAAAAABewAAAAAAewAAAAADewAAAAAB + tiles: bQAAAAAAXgAAAAAAMAAAAAABMAAAAAADXgAAAAABMAAAAAACMAAAAAAAXgAAAAACMAAAAAABMAAAAAADXgAAAAAAMAAAAAADMAAAAAADXgAAAAAAMAAAAAACMAAAAAACUAAAAAAAXgAAAAAAXgAAAAACXgAAAAAAXgAAAAAAXgAAAAADXgAAAAACXgAAAAADXgAAAAAAXgAAAAACXgAAAAADXgAAAAACXgAAAAACXgAAAAABXgAAAAACXgAAAAABfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAAAXgAAAAACXgAAAAAAXgAAAAADfwAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAcQAAAAADcQAAAAABcQAAAAABcQAAAAACcQAAAAABcQAAAAABcQAAAAABfwAAAAAAfwAAAAAAbQAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAcQAAAAABcQAAAAABcQAAAAAAcQAAAAACcQAAAAAAcQAAAAAAcQAAAAABfwAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAfwAAAAAAcQAAAAABcQAAAAADcQAAAAAAcQAAAAACcQAAAAAAcQAAAAACcQAAAAABfwAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAfwAAAAAAfgAAAAAAAAAAAAAASAAAAAAAcQAAAAABcQAAAAAAcQAAAAADcQAAAAADcQAAAAABcQAAAAAAcQAAAAADbQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAfwAAAAAAfgAAAAAAfwAAAAAASAAAAAAAcQAAAAACcQAAAAADcQAAAAADcQAAAAADcQAAAAABcQAAAAAAcQAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAbQAAAAAAUAAAAAAAfwAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAcQAAAAACcQAAAAADcQAAAAADcQAAAAABcQAAAAAAcQAAAAACcQAAAAABfwAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAfwAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAUAAAAAAASAAAAAAAfwAAAAAAfwAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAfwAAAAAAfgAAAAAAfwAAAAAAcQAAAAABcQAAAAAAcQAAAAADcQAAAAAAfwAAAAAAcQAAAAACcQAAAAAAcQAAAAACfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfwAAAAAAcgAAAAABcgAAAAABcgAAAAACcQAAAAADUAAAAAAAcQAAAAADcQAAAAADcQAAAAABfwAAAAAAcQAAAAABcQAAAAACcQAAAAABcQAAAAAAfwAAAAAAfgAAAAAAfwAAAAAAcgAAAAAAcgAAAAADcgAAAAAAcQAAAAADUAAAAAAAcQAAAAACcQAAAAABcQAAAAADfwAAAAAAcQAAAAAAcQAAAAADcQAAAAAAcQAAAAABfwAAAAAAfgAAAAAAfwAAAAAAcQAAAAAAcQAAAAACcQAAAAABcQAAAAAAfwAAAAAAcQAAAAAAcQAAAAABcQAAAAABbQAAAAAAcQAAAAACcQAAAAABcQAAAAABcQAAAAABfwAAAAAAfgAAAAAAfgAAAAAAUAAAAAAAfwAAAAAASAAAAAAAfwAAAAAAfwAAAAAAcQAAAAABcQAAAAADcQAAAAADUAAAAAAAcQAAAAACcQAAAAABcQAAAAAAcQAAAAACfwAAAAAAfwAAAAAAfwAAAAAAcQAAAAADcQAAAAADcQAAAAABcQAAAAADSAAAAAAAcQAAAAACcQAAAAADcQAAAAAAUAAAAAAAcQAAAAACcQAAAAACcQAAAAACcQAAAAABewAAAAAAewAAAAADewAAAAAB version: 6 1,-1: ind: 1,-1 - tiles: fwAAAAAAfwAAAAAAfwAAAAAAbgAAAAAAXgAAAAACXgAAAAADXgAAAAACTwAAAAACXgAAAAACMAAAAAADXgAAAAABXgAAAAACXgAAAAABXgAAAAACMAAAAAACbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAACXgAAAAADXgAAAAAAfwAAAAAAXgAAAAAAXgAAAAAAMAAAAAABXgAAAAAAXgAAAAACXgAAAAADXgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAABXgAAAAAAXgAAAAAAXgAAAAACfwAAAAAAXgAAAAACXgAAAAAAXgAAAAADfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAADXgAAAAACXgAAAAAAXgAAAAACTwAAAAADXgAAAAABXgAAAAAAXgAAAAAAfwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAABXgAAAAACXgAAAAAAXgAAAAABfwAAAAAAXgAAAAAAXgAAAAADXgAAAAACfwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAMAAAAAADXgAAAAADXgAAAAAAfwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbgAAAAAAXgAAAAACXgAAAAABMAAAAAAAXgAAAAADfwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbwAAAAACfwAAAAAAXgAAAAADXgAAAAAAXgAAAAAAMAAAAAABfwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAfwAAAAAAfwAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAACXgAAAAADXgAAAAADXgAAAAAAfwAAAAAAUAAAAAAAMAAAAAABMAAAAAAAfwAAAAAAfwAAAAAAewAAAAAAewAAAAADGAAAAAAAGAAAAAAAGAAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAIAAAAAACIAAAAAABIAAAAAADIAAAAAADfwAAAAAAewAAAAACewAAAAABGAAAAAAAGAAAAAAAGAAAAAAAfwAAAAAAMAAAAAABXgAAAAABXgAAAAADXgAAAAACUAAAAAAAIAAAAAADIAAAAAAAIAAAAAADIAAAAAAAfwAAAAAAewAAAAADewAAAAACewAAAAADewAAAAABewAAAAACTwAAAAADXgAAAAADMAAAAAAAXgAAAAACXgAAAAADbQAAAAAAIAAAAAACIAAAAAADIAAAAAABIAAAAAACfwAAAAAAewAAAAADewAAAAADewAAAAABewAAAAADewAAAAACfwAAAAAAXgAAAAADXgAAAAACMAAAAAADXgAAAAAAUAAAAAAAMAAAAAAAIAAAAAACMAAAAAACIAAAAAADfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAAAXgAAAAABXgAAAAABMAAAAAABfwAAAAAAMAAAAAADIAAAAAACMAAAAAADIAAAAAADfwAAAAAAXgAAAAAAXgAAAAACXgAAAAABXgAAAAADXgAAAAADXgAAAAADXgAAAAADXgAAAAACXgAAAAACXgAAAAACfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAbQAAAAAAfwAAAAAAXgAAAAADXgAAAAAAXgAAAAADXgAAAAAAXgAAAAADXgAAAAABXgAAAAADXgAAAAABXgAAAAACXgAAAAAAXgAAAAABXgAAAAADXgAAAAAAXgAAAAABXgAAAAAA + tiles: fwAAAAAAfwAAAAAAfwAAAAAAbgAAAAAAXgAAAAACXgAAAAADXgAAAAACTwAAAAACXgAAAAACMAAAAAADXgAAAAABXgAAAAACXgAAAAABXgAAAAACMAAAAAACbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAACXgAAAAADXgAAAAAAUAAAAAAAXgAAAAAAXgAAAAAAMAAAAAABXgAAAAAAXgAAAAACXgAAAAADXgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAABXgAAAAAAXgAAAAAAXgAAAAACUAAAAAAAXgAAAAACXgAAAAAAXgAAAAADfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAADXgAAAAACXgAAAAAAXgAAAAACTwAAAAADXgAAAAABXgAAAAAAXgAAAAAAfwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAABXgAAAAACXgAAAAAAXgAAAAABfwAAAAAAXgAAAAAAXgAAAAADXgAAAAACfwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAMAAAAAADXgAAAAADXgAAAAAAfwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbgAAAAAAXgAAAAACXgAAAAABMAAAAAAAXgAAAAADfwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbwAAAAACfwAAAAAAXgAAAAADXgAAAAAAXgAAAAAAMAAAAAABfwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAfwAAAAAAfwAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAACXgAAAAADXgAAAAADXgAAAAAAfwAAAAAAUAAAAAAAMAAAAAABMAAAAAAAfwAAAAAAfwAAAAAAewAAAAAAewAAAAADGAAAAAAAGAAAAAAAGAAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAIAAAAAACIAAAAAABIAAAAAADIAAAAAADUAAAAAAAewAAAAACewAAAAABGAAAAAAAGAAAAAAAGAAAAAAAfwAAAAAAMAAAAAABXgAAAAABXgAAAAADXgAAAAACUAAAAAAAIAAAAAADIAAAAAAAIAAAAAADIAAAAAAAUAAAAAAAewAAAAADewAAAAACewAAAAADewAAAAABewAAAAACTwAAAAADXgAAAAADMAAAAAAAXgAAAAACXgAAAAADUAAAAAAAIAAAAAACIAAAAAADIAAAAAABIAAAAAACfwAAAAAAewAAAAADewAAAAADewAAAAABewAAAAADewAAAAACfwAAAAAAXgAAAAADXgAAAAACMAAAAAADXgAAAAAAUAAAAAAAMAAAAAAAIAAAAAACMAAAAAACIAAAAAADfwAAAAAAfwAAAAAAbQAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAXgAAAAAAXgAAAAABXgAAAAABMAAAAAABfwAAAAAAMAAAAAADIAAAAAACMAAAAAADIAAAAAADfwAAAAAAXgAAAAAAXgAAAAACXgAAAAABXgAAAAADXgAAAAADXgAAAAADXgAAAAADXgAAAAACXgAAAAACXgAAAAACfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAXgAAAAADXgAAAAAAXgAAAAADXgAAAAAAXgAAAAADXgAAAAABXgAAAAADXgAAAAABXgAAAAACXgAAAAAAXgAAAAABXgAAAAADXgAAAAAAXgAAAAABXgAAAAAA version: 6 -1,1: ind: -1,1 - tiles: fwAAAAAALwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAfwAAAAAAbAAAAAACXgAAAAADXgAAAAADfwAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbgAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAfwAAAAAAbAAAAAABXgAAAAAAXgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAATwAAAAAAbAAAAAABXgAAAAACXgAAAAACIAAAAAAAIAAAAAAAfwAAAAAAGAAAAAAAGAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAADgAAAAAADgAAAAACDgAAAAAAfwAAAAAAbAAAAAABXgAAAAABXgAAAAABbQAAAAAAIAAAAAAAfwAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAUAAAAAAADgAAAAADDgAAAAADDgAAAAAADgAAAAACfwAAAAAAbAAAAAABXgAAAAAAXgAAAAAAIAAAAAAAIAAAAAAAbgAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAUAAAAAAADgAAAAABDgAAAAACDgAAAAACDgAAAAAADgAAAAAAbAAAAAACXgAAAAAAXgAAAAADfwAAAAAAfwAAAAAAfwAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAUAAAAAAADgAAAAACDgAAAAAADgAAAAACDgAAAAACDgAAAAABbAAAAAABXgAAAAACXgAAAAACfwAAAAAAfgAAAAAAfwAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAUAAAAAAADgAAAAACDgAAAAACDgAAAAAADgAAAAABDgAAAAACbAAAAAAAXgAAAAAAXgAAAAAAfwAAAAAAfgAAAAAAfwAAAAAATwAAAAADfwAAAAAAfwAAAAAAfwAAAAAAZgAAAAAAawAAAAACawAAAAABawAAAAAAawAAAAAAawAAAAACZgAAAAABXgAAAAADXgAAAAACfwAAAAAAfwAAAAAAXgAAAAACXgAAAAADMAAAAAACXgAAAAACbQAAAAAAXgAAAAADMAAAAAAAXgAAAAACXgAAAAACXgAAAAAAMAAAAAAAXgAAAAACXgAAAAAAXgAAAAABbgAAAAAAfwAAAAAAXgAAAAACXgAAAAABXgAAAAAAMAAAAAAAbQAAAAAAXgAAAAACXgAAAAABMAAAAAAAXgAAAAABXgAAAAABXgAAAAADMAAAAAAAXgAAAAAAMAAAAAACfwAAAAAAfwAAAAAANQAAAAABNQAAAAADXgAAAAADXgAAAAAAfwAAAAAAXgAAAAACXgAAAAADXgAAAAAAfwAAAAAAXgAAAAAAXgAAAAAAXgAAAAADXgAAAAADXgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAfwAAAAAAewAAAAADewAAAAAAfwAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbgAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAbQAAAAAAewAAAAAAewAAAAADfwAAAAAAbwAAAAACfwAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAfwAAAAAAewAAAAADMAAAAAAC + tiles: fwAAAAAALwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAUAAAAAAAbAAAAAACXgAAAAADXgAAAAADfwAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbgAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAUAAAAAAAbAAAAAABXgAAAAAAXgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAATwAAAAAAbAAAAAABXgAAAAACXgAAAAACUAAAAAAAIAAAAAAAfwAAAAAAGAAAAAAAGAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAADgAAAAAADgAAAAACDgAAAAAAfwAAAAAAbAAAAAABXgAAAAABXgAAAAABbQAAAAAAIAAAAAAAfwAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAUAAAAAAADgAAAAADDgAAAAADDgAAAAAADgAAAAACfwAAAAAAbAAAAAABXgAAAAAAXgAAAAAAUAAAAAAAIAAAAAAAbgAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAUAAAAAAADgAAAAABDgAAAAACDgAAAAACDgAAAAAADgAAAAAAbAAAAAACXgAAAAAAXgAAAAADfwAAAAAAfwAAAAAAfwAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAUAAAAAAADgAAAAACDgAAAAAADgAAAAACDgAAAAACDgAAAAABbAAAAAABXgAAAAACXgAAAAACfwAAAAAAfgAAAAAAfwAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAUAAAAAAADgAAAAACDgAAAAACDgAAAAAADgAAAAABDgAAAAACbAAAAAAAXgAAAAAAXgAAAAAAfwAAAAAAfgAAAAAAfwAAAAAATwAAAAADUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAawAAAAACawAAAAABawAAAAAAawAAAAAAawAAAAACZgAAAAABXgAAAAADXgAAAAACfwAAAAAAfwAAAAAAXgAAAAACXgAAAAADMAAAAAACXgAAAAACbQAAAAAAXgAAAAADMAAAAAAAXgAAAAACXgAAAAACXgAAAAAAMAAAAAAAXgAAAAACXgAAAAAAXgAAAAABbgAAAAAAfwAAAAAAXgAAAAACXgAAAAABXgAAAAAAMAAAAAAAbQAAAAAAXgAAAAACXgAAAAABMAAAAAAAXgAAAAABXgAAAAABXgAAAAADMAAAAAAAXgAAAAAAMAAAAAACfwAAAAAAfwAAAAAANQAAAAABNQAAAAADXgAAAAADXgAAAAAAfwAAAAAAXgAAAAACXgAAAAADXgAAAAAAfwAAAAAAXgAAAAAAXgAAAAAAXgAAAAADXgAAAAADXgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAUAAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAfwAAAAAAewAAAAADewAAAAAAfwAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbgAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAbQAAAAAAewAAAAAAewAAAAADfwAAAAAAbwAAAAACfwAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAfwAAAAAAewAAAAADMAAAAAAC version: 6 0,1: ind: 0,1 - tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAcQAAAAADcQAAAAACcQAAAAABcQAAAAADcQAAAAADfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAcQAAAAABcQAAAAADfwAAAAAAfwAAAAAASAAAAAAASAAAAAAAfwAAAAAAfwAAAAAAIAAAAAAAIAAAAAAAfwAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAcQAAAAABcQAAAAABcQAAAAABfwAAAAAAcQAAAAABcQAAAAAAfwAAAAAASAAAAAAAIAAAAAAAIAAAAAAAfwAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAcQAAAAADcQAAAAADcQAAAAABfwAAAAAAcQAAAAADcQAAAAADfwAAAAAASAAAAAAAIAAAAAAAIAAAAAAAfwAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAcQAAAAABcQAAAAAAcQAAAAABfwAAAAAAcQAAAAACcQAAAAAAfwAAAAAASAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAcQAAAAADcQAAAAAAcQAAAAADTwAAAAAAcQAAAAABcQAAAAABfwAAAAAASAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAfwAAAAAAcQAAAAACcQAAAAABfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAATwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAcQAAAAADcQAAAAACfwAAAAAAcQAAAAADfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAewAAAAABewAAAAABewAAAAACewAAAAACfwAAAAAAcQAAAAAAcQAAAAABfwAAAAAAcQAAAAADfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAewAAAAAAewAAAAADewAAAAADewAAAAABTwAAAAAAcQAAAAADcQAAAAAASAAAAAAAcQAAAAABfwAAAAAAfwAAAAAAbwAAAAAAbwAAAAADfwAAAAAAfwAAAAAAfwAAAAAAewAAAAACewAAAAADewAAAAADewAAAAABfwAAAAAAcQAAAAADcQAAAAAAfwAAAAAAcQAAAAADfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAewAAAAAAewAAAAACewAAAAADewAAAAABfwAAAAAAfwAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAewAAAAACewAAAAABewAAAAACfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAMAAAAAABewAAAAABewAAAAABfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAewAAAAADMAAAAAABewAAAAACfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAA + tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAcQAAAAADcQAAAAACcQAAAAABcQAAAAADcQAAAAADfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAcQAAAAABcQAAAAADfwAAAAAAfwAAAAAASAAAAAAASAAAAAAAfwAAAAAAUAAAAAAAIAAAAAAAIAAAAAAAUAAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAcQAAAAABcQAAAAABcQAAAAABUAAAAAAAcQAAAAABcQAAAAAAfwAAAAAASAAAAAAAIAAAAAAAIAAAAAAAUAAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAcQAAAAADcQAAAAADcQAAAAABUAAAAAAAcQAAAAADcQAAAAADUAAAAAAASAAAAAAAIAAAAAAAIAAAAAAAUAAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAcQAAAAABcQAAAAAAcQAAAAABfwAAAAAAcQAAAAACcQAAAAAAUAAAAAAASAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAcQAAAAADcQAAAAAAcQAAAAADTwAAAAAAcQAAAAABcQAAAAABfwAAAAAASAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAfwAAAAAAcQAAAAACcQAAAAABfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAATwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAcQAAAAADcQAAAAACUAAAAAAAcQAAAAADfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAewAAAAABewAAAAACewAAAAACfwAAAAAAcQAAAAAAcQAAAAABUAAAAAAAcQAAAAADfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAewAAAAAAewAAAAADewAAAAADewAAAAABTwAAAAAAcQAAAAADcQAAAAAASAAAAAAAcQAAAAABfwAAAAAAfwAAAAAAbwAAAAAAbwAAAAADfwAAAAAAfwAAAAAAfwAAAAAAewAAAAACewAAAAADewAAAAADewAAAAABfwAAAAAAcQAAAAADcQAAAAAAfwAAAAAAcQAAAAADfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAewAAAAAAewAAAAACewAAAAADewAAAAABfwAAAAAAfwAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAewAAAAACewAAAAABewAAAAACfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAMAAAAAABewAAAAABewAAAAABfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAewAAAAADMAAAAAABewAAAAACfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAA version: 6 1,1: ind: 1,1 - tiles: cQAAAAACcQAAAAAAcQAAAAADcQAAAAAASAAAAAAAcQAAAAACcQAAAAACcQAAAAAAfwAAAAAAcQAAAAACcQAAAAACcQAAAAAAcQAAAAABewAAAAAAewAAAAAAewAAAAAAfwAAAAAASAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAcQAAAAABcQAAAAADcQAAAAABfwAAAAAAfwAAAAAASAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAfwAAAAAAcQAAAAAAcQAAAAAAcQAAAAACfwAAAAAAIAAAAAABIAAAAAADIAAAAAACIAAAAAADIAAAAAAAfwAAAAAAfwAAAAAASAAAAAAASAAAAAAAfwAAAAAASAAAAAAAfwAAAAAAcQAAAAADcQAAAAABcQAAAAAASAAAAAAAIAAAAAACIAAAAAABIAAAAAABIAAAAAAAIAAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAASAAAAAAAfwAAAAAAfwAAAAAASAAAAAAAfwAAAAAAfwAAAAAAIAAAAAABIAAAAAABIAAAAAABIAAAAAADIAAAAAACfwAAAAAAfwAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAcQAAAAADfwAAAAAAIAAAAAACIAAAAAAAIAAAAAABIAAAAAADIAAAAAACfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAcQAAAAACfwAAAAAAfwAAAAAASAAAAAAAIAAAAAADIAAAAAAAIAAAAAAAIAAAAAADIAAAAAADfwAAAAAAfwAAAAAAcQAAAAADcQAAAAACfwAAAAAAfwAAAAAAfwAAAAAAcQAAAAACcQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAcQAAAAABcQAAAAADfwAAAAAAfwAAAAAAcQAAAAAAfwAAAAAAcQAAAAAAfwAAAAAAfwAAAAAAcQAAAAACfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAcQAAAAABcQAAAAACfwAAAAAAfwAAAAAAcQAAAAADfwAAAAAAcQAAAAACcQAAAAACfwAAAAAAcQAAAAADcQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAcQAAAAABcQAAAAADfwAAAAAAcQAAAAADfwAAAAAAfwAAAAAAcQAAAAADcQAAAAAAcQAAAAACfwAAAAAAfwAAAAAAfwAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbwAAAAADfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbwAAAAAAbwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAMAAAAAACMAAAAAAAMAAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAA + tiles: cQAAAAACcQAAAAAAcQAAAAADcQAAAAAASAAAAAAAcQAAAAACcQAAAAACcQAAAAAAfwAAAAAAcQAAAAACcQAAAAACcQAAAAAAcQAAAAABewAAAAAAewAAAAAAewAAAAAAUAAAAAAASAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAcQAAAAABcQAAAAADcQAAAAABfwAAAAAAfwAAAAAASAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAfwAAAAAAcQAAAAAAcQAAAAAAcQAAAAACfwAAAAAAIAAAAAABIAAAAAADIAAAAAACIAAAAAADIAAAAAAAfwAAAAAAfwAAAAAASAAAAAAASAAAAAAAfwAAAAAASAAAAAAAfwAAAAAAcQAAAAADcQAAAAABcQAAAAAASAAAAAAAIAAAAAACIAAAAAABIAAAAAABIAAAAAAAIAAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAASAAAAAAAfwAAAAAAfwAAAAAASAAAAAAAfwAAAAAAfwAAAAAAIAAAAAABIAAAAAABIAAAAAABIAAAAAADIAAAAAACfwAAAAAAfwAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAcQAAAAADfwAAAAAAIAAAAAACIAAAAAAAIAAAAAABIAAAAAADIAAAAAACfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAcQAAAAACfwAAAAAAfwAAAAAASAAAAAAAIAAAAAADIAAAAAAAIAAAAAAAIAAAAAADIAAAAAADfwAAAAAAfwAAAAAAcQAAAAADcQAAAAACfwAAAAAAfwAAAAAAfwAAAAAAcQAAAAACcQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAcQAAAAABcQAAAAADfwAAAAAAfwAAAAAAcQAAAAAAfwAAAAAAcQAAAAAAfwAAAAAAfwAAAAAAcQAAAAACfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAcQAAAAABcQAAAAACfwAAAAAAfwAAAAAAcQAAAAADfwAAAAAAcQAAAAACcQAAAAACfwAAAAAAcQAAAAADcQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAcQAAAAABcQAAAAADfwAAAAAAcQAAAAADfwAAAAAAfwAAAAAAcQAAAAADcQAAAAAAcQAAAAACfwAAAAAAfwAAAAAAfwAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbwAAAAADfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbwAAAAAAbwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAMAAAAAACMAAAAAAAMAAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAA version: 6 1,-2: ind: 1,-2 - tiles: XgAAAAAAXgAAAAABUAAAAAAAXgAAAAAAXgAAAAABXgAAAAAAXgAAAAADfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAACXgAAAAABXgAAAAACXgAAAAADXgAAAAABXgAAAAADXgAAAAADfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAADXgAAAAACXgAAAAABXgAAAAABXgAAAAACXgAAAAABXgAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAADXgAAAAAAXgAAAAABXgAAAAADXgAAAAAAXgAAAAADXgAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAACXgAAAAADXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAABfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATwAAAAABXgAAAAABHgAAAAACHgAAAAACHgAAAAADHgAAAAADHgAAAAACfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATwAAAAADXgAAAAACHgAAAAACHQAAAAAAHQAAAAACHQAAAAABHQAAAAABfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAXgAAAAABHgAAAAACHQAAAAADHQAAAAACHQAAAAABHQAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAADXgAAAAACXgAAAAADbwAAAAADbwAAAAADbwAAAAACfwAAAAAAfwAAAAAAbwAAAAAAfwAAAAAAIAAAAAADIAAAAAADfwAAAAAAIAAAAAABfwAAAAAAXgAAAAABXgAAAAACXgAAAAAAXgAAAAADfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbwAAAAAAfwAAAAAAIAAAAAACIAAAAAABfwAAAAAAIAAAAAABfwAAAAAAXgAAAAABMAAAAAACXgAAAAAAMAAAAAADfwAAAAAAfwAAAAAAfwAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAIAAAAAAAfwAAAAAAXgAAAAABXgAAAAAAMAAAAAADXgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAIAAAAAAAIAAAAAADfwAAAAAAIAAAAAABfwAAAAAAXgAAAAACMAAAAAADXgAAAAAAMAAAAAACfwAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAIAAAAAAAIAAAAAACfwAAAAAAIAAAAAADfwAAAAAAXgAAAAADXgAAAAADXgAAAAABXgAAAAAAfwAAAAAAfwAAAAAAbwAAAAACbgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAMAAAAAADXgAAAAACXgAAAAACXgAAAAACXgAAAAADMAAAAAADXgAAAAACfwAAAAAA + tiles: XgAAAAAAXgAAAAABUAAAAAAAXgAAAAAAXgAAAAABXgAAAAAAXgAAAAADUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAACXgAAAAABXgAAAAACXgAAAAADXgAAAAABXgAAAAADXgAAAAADUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAADXgAAAAACXgAAAAABXgAAAAABXgAAAAACXgAAAAABXgAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAADXgAAAAAAXgAAAAABXgAAAAADXgAAAAAAXgAAAAADXgAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAACXgAAAAADXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAABfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATwAAAAABXgAAAAABHgAAAAACHgAAAAACHgAAAAADHgAAAAADHgAAAAACfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATwAAAAADXgAAAAACHgAAAAACHQAAAAAAHQAAAAACHQAAAAABHQAAAAABfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAXgAAAAABHgAAAAACHQAAAAADHQAAAAACHQAAAAABHQAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAUAAAAAAAbgAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAADXgAAAAACXgAAAAADbwAAAAADbwAAAAADbwAAAAACfwAAAAAAfwAAAAAAbwAAAAAAfwAAAAAAIAAAAAADIAAAAAADfwAAAAAAIAAAAAABfwAAAAAAXgAAAAABXgAAAAACXgAAAAAAXgAAAAADfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbwAAAAAAfwAAAAAAIAAAAAACIAAAAAABfwAAAAAAIAAAAAABfwAAAAAAXgAAAAABMAAAAAACXgAAAAAAMAAAAAADfwAAAAAAfwAAAAAAfwAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAIAAAAAAAfwAAAAAAXgAAAAABXgAAAAAAMAAAAAADXgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAIAAAAAAAIAAAAAADfwAAAAAAIAAAAAABfwAAAAAAXgAAAAACMAAAAAADXgAAAAAAMAAAAAACfwAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAIAAAAAAAIAAAAAACfwAAAAAAIAAAAAADfwAAAAAAXgAAAAADXgAAAAADXgAAAAABXgAAAAAAfwAAAAAAfwAAAAAAbwAAAAACbgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAbQAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAMAAAAAADXgAAAAACXgAAAAACXgAAAAACXgAAAAADMAAAAAADXgAAAAACfwAAAAAA version: 6 0,-2: ind: 0,-2 - tiles: LAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfwAAAAAALAAAAAAAewAAAAABfQAAAAABewAAAAABQwAAAAAAfwAAAAAAXgAAAAADXgAAAAABLAAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfwAAAAAALAAAAAAAewAAAAAAewAAAAACewAAAAABQwAAAAAAfwAAAAAAXgAAAAADXgAAAAACfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfQAAAAACewAAAAAAewAAAAAAQwAAAAAAfwAAAAAAXgAAAAADXgAAAAABJQAAAAAAJQAAAAACJQAAAAAAJQAAAAADJQAAAAAAJQAAAAAAfwAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAXgAAAAACXgAAAAACQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAfwAAAAAAfgAAAAAAfwAAAAAAXgAAAAACXgAAAAABXgAAAAADXgAAAAABfwAAAAAAXgAAAAABXgAAAAABQwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAXgAAAAADXgAAAAAAXgAAAAADXgAAAAACTwAAAAAAXgAAAAAATwAAAAADQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAXgAAAAACXgAAAAACUAAAAAAAXgAAAAAATwAAAAACXgAAAAADTwAAAAABJQAAAAADJQAAAAACJQAAAAABJQAAAAAAJQAAAAAAJQAAAAAAfwAAAAAAfgAAAAAAfwAAAAAAXgAAAAABXgAAAAABUAAAAAAAXgAAAAADfwAAAAAAXgAAAAADXgAAAAADfwAAAAAAfwAAAAAAfwAAAAAAJQAAAAAAJQAAAAABJQAAAAABfwAAAAAAfgAAAAAAfwAAAAAAXgAAAAAAXgAAAAAAUAAAAAAAXgAAAAABfwAAAAAAfwAAAAAAbgAAAAAAJQAAAAAAJQAAAAABfwAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAADXgAAAAABUAAAAAAAXgAAAAADfwAAAAAAbwAAAAADfwAAAAAAJQAAAAAAfwAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbwAAAAACbwAAAAACfwAAAAAAXgAAAAADXgAAAAACUAAAAAAAXgAAAAAAfwAAAAAAbwAAAAAAfwAAAAAAfwAAAAAAbwAAAAACfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbgAAAAAAXgAAAAABXgAAAAABUAAAAAAAXgAAAAABbgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAAAXgAAAAABUAAAAAAAXgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbgAAAAAAfwAAAAAAbwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAATwAAAAAATwAAAAACUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAYAAAAAABYAAAAAADYAAAAAADYAAAAAADfwAAAAAAXgAAAAADXgAAAAAAUAAAAAAAXgAAAAABXgAAAAABXgAAAAADXgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAQAAAAAAYAAAAAACYAAAAAAAYAAAAAACYAAAAAABfwAAAAAAXgAAAAADMAAAAAAAXgAAAAAAXgAAAAACXgAAAAAAXgAAAAACXgAAAAAA + tiles: LAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAUAAAAAAALAAAAAAAewAAAAABfQAAAAABewAAAAABQwAAAAAAUAAAAAAAXgAAAAADXgAAAAABLAAAAAAAUAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfwAAAAAALAAAAAAAewAAAAAAewAAAAACewAAAAABQwAAAAAAfwAAAAAAXgAAAAADXgAAAAACfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfQAAAAACewAAAAAAewAAAAAAQwAAAAAAfwAAAAAAXgAAAAADXgAAAAABJQAAAAAAJQAAAAACJQAAAAAAJQAAAAADJQAAAAAAJQAAAAAAfwAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAXgAAAAACXgAAAAACQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAUAAAAAAAfgAAAAAAUAAAAAAAXgAAAAACXgAAAAABXgAAAAADXgAAAAABUAAAAAAAXgAAAAABXgAAAAABQwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAXgAAAAADXgAAAAAAXgAAAAADXgAAAAACTwAAAAAAXgAAAAAATwAAAAADQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAXgAAAAACXgAAAAACUAAAAAAAXgAAAAAATwAAAAACXgAAAAADTwAAAAABJQAAAAADJQAAAAACJQAAAAABJQAAAAAAJQAAAAAAJQAAAAAAUAAAAAAAfgAAAAAAUAAAAAAAXgAAAAABXgAAAAABUAAAAAAAXgAAAAADfwAAAAAAXgAAAAADXgAAAAADfwAAAAAAfwAAAAAAfwAAAAAAJQAAAAAAJQAAAAABJQAAAAABfwAAAAAAfgAAAAAAfwAAAAAAXgAAAAAAXgAAAAAAUAAAAAAAXgAAAAABfwAAAAAAfwAAAAAAbgAAAAAAJQAAAAAAJQAAAAABfwAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAADXgAAAAABUAAAAAAAXgAAAAADfwAAAAAAbwAAAAADfwAAAAAAfwAAAAAAfwAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbwAAAAACbwAAAAACfwAAAAAAXgAAAAADXgAAAAACUAAAAAAAXgAAAAAAfwAAAAAAbwAAAAAAfwAAAAAAfwAAAAAAbwAAAAACfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbgAAAAAAXgAAAAABXgAAAAABUAAAAAAAXgAAAAABbgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAAAXgAAAAABUAAAAAAAXgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbgAAAAAAfwAAAAAAbwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAATwAAAAAATwAAAAACUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAYAAAAAABYAAAAAADYAAAAAADYAAAAAADfwAAAAAAXgAAAAADXgAAAAAAUAAAAAAAXgAAAAABXgAAAAABXgAAAAADXgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAQAAAAAAYAAAAAACYAAAAAAAYAAAAAACYAAAAAABfwAAAAAAXgAAAAADMAAAAAAAXgAAAAAAXgAAAAACXgAAAAAAXgAAAAACXgAAAAAA version: 6 -1,-2: ind: -1,-2 - tiles: fwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAXgAAAAADfwAAAAAAXgAAAAACBQAAAAAAQwAAAAAAJAAAAAABJAAAAAACJAAAAAAALAAAAAAAfwAAAAAAEgAAAAAABAAAAAAAJQAAAAABJQAAAAACJQAAAAABfwAAAAAAXgAAAAADfwAAAAAAXgAAAAAABQAAAAAAfwAAAAAAMAAAAAADMAAAAAAAMAAAAAAALAAAAAAAfwAAAAAAEgAAAAAABAAAAAAAJQAAAAACJQAAAAACJQAAAAAAfwAAAAAAXgAAAAABfwAAAAAABQAAAAAABQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAEgAAAAAABAAAAAAAJQAAAAADJQAAAAACJQAAAAACQwAAAAAAXgAAAAACfwAAAAAABQAAAAAAfwAAAAAAfwAAAAAAJQAAAAADJQAAAAACJQAAAAABJQAAAAADfwAAAAAAJQAAAAAAJQAAAAABJQAAAAACJQAAAAACJQAAAAADfwAAAAAAXgAAAAAAfwAAAAAABQAAAAAAfwAAAAAAJQAAAAADJQAAAAAAJQAAAAAAJQAAAAABJQAAAAAAfwAAAAAAOQAAAAAAOQAAAAAAJQAAAAADOQAAAAAAOQAAAAAAfwAAAAAAXgAAAAABfwAAAAAABQAAAAAAfwAAAAAAJQAAAAADfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAJQAAAAAAfwAAAAAAfwAAAAAAJQAAAAACJQAAAAACfwAAAAAAXgAAAAADXgAAAAABUAAAAAAAXgAAAAACXgAAAAACfwAAAAAAXgAAAAABfwAAAAAAUAAAAAAAfwAAAAAAJQAAAAABUAAAAAAAUAAAAAAAJQAAAAABJQAAAAACfwAAAAAAXgAAAAADXgAAAAADXgAAAAAAXgAAAAAAXgAAAAABQwAAAAAAXgAAAAADfwAAAAAAfwAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAADXgAAAAAAXgAAAAADXgAAAAACXgAAAAABQwAAAAAAXgAAAAADXgAAAAABUAAAAAAAfwAAAAAAfwAAAAAAJQAAAAABJQAAAAADfwAAAAAAJQAAAAADfwAAAAAAXgAAAAADXgAAAAACUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAXgAAAAADXgAAAAADUAAAAAAAfwAAAAAAfwAAAAAAJQAAAAACJQAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAADXgAAAAACUAAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAABXgAAAAACXgAAAAADXgAAAAABXgAAAAAAfwAAAAAAXgAAAAACXgAAAAABUAAAAAAAfwAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAbQAAAAAAXgAAAAACMAAAAAADXgAAAAACMAAAAAABXgAAAAAAQwAAAAAAXgAAAAABXgAAAAADUAAAAAAAQwAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAbQAAAAAAXgAAAAACXgAAAAACMAAAAAAAXgAAAAADXgAAAAABfwAAAAAAXgAAAAACXgAAAAAAUAAAAAAAfwAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAfwAAAAAAXgAAAAACMAAAAAACXgAAAAACMAAAAAAAXgAAAAADbQAAAAAAXgAAAAACXgAAAAAAUAAAAAAAfwAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAA + tiles: fwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAXgAAAAADfwAAAAAAXgAAAAACBQAAAAAAQwAAAAAAJAAAAAABJAAAAAACJAAAAAAALAAAAAAAfwAAAAAAEgAAAAAABAAAAAAAJQAAAAABJQAAAAACJQAAAAABUAAAAAAAXgAAAAADfwAAAAAAXgAAAAAABQAAAAAAfwAAAAAAMAAAAAADMAAAAAAAMAAAAAAALAAAAAAAfwAAAAAAEgAAAAAABAAAAAAAJQAAAAACJQAAAAACJQAAAAAAUAAAAAAAXgAAAAABfwAAAAAABQAAAAAABQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAEgAAAAAABAAAAAAAJQAAAAADJQAAAAACJQAAAAACQwAAAAAAXgAAAAACfwAAAAAABQAAAAAAfwAAAAAAfwAAAAAAJQAAAAADJQAAAAACJQAAAAABJQAAAAADfwAAAAAAJQAAAAAAJQAAAAABJQAAAAACJQAAAAACJQAAAAADUAAAAAAAXgAAAAAAfwAAAAAABQAAAAAAfwAAAAAAJQAAAAADJQAAAAAAJQAAAAAAJQAAAAABJQAAAAAAfwAAAAAAOQAAAAAAOQAAAAAAJQAAAAADOQAAAAAAOQAAAAAAUAAAAAAAXgAAAAABfwAAAAAABQAAAAAAfwAAAAAAJQAAAAADfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAUAAAAAAAfwAAAAAAJQAAAAAAfwAAAAAAfwAAAAAAJQAAAAACJQAAAAACfwAAAAAAXgAAAAADXgAAAAABUAAAAAAAXgAAAAACXgAAAAACfwAAAAAAXgAAAAABfwAAAAAAUAAAAAAAUAAAAAAAJQAAAAABUAAAAAAAUAAAAAAAJQAAAAABJQAAAAACfwAAAAAAXgAAAAADXgAAAAADXgAAAAAAXgAAAAAAXgAAAAABQwAAAAAAXgAAAAADfwAAAAAAfwAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAADXgAAAAAAXgAAAAADXgAAAAACXgAAAAABQwAAAAAAXgAAAAADXgAAAAABUAAAAAAAUAAAAAAAfwAAAAAAJQAAAAABJQAAAAADfwAAAAAAJQAAAAADfwAAAAAAXgAAAAADXgAAAAACUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAXgAAAAADXgAAAAADUAAAAAAAfwAAAAAAfwAAAAAAJQAAAAACJQAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAXgAAAAADXgAAAAACUAAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAABXgAAAAACXgAAAAADXgAAAAABXgAAAAAAfwAAAAAAXgAAAAACXgAAAAABUAAAAAAAfwAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAbQAAAAAAXgAAAAACMAAAAAADXgAAAAACMAAAAAABXgAAAAAAQwAAAAAAXgAAAAABXgAAAAADUAAAAAAAQwAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAbQAAAAAAXgAAAAACXgAAAAACMAAAAAAAXgAAAAADXgAAAAABUAAAAAAAXgAAAAACXgAAAAAAUAAAAAAAfwAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAfwAAAAAAXgAAAAACMAAAAAACXgAAAAACMAAAAAAAXgAAAAADbQAAAAAAXgAAAAACXgAAAAAAUAAAAAAAfwAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAA version: 6 -2,-2: ind: -2,-2 - tiles: fwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAIAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAIAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbgAAAAAAIAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAIAAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAIAAAAAAAfwAAAAAAIAAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAIAAAAAAAfwAAAAAAIAAAAAAAfwAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAfwAAAAAAfwAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAIAAAAAAAfwAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAABXgAAAAADXgAAAAACXgAAAAABXgAAAAABXgAAAAAAfwAAAAAAXgAAAAABMAAAAAACXgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAATwAAAAACTwAAAAADTwAAAAADTwAAAAADTwAAAAACTwAAAAABbQAAAAAAXgAAAAAAXgAAAAABMAAAAAACfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbgAAAAAAfwAAAAAAXgAAAAABXgAAAAADXgAAAAABXgAAAAACXgAAAAABXgAAAAABfwAAAAAAXgAAAAABXgAAAAADXgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbwAAAAABfwAAAAAAfwAAAAAATwAAAAACTwAAAAAATwAAAAADTwAAAAABTwAAAAACTwAAAAACbQAAAAAAXgAAAAABXgAAAAACXgAAAAABfwAAAAAAfwAAAAAAfwAAAAAAbwAAAAACfwAAAAAAfwAAAAAAXgAAAAACXgAAAAACXgAAAAAAXgAAAAACXgAAAAABXgAAAAABfwAAAAAAXgAAAAADMAAAAAADXgAAAAADfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAXgAAAAADXgAAAAACMAAAAAADbgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbwAAAAABfwAAAAAAbgAAAAAAXgAAAAACXgAAAAACXgAAAAADfwAAAAAAbwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAACXgAAAAAAXgAAAAACfwAAAAAAbwAAAAABfwAAAAAAfwAAAAAAfwAAAAAAbwAAAAAAbwAAAAACfwAAAAAAfwAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAACMAAAAAABXgAAAAACfwAAAAAAfwAAAAAAfwAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAIAAAAAACIAAAAAAAIAAAAAADIAAAAAADfwAAAAAAXgAAAAACXgAAAAADMAAAAAAC + tiles: fwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAIAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAIAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAIAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAIAAAAAAAbgAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAIAAAAAAAfwAAAAAAIAAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAIAAAAAAAfwAAAAAAIAAAAAAAfwAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAfwAAAAAAfwAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAIAAAAAAAfwAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAABXgAAAAADXgAAAAACXgAAAAABXgAAAAABXgAAAAAAfwAAAAAAXgAAAAABMAAAAAACXgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAATwAAAAACTwAAAAADTwAAAAADTwAAAAADTwAAAAACTwAAAAABbQAAAAAAXgAAAAAAXgAAAAABMAAAAAACfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbgAAAAAAfwAAAAAAXgAAAAABXgAAAAADXgAAAAABXgAAAAACXgAAAAABXgAAAAABUAAAAAAAXgAAAAABXgAAAAADXgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbwAAAAABfwAAAAAAfwAAAAAATwAAAAACTwAAAAAATwAAAAADTwAAAAABTwAAAAACTwAAAAACbQAAAAAAXgAAAAABXgAAAAACXgAAAAABfwAAAAAAfwAAAAAAfwAAAAAAbwAAAAACfwAAAAAAfwAAAAAAXgAAAAACXgAAAAACXgAAAAAAXgAAAAACXgAAAAABXgAAAAABfwAAAAAAXgAAAAADMAAAAAADXgAAAAADfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAXgAAAAADXgAAAAACMAAAAAADbgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbwAAAAABfwAAAAAAbgAAAAAAXgAAAAACXgAAAAACXgAAAAADfwAAAAAAbwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAACXgAAAAAAXgAAAAACfwAAAAAAbwAAAAABfwAAAAAAfwAAAAAAfwAAAAAAbwAAAAAAbwAAAAACfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAACMAAAAAABXgAAAAACfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAfwAAAAAAXgAAAAACXgAAAAADMAAAAAAC version: 6 -2,-1: ind: -2,-1 - tiles: IAAAAAABIAAAAAABfwAAAAAAIAAAAAABIAAAAAAAJQAAAAAAJQAAAAAAfwAAAAAAIAAAAAAAIAAAAAADIAAAAAABIAAAAAADfwAAAAAAXgAAAAABXgAAAAACXgAAAAABIAAAAAABIAAAAAAAbQAAAAAAIAAAAAABIAAAAAADJQAAAAAAJQAAAAAAfwAAAAAAIAAAAAABIAAAAAADIAAAAAABIAAAAAADfwAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAIAAAAAAAIAAAAAACfwAAAAAAIAAAAAADIAAAAAACJQAAAAAAJQAAAAAAfwAAAAAAIAAAAAAAIAAAAAACIAAAAAABIAAAAAABfwAAAAAAXgAAAAACMAAAAAAAXgAAAAAAIAAAAAACIAAAAAACfwAAAAAAIAAAAAACIAAAAAAAJQAAAAAAJQAAAAAAfwAAAAAAIAAAAAAAIAAAAAABIAAAAAAAIAAAAAADfwAAAAAAXgAAAAABXgAAAAADMAAAAAACfwAAAAAAfwAAAAAAfwAAAAAAIAAAAAAAIAAAAAAAJQAAAAAAJQAAAAAAfwAAAAAAIAAAAAADIAAAAAAAIAAAAAADIAAAAAADfwAAAAAAXgAAAAADXgAAAAABXgAAAAACIAAAAAACIAAAAAADIAAAAAADIAAAAAAAIAAAAAACfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAABXgAAAAACXgAAAAADIAAAAAACIAAAAAADIAAAAAAAIAAAAAABIAAAAAADbQAAAAAAIAAAAAABIAAAAAABIAAAAAAAIAAAAAAAIAAAAAADIAAAAAADfwAAAAAAXgAAAAABMAAAAAADXgAAAAAAIAAAAAADIAAAAAACIAAAAAAAIAAAAAAAIAAAAAAAbQAAAAAAIAAAAAADXgAAAAADXgAAAAACXgAAAAACXgAAAAACXgAAAAAAbQAAAAAAXgAAAAADXgAAAAAAMAAAAAAAIAAAAAACfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAIAAAAAAAXgAAAAABXgAAAAABXgAAAAAAXgAAAAABXgAAAAADfwAAAAAAXgAAAAABXgAAAAAAXgAAAAABIAAAAAADfwAAAAAAMAAAAAABMAAAAAABMAAAAAABfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAIAAAAAABfwAAAAAAMAAAAAADMAAAAAACMAAAAAADfwAAAAAAXgAAAAABMAAAAAADXgAAAAAAXgAAAAAAXgAAAAACMAAAAAABfwAAAAAAXgAAAAADXgAAAAAAXgAAAAAAIAAAAAAAfwAAAAAAMAAAAAACMAAAAAADMAAAAAAAfwAAAAAAXgAAAAADXgAAAAABMAAAAAABMAAAAAADMAAAAAACXgAAAAAAbQAAAAAAXgAAAAAAMAAAAAAAXgAAAAACfwAAAAAAfwAAAAAAfwAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAXgAAAAAAMAAAAAAAXgAAAAACXgAAAAABXgAAAAADMAAAAAAAbQAAAAAAXgAAAAACXgAAAAADMAAAAAADfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAAAXgAAAAAAXgAAAAABXgAAAAADXgAAAAACXgAAAAABfwAAAAAAXgAAAAACXgAAAAACXgAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAbwAAAAABfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAABXgAAAAAAXgAAAAAAcQAAAAACcQAAAAACfwAAAAAAbwAAAAAAfwAAAAAAbgAAAAAAMAAAAAABXgAAAAACXgAAAAADXgAAAAAAMAAAAAAAbQAAAAAAXgAAAAACXgAAAAABMAAAAAABXgAAAAAA + tiles: JAAAAAAAfwAAAAAAIAAAAAAAIAAAAAAAfwAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAfwAAAAAAXgAAAAABXgAAAAACXgAAAAABJAAAAAAAfwAAAAAAIAAAAAAAIAAAAAAAUAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAfwAAAAAAUAAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAIAAAAAAAIAAAAAAAUAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAfwAAAAAAXgAAAAACMAAAAAAAXgAAAAAAIAAAAAAAfwAAAAAAIAAAAAAAIAAAAAAAfwAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAfwAAAAAAXgAAAAABXgAAAAADMAAAAAACIAAAAAAAfwAAAAAAIAAAAAAAIAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAfwAAAAAAXgAAAAADXgAAAAABXgAAAAACIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAXgAAAAABXgAAAAACXgAAAAADIAAAAAAAIAAAAAAAIAAAAAAAMAAAAAAAIAAAAAAAUAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAfwAAAAAAXgAAAAABMAAAAAADXgAAAAAAfwAAAAAAfwAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAMAAAAAAAMAAAAAAAIAAAAAAAIAAAAAAAbQAAAAAAXgAAAAADXgAAAAAAMAAAAAAAXgAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAfwAAAAAAXgAAAAABXgAAAAAAXgAAAAABXgAAAAAAUAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAXgAAAAAAUAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAfwAAAAAAXgAAAAABMAAAAAADXgAAAAAAXgAAAAAAXgAAAAACMAAAAAABfwAAAAAAXgAAAAADXgAAAAAAXgAAAAAAXgAAAAAAUAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAfwAAAAAAXgAAAAADXgAAAAABMAAAAAABMAAAAAADMAAAAAACXgAAAAAAbQAAAAAAXgAAAAAAMAAAAAAAXgAAAAACfwAAAAAAfwAAAAAAfwAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAXgAAAAAAMAAAAAAAXgAAAAACXgAAAAABXgAAAAADMAAAAAAAbQAAAAAAXgAAAAACXgAAAAADMAAAAAADfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAAAXgAAAAAAXgAAAAABXgAAAAADXgAAAAACXgAAAAABfwAAAAAAXgAAAAACXgAAAAACXgAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAbwAAAAABfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAXgAAAAABXgAAAAAAXgAAAAAAcQAAAAACcQAAAAACfwAAAAAAbwAAAAAAfwAAAAAAbgAAAAAAMAAAAAABXgAAAAACXgAAAAADXgAAAAAAMAAAAAAAbQAAAAAAXgAAAAACXgAAAAABMAAAAAABXgAAAAAA version: 6 -2,0: ind: -2,0 - tiles: cQAAAAAAcQAAAAACfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAACMAAAAAACXgAAAAACXgAAAAABXgAAAAACbQAAAAAAXgAAAAABXgAAAAAAXgAAAAABMAAAAAAAcQAAAAADcQAAAAAAUAAAAAAABgAAAAAABgAAAAAAfwAAAAAAXgAAAAADXgAAAAABXgAAAAAAXgAAAAACXgAAAAAAfwAAAAAAXgAAAAABXgAAAAADXgAAAAAAXgAAAAAAcQAAAAADcQAAAAABTwAAAAAABgAAAAAABgAAAAAAUAAAAAAAXgAAAAADXgAAAAABXgAAAAABfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAcQAAAAACcQAAAAACUAAAAAAABgAAAAAABgAAAAAAfwAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAfwAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAPQAAAAAAfwAAAAAAbQAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAMAAAAAADXgAAAAACPQAAAAAAfwAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAPQAAAAAAPQAAAAAAXgAAAAABXgAAAAAAXgAAAAABXgAAAAAAXgAAAAAAbQAAAAAAXgAAAAACMAAAAAACPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAMAAAAAAAMAAAAAADMAAAAAACXgAAAAAAXgAAAAADbQAAAAAAXgAAAAACXgAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAfwAAAAAAXgAAAAADXgAAAAABXgAAAAACXgAAAAABXgAAAAAAbQAAAAAAXgAAAAACXgAAAAACPQAAAAAAfwAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAMAAAAAADXgAAAAABfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAMAAAAAABMAAAAAACfwAAAAAAFwAAAAAAFwAAAAAAfwAAAAAAEQAAAAAAEQAAAAAAfwAAAAAAXgAAAAACMAAAAAABfwAAAAAAPQAAAAAAXgAAAAABXgAAAAADXgAAAAADXgAAAAADXgAAAAACfwAAAAAAFwAAAAAAFwAAAAAAfwAAAAAAEQAAAAAAEQAAAAAAfwAAAAAAXgAAAAAAXgAAAAACfwAAAAAAPQAAAAAAMAAAAAADXgAAAAABMAAAAAAAXgAAAAAAXgAAAAABLwAAAAAAFwAAAAAAFwAAAAAAfwAAAAAAEQAAAAAAEQAAAAAAfwAAAAAAXgAAAAADXgAAAAABfwAAAAAAPQAAAAAAXgAAAAACMAAAAAADXgAAAAABPQAAAAAAPQAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAEQAAAAAAEQAAAAAAfwAAAAAAMAAAAAABXgAAAAABTwAAAAAAXgAAAAABMAAAAAADXgAAAAACfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAMAAAAAADXgAAAAACfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAXgAAAAABMAAAAAAAfwAAAAAAfwAAAAAAPQAAAAAAXgAAAAABfwAAAAAAbwAAAAACfwAAAAAAfwAAAAAAXgAAAAADXgAAAAADMAAAAAAAXgAAAAABXgAAAAADbQAAAAAAXgAAAAAAXgAAAAABXgAAAAAAfwAAAAAAPQAAAAAAXgAAAAACfwAAAAAAbwAAAAADfwAAAAAAfwAAAAAAMAAAAAACXgAAAAADXgAAAAACMAAAAAACXgAAAAACbQAAAAAAXgAAAAACXgAAAAADXgAAAAADfwAAAAAAfwAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAbgAAAAAAfwAAAAAA + tiles: cQAAAAAAcQAAAAACfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAACMAAAAAACXgAAAAACXgAAAAABXgAAAAACbQAAAAAAXgAAAAABXgAAAAAAXgAAAAABMAAAAAAAcQAAAAADcQAAAAAAUAAAAAAABgAAAAAABgAAAAAAfwAAAAAAXgAAAAADXgAAAAABXgAAAAAAXgAAAAACXgAAAAAAUAAAAAAAXgAAAAABXgAAAAADXgAAAAAAXgAAAAAAcQAAAAADcQAAAAABTwAAAAAABgAAAAAABgAAAAAAUAAAAAAAXgAAAAADXgAAAAABXgAAAAABfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAcQAAAAACcQAAAAACUAAAAAAABgAAAAAABgAAAAAAfwAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAfwAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAPQAAAAAAbQAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAMAAAAAADXgAAAAACPQAAAAAAfwAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAPQAAAAAAXgAAAAABXgAAAAAAXgAAAAABXgAAAAAAXgAAAAAAbQAAAAAAXgAAAAACMAAAAAACPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAMAAAAAAAMAAAAAADMAAAAAACXgAAAAAAXgAAAAADbQAAAAAAXgAAAAACXgAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAXgAAAAADXgAAAAABXgAAAAACXgAAAAABXgAAAAAAUAAAAAAAXgAAAAACXgAAAAACPQAAAAAAfwAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAMAAAAAADXgAAAAABfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAMAAAAAABMAAAAAACfwAAAAAAFwAAAAAAFwAAAAAAfwAAAAAAEQAAAAAAEQAAAAAAfwAAAAAAXgAAAAACMAAAAAABUAAAAAAAPQAAAAAAXgAAAAABXgAAAAADXgAAAAADXgAAAAADXgAAAAACfwAAAAAAFwAAAAAAFwAAAAAAfwAAAAAAEQAAAAAAEQAAAAAAfwAAAAAAXgAAAAAAXgAAAAACUAAAAAAAPQAAAAAAMAAAAAADXgAAAAABMAAAAAAAXgAAAAAAXgAAAAABLwAAAAAAFwAAAAAAFwAAAAAAfwAAAAAAEQAAAAAAEQAAAAAAfwAAAAAAXgAAAAADXgAAAAABfwAAAAAAPQAAAAAAXgAAAAACMAAAAAADXgAAAAABPQAAAAAAPQAAAAAAfwAAAAAAUAAAAAAAbQAAAAAAfwAAAAAAEQAAAAAAEQAAAAAAfwAAAAAAMAAAAAABXgAAAAABTwAAAAAAXgAAAAABMAAAAAADXgAAAAACfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAMAAAAAADXgAAAAACfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAXgAAAAABMAAAAAAAfwAAAAAAfwAAAAAAPQAAAAAAXgAAAAABfwAAAAAAbwAAAAACfwAAAAAAfwAAAAAAXgAAAAADXgAAAAADMAAAAAAAXgAAAAABXgAAAAADbQAAAAAAXgAAAAAAXgAAAAABXgAAAAAAfwAAAAAAPQAAAAAAXgAAAAACfwAAAAAAbwAAAAADfwAAAAAAfwAAAAAAMAAAAAACXgAAAAADXgAAAAACMAAAAAACXgAAAAACbQAAAAAAXgAAAAACXgAAAAADXgAAAAADfwAAAAAAfwAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAbgAAAAAAfwAAAAAA version: 6 -2,1: ind: -2,1 - tiles: XgAAAAABMAAAAAACXgAAAAAAXgAAAAADMAAAAAACfwAAAAAAMAAAAAABXgAAAAABXgAAAAABfwAAAAAAbwAAAAADfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbgAAAAAAfwAAAAAAXgAAAAAAMAAAAAABXgAAAAACbgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAATwAAAAAAegAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAegAAAAAAegAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbwAAAAADfwAAAAAAXgAAAAADXgAAAAABfwAAAAAAewAAAAABewAAAAACewAAAAAAfwAAAAAAfwAAAAAAfwAAAAAATwAAAAAAegAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbwAAAAACfwAAAAAAMAAAAAABXgAAAAAAfwAAAAAAewAAAAADMAAAAAABewAAAAACfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbwAAAAAAfwAAAAAAXgAAAAADXgAAAAACfwAAAAAAewAAAAAAMAAAAAABewAAAAADfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbwAAAAABfwAAAAAAXgAAAAAAXgAAAAADTwAAAAADewAAAAACMAAAAAAAewAAAAACfwAAAAAAfwAAAAAAbwAAAAADfwAAAAAAfwAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAMAAAAAAAXgAAAAADfwAAAAAAewAAAAADewAAAAACewAAAAABfwAAAAAAbgAAAAAAfwAAAAAANQAAAAAAewAAAAADewAAAAADewAAAAABNQAAAAACNQAAAAAAXgAAAAACXgAAAAADXgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAACXgAAAAAAMAAAAAADfQAAAAAAfQAAAAADfQAAAAAAMAAAAAADMAAAAAADbQAAAAAAXgAAAAABXgAAAAACXgAAAAACMAAAAAADXgAAAAACXgAAAAACXgAAAAACMAAAAAADXgAAAAAAewAAAAABewAAAAACewAAAAADewAAAAACewAAAAACewAAAAABbQAAAAAAMAAAAAABXgAAAAADXgAAAAAAXgAAAAABMAAAAAAAXgAAAAABXgAAAAACXgAAAAAAMAAAAAAAewAAAAAAewAAAAABewAAAAADewAAAAABewAAAAAAewAAAAABfwAAAAAAXgAAAAABXgAAAAABXgAAAAABXgAAAAACXgAAAAADXgAAAAAAXgAAAAADNQAAAAAANQAAAAAAMAAAAAACewAAAAADewAAAAACewAAAAADMAAAAAADMAAAAAACfwAAAAAAXgAAAAADXgAAAAABXgAAAAADfwAAAAAAfwAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAewAAAAADfQAAAAADfQAAAAACfQAAAAADewAAAAAAewAAAAADfwAAAAAAMAAAAAAAXgAAAAACXgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAewAAAAACewAAAAABewAAAAACewAAAAAAewAAAAADewAAAAACfwAAAAAAXgAAAAACXgAAAAABXgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAMAAAAAACewAAAAABewAAAAADewAAAAABMAAAAAABMAAAAAABfwAAAAAAXgAAAAAAXgAAAAABXgAAAAADfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAA + tiles: XgAAAAABMAAAAAACXgAAAAAAXgAAAAADMAAAAAACfwAAAAAAMAAAAAABXgAAAAABXgAAAAABfwAAAAAAbwAAAAADfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbgAAAAAAfwAAAAAAXgAAAAAAMAAAAAABXgAAAAACbgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAATwAAAAAAegAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAegAAAAAAegAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbwAAAAADfwAAAAAAXgAAAAADXgAAAAABUAAAAAAAewAAAAABewAAAAACewAAAAAAfwAAAAAAfwAAAAAAfwAAAAAATwAAAAAAegAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbwAAAAACfwAAAAAAMAAAAAABXgAAAAAAUAAAAAAAewAAAAADMAAAAAABewAAAAACfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbwAAAAAAfwAAAAAAXgAAAAADXgAAAAACfwAAAAAAewAAAAAAMAAAAAABewAAAAADfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbwAAAAABfwAAAAAAXgAAAAAAXgAAAAADTwAAAAADewAAAAACMAAAAAAAewAAAAACfwAAAAAAfwAAAAAAbwAAAAADfwAAAAAAfwAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAMAAAAAAAXgAAAAADfwAAAAAAewAAAAADewAAAAACewAAAAABfwAAAAAAbgAAAAAAfwAAAAAANQAAAAAAewAAAAADewAAAAADewAAAAABNQAAAAACNQAAAAAAfwAAAAAAXgAAAAADXgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAACXgAAAAAAMAAAAAADfQAAAAAAfQAAAAADfQAAAAAAMAAAAAADMAAAAAADbQAAAAAAXgAAAAABXgAAAAACXgAAAAACMAAAAAADXgAAAAACXgAAAAACXgAAAAACMAAAAAADXgAAAAAAewAAAAABewAAAAACewAAAAADewAAAAACewAAAAACewAAAAABbQAAAAAAMAAAAAABXgAAAAADXgAAAAAAXgAAAAABMAAAAAAAXgAAAAABXgAAAAACXgAAAAAAMAAAAAAAewAAAAAAewAAAAABewAAAAADewAAAAABewAAAAAAewAAAAABfwAAAAAAXgAAAAABXgAAAAABXgAAAAABXgAAAAACXgAAAAADXgAAAAAAXgAAAAADNQAAAAAANQAAAAAAMAAAAAACewAAAAADewAAAAACewAAAAADMAAAAAADMAAAAAACUAAAAAAAXgAAAAADXgAAAAABXgAAAAADfwAAAAAAfwAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAewAAAAADfQAAAAADfQAAAAACfQAAAAADewAAAAAAewAAAAADUAAAAAAAMAAAAAAAXgAAAAACXgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAewAAAAACewAAAAABewAAAAACewAAAAAAewAAAAADewAAAAACUAAAAAAAXgAAAAACXgAAAAABXgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAMAAAAAACewAAAAABewAAAAADewAAAAABMAAAAAABMAAAAAABfwAAAAAAXgAAAAAAXgAAAAABXgAAAAADfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAA version: 6 -3,-1: ind: -3,-1 - tiles: KQAAAAABKQAAAAAAKQAAAAADfwAAAAAAIAAAAAABIAAAAAAAQwAAAAAAXgAAAAACXgAAAAAAXgAAAAACXgAAAAADXgAAAAABXgAAAAAAXgAAAAADfwAAAAAAIAAAAAAAKQAAAAABKQAAAAAAKQAAAAACfwAAAAAAIAAAAAADIAAAAAACfwAAAAAAXgAAAAABXgAAAAAAXgAAAAACXgAAAAADXgAAAAACXgAAAAACXgAAAAADfwAAAAAAIAAAAAAAKQAAAAAAKQAAAAABKQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAADXgAAAAAAXgAAAAABXgAAAAABXgAAAAABXgAAAAADXgAAAAADfwAAAAAAIAAAAAACKQAAAAAAKQAAAAACKQAAAAABfwAAAAAAIAAAAAABIAAAAAACQwAAAAAAXgAAAAADXgAAAAAAXgAAAAAAXgAAAAADXgAAAAACXgAAAAABXgAAAAAAfwAAAAAAIAAAAAAAfwAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAIAAAAAAAIAAAAAABfwAAAAAAXgAAAAACXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAADXgAAAAADfwAAAAAAfwAAAAAAQwAAAAAAIAAAAAAAIAAAAAABfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAACXgAAAAADXgAAAAACXgAAAAADfwAAAAAAfwAAAAAAfwAAAAAAIAAAAAACIAAAAAADIAAAAAABIAAAAAADbQAAAAAAIAAAAAABIAAAAAABIAAAAAAAIAAAAAADIAAAAAACIAAAAAABIAAAAAADIAAAAAADIAAAAAABbQAAAAAAIAAAAAADIAAAAAABIAAAAAAAIAAAAAADIAAAAAABbQAAAAAAIAAAAAABIAAAAAABIAAAAAADIAAAAAADIAAAAAAAIAAAAAACIAAAAAAAIAAAAAAAIAAAAAABbQAAAAAAIAAAAAAAIAAAAAABfwAAAAAAIAAAAAADfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAIAAAAAABIAAAAAAAfwAAAAAAIAAAAAADfwAAAAAAWQAAAAAAWQAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAfwAAAAAAIAAAAAABIAAAAAAAIAAAAAABIAAAAAACfwAAAAAAIAAAAAABIAAAAAADfwAAAAAAbQAAAAAAUAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAbQAAAAAAIAAAAAABIAAAAAAAIAAAAAAAIAAAAAABfwAAAAAAIAAAAAAAIAAAAAADIAAAAAAAIAAAAAACfwAAAAAAWQAAAAAAWQAAAAAAJAAAAAAAJAAAAAAAWQAAAAAAfwAAAAAAIAAAAAACIAAAAAABIAAAAAABIAAAAAADfwAAAAAAIAAAAAABIAAAAAADIAAAAAADIAAAAAACfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbgAAAAAAIAAAAAADIAAAAAACfwAAAAAAfwAAAAAAWQAAAAAAJAAAAAAAJAAAAAAAWQAAAAAAWQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAWQAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAWQAAAAAAJAAAAAAAJAAAAAAAWQAAAAAAWQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAcQAAAAAAcQAAAAAC + tiles: XgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAUAAAAAAAJAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAbQAAAAAAJAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAfwAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAIAAAAAAAIAAAAAAAfwAAAAAAfwAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAbQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAfwAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAMAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAMAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAMAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAMAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAfwAAAAAAbQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAIAAAAAAAIAAAAAAAfwAAAAAAbQAAAAAAIAAAAAAAIAAAAAAAfwAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAfwAAAAAAXgAAAAAAXgAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAfwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAbQAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAfwAAAAAAXgAAAAAAXgAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAfwAAAAAAXgAAAAAAXgAAAAAAIAAAAAAAIAAAAAACfwAAAAAAfwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAfwAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAfwAAAAAAXgAAAAAAXgAAAAAAIAAAAAADIAAAAAACfwAAAAAAfwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbgAAAAAAIAAAAAADIAAAAAACfwAAAAAAfwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAbQAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAcQAAAAAAcQAAAAAC version: 6 -3,0: ind: -3,0 - tiles: fgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAWQAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAcQAAAAAAcQAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAWQAAAAAAJAAAAAAAWQAAAAAAJAAAAAAAWQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAcQAAAAACcQAAAAABfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAcQAAAAACcQAAAAADfgAAAAAAfgAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAcQAAAAACcQAAAAACfwAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAXgAAAAACXgAAAAACXgAAAAACXgAAAAADXgAAAAAAXgAAAAAAXgAAAAADXgAAAAACXgAAAAACbQAAAAAAXgAAAAADXgAAAAAAXgAAAAACXgAAAAABXgAAAAABXgAAAAABXgAAAAACMAAAAAACMAAAAAAAMAAAAAADXgAAAAABXgAAAAADMAAAAAACMAAAAAAAMAAAAAADbQAAAAAAXgAAAAAAMAAAAAAAMAAAAAADMAAAAAADXgAAAAAAXgAAAAACXgAAAAABXgAAAAACXgAAAAAAXgAAAAABXgAAAAABXgAAAAADXgAAAAABXgAAAAAAXgAAAAADfwAAAAAAXgAAAAADXgAAAAADXgAAAAACXgAAAAAAXgAAAAAAXgAAAAACfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAATwAAAAAAfwAAAAAAfwAAAAAAXgAAAAADXgAAAAAAMAAAAAAANQAAAAABfwAAAAAAXgAAAAABMAAAAAABXgAAAAAAfwAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAfwAAAAAAXgAAAAACXgAAAAAAMAAAAAACNQAAAAACfwAAAAAAMAAAAAACXgAAAAACXgAAAAACfwAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAfwAAAAAAMAAAAAABXgAAAAABMAAAAAABfwAAAAAAfwAAAAAAXgAAAAAAMAAAAAABXgAAAAABfwAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAfwAAAAAAMAAAAAACXgAAAAAAMAAAAAADfwAAAAAAaQAAAAABXgAAAAACXgAAAAABMAAAAAABfwAAAAAAfwAAAAAATwAAAAACfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAABXgAAAAAAMAAAAAADfwAAAAAAaQAAAAAAXgAAAAABMAAAAAADXgAAAAACfwAAAAAAXgAAAAACMAAAAAADXgAAAAACXgAAAAADMAAAAAAAXgAAAAAAXgAAAAADMAAAAAACXgAAAAACXgAAAAACfwAAAAAAfwAAAAAAMAAAAAACXgAAAAACXgAAAAACbQAAAAAAMAAAAAABXgAAAAACXgAAAAABMAAAAAAAXgAAAAABXgAAAAABMAAAAAABMAAAAAABXgAAAAABXgAAAAACXgAAAAAAbQAAAAAAXgAAAAACMAAAAAAAXgAAAAABbQAAAAAAXgAAAAAAMAAAAAACXgAAAAADXgAAAAAAMAAAAAADXgAAAAADXgAAAAAD + tiles: fgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAcQAAAAAAcQAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAcQAAAAACcQAAAAABfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAcQAAAAACcQAAAAADfgAAAAAAfgAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAcQAAAAACcQAAAAACfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAXgAAAAACXgAAAAACXgAAAAACXgAAAAADXgAAAAAAXgAAAAAAXgAAAAADXgAAAAACXgAAAAACbQAAAAAAXgAAAAADXgAAAAAAXgAAAAACXgAAAAABXgAAAAABXgAAAAABXgAAAAACMAAAAAACMAAAAAAAMAAAAAADXgAAAAABXgAAAAADMAAAAAACMAAAAAAAMAAAAAADbQAAAAAAXgAAAAAAMAAAAAAAMAAAAAADMAAAAAADXgAAAAAAXgAAAAACXgAAAAABXgAAAAACXgAAAAAAXgAAAAABXgAAAAABXgAAAAADXgAAAAABXgAAAAAAXgAAAAADUAAAAAAAXgAAAAADXgAAAAADXgAAAAACXgAAAAAAXgAAAAAAXgAAAAACUAAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAUAAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAATwAAAAAAfwAAAAAAfwAAAAAAXgAAAAADXgAAAAAAMAAAAAAANQAAAAABfwAAAAAAXgAAAAABMAAAAAABXgAAAAAAfwAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAfwAAAAAAXgAAAAACXgAAAAAAMAAAAAACNQAAAAACfwAAAAAAMAAAAAACXgAAAAACXgAAAAACfwAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAfwAAAAAAMAAAAAABXgAAAAABMAAAAAABfwAAAAAAfwAAAAAAXgAAAAAAMAAAAAABXgAAAAABfwAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAfwAAAAAAMAAAAAACXgAAAAAAMAAAAAADfwAAAAAAaQAAAAABXgAAAAACXgAAAAABMAAAAAABfwAAAAAAfwAAAAAATwAAAAACfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAABXgAAAAAAMAAAAAADfwAAAAAAaQAAAAAAXgAAAAABMAAAAAADXgAAAAACfwAAAAAAXgAAAAACMAAAAAADXgAAAAACXgAAAAADMAAAAAAAXgAAAAAAXgAAAAADMAAAAAACXgAAAAACXgAAAAACfwAAAAAAfwAAAAAAMAAAAAACXgAAAAACXgAAAAACbQAAAAAAMAAAAAABXgAAAAACXgAAAAABMAAAAAAAXgAAAAABXgAAAAABMAAAAAABMAAAAAABXgAAAAABXgAAAAACXgAAAAAAbQAAAAAAXgAAAAACMAAAAAAAXgAAAAABbQAAAAAAXgAAAAAAMAAAAAACXgAAAAADXgAAAAAAMAAAAAADXgAAAAADXgAAAAAD version: 6 -3,1: ind: -3,1 - tiles: XgAAAAADXgAAAAADXgAAAAAAXgAAAAADfwAAAAAAXgAAAAAAXgAAAAADMAAAAAABfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAXgAAAAACMAAAAAABXgAAAAAAMAAAAAADXgAAAAABXgAAAAACXgAAAAABbQAAAAAAXgAAAAACXgAAAAAAXgAAAAADfwAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAMAAAAAACXgAAAAABXgAAAAACfwAAAAAAfwAAAAAAUAAAAAAAXgAAAAACUAAAAAAAfwAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfwAAAAAAegAAAAAATwAAAAAATwAAAAAAXgAAAAAAXgAAAAAAMAAAAAAAfwAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAfwAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfwAAAAAAegAAAAAAegAAAAAATwAAAAAAMAAAAAABXgAAAAABMAAAAAAAfwAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAfwAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfwAAAAAAegAAAAAATwAAAAAATwAAAAAAMAAAAAACXgAAAAACMAAAAAADfwAAAAAAfwAAAAAAewAAAAAAewAAAAAAewAAAAAAfwAAAAAAfwAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbgAAAAAAXgAAAAACXgAAAAAAMAAAAAAANQAAAAACfwAAAAAAewAAAAAAewAAAAAAewAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAACXgAAAAABMAAAAAADNQAAAAAAfwAAAAAAewAAAAAAewAAAAAAewAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbwAAAAADbwAAAAABfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAMAAAAAADfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAANQAAAAACewAAAAABewAAAAAAewAAAAACewAAAAABfwAAAAAAXgAAAAAAXgAAAAABXgAAAAADfwAAAAAAXgAAAAADXgAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAMAAAAAACAwAAAAAAAwAAAAAAAwAAAAAAewAAAAAAfwAAAAAAMAAAAAACXgAAAAAAMAAAAAACXgAAAAADXgAAAAADMAAAAAABMAAAAAACMAAAAAAAXgAAAAADbQAAAAAAewAAAAACAwAAAAAAAwAAAAAAAwAAAAAAewAAAAAAUAAAAAAAMAAAAAABXgAAAAAAMAAAAAABXgAAAAADXgAAAAADXgAAAAACXgAAAAABXgAAAAABXgAAAAACfwAAAAAAewAAAAACAwAAAAAAAwAAAAAAAwAAAAAAewAAAAABUAAAAAAAMAAAAAABXgAAAAADMAAAAAAAXgAAAAADXgAAAAAAMAAAAAADMAAAAAADMAAAAAAAXgAAAAAAbQAAAAAAMAAAAAADAwAAAAAAAwAAAAAAAwAAAAAAewAAAAACfwAAAAAAXgAAAAAAXgAAAAACXgAAAAAAfwAAAAAAXgAAAAADXgAAAAABXgAAAAADXgAAAAADXgAAAAAAbQAAAAAAewAAAAAAewAAAAABewAAAAAAewAAAAACewAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAewAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAABXgAAAAAAXgAAAAADXgAAAAAAXgAAAAADfwAAAAAAewAAAAABewAAAAABewAAAAACfwAAAAAAMAAAAAAD + tiles: XgAAAAADXgAAAAADXgAAAAAAXgAAAAADUAAAAAAAXgAAAAAAXgAAAAADMAAAAAABfwAAAAAAUAAAAAAAbQAAAAAAUAAAAAAAfwAAAAAAXgAAAAACMAAAAAABXgAAAAAAMAAAAAADXgAAAAABXgAAAAACXgAAAAABfwAAAAAAXgAAAAACXgAAAAAAXgAAAAADfwAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAMAAAAAACXgAAAAABXgAAAAACfwAAAAAAfwAAAAAAUAAAAAAAXgAAAAACUAAAAAAAfwAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfwAAAAAAegAAAAAATwAAAAAATwAAAAAAXgAAAAAAXgAAAAAAMAAAAAAAfwAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAfwAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfwAAAAAAegAAAAAAegAAAAAATwAAAAAAMAAAAAABXgAAAAABMAAAAAAAfwAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAfwAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfwAAAAAAegAAAAAATwAAAAAATwAAAAAAMAAAAAACXgAAAAACMAAAAAADfwAAAAAAfwAAAAAAewAAAAAAewAAAAAAewAAAAAAfwAAAAAAfwAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbgAAAAAAXgAAAAACXgAAAAAAMAAAAAAANQAAAAACfwAAAAAAewAAAAAAewAAAAAAewAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAACXgAAAAABMAAAAAADNQAAAAAAfwAAAAAAewAAAAAAewAAAAAAewAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbwAAAAADbwAAAAABfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAANQAAAAACewAAAAABewAAAAAAewAAAAACewAAAAABfwAAAAAAXgAAAAAAXgAAAAABXgAAAAADfwAAAAAAXgAAAAADXgAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAMAAAAAACAwAAAAAAAwAAAAAAAwAAAAAAewAAAAAAfwAAAAAAMAAAAAACXgAAAAAAMAAAAAACXgAAAAADXgAAAAADMAAAAAABMAAAAAACMAAAAAAAXgAAAAADbQAAAAAAewAAAAACAwAAAAAAAwAAAAAAAwAAAAAAewAAAAAAUAAAAAAAMAAAAAABXgAAAAAAMAAAAAABXgAAAAADXgAAAAADXgAAAAACXgAAAAABXgAAAAABXgAAAAACUAAAAAAAewAAAAACAwAAAAAAAwAAAAAAAwAAAAAAewAAAAABUAAAAAAAMAAAAAABXgAAAAADMAAAAAAAXgAAAAADXgAAAAAAMAAAAAADMAAAAAADMAAAAAAAXgAAAAAAbQAAAAAAMAAAAAADAwAAAAAAAwAAAAAAAwAAAAAAewAAAAACfwAAAAAAXgAAAAAAXgAAAAACXgAAAAAAfwAAAAAAXgAAAAADXgAAAAABXgAAAAADXgAAAAADXgAAAAAAbQAAAAAAewAAAAAAewAAAAABewAAAAAAewAAAAACewAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAewAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAABXgAAAAAAXgAAAAADXgAAAAAAXgAAAAADfwAAAAAAewAAAAABewAAAAABewAAAAACfwAAAAAAMAAAAAAD version: 6 -3,-2: ind: -3,-2 - tiles: fwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAADwAAAAAAfwAAAAAAXgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAewAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAADQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAADQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAewAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAbwAAAAACfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbwAAAAABfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAewAAAAAAewAAAAAAewAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAIAAAAAACIAAAAAADfwAAAAAAfwAAAAAAfwAAAAAAIAAAAAAAIAAAAAABfwAAAAAAbwAAAAAAewAAAAAAewAAAAAAewAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAIAAAAAAAIAAAAAADfwAAAAAAbgAAAAAAfwAAAAAAIAAAAAABIAAAAAADfwAAAAAAbwAAAAABewAAAAAAewAAAAAAewAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAfwAAAAAAXgAAAAADfwAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAA + tiles: fwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAADwAAAAAAfwAAAAAAXgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAewAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAADQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAADQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAewAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAbwAAAAACfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbwAAAAABfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAIAAAAAAAIAAAAAAAfwAAAAAAJAAAAAAAJAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAJAAAAAAAJAAAAAAAfwAAAAAAbwAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAIAAAAAAAIAAAAAAAfwAAAAAAJAAAAAAAJAAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAJAAAAAAAJAAAAAAAfwAAAAAAbwAAAAABXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAIAAAAAAAIAAAAAAAfwAAAAAAUAAAAAAAbQAAAAAAfwAAAAAAIAAAAAAAfwAAAAAAUAAAAAAAbQAAAAAAfwAAAAAAfwAAAAAA version: 6 2,-2: ind: 2,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAACXgAAAAACXgAAAAACfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAABNQAAAAABNQAAAAADXgAAAAADXgAAAAADXgAAAAAAXgAAAAACXgAAAAACXgAAAAACfwAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAMAAAAAAAXgAAAAACMAAAAAADXgAAAAABMAAAAAADXgAAAAADMAAAAAACXgAAAAABfwAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAABXgAAAAADXgAAAAAAXgAAAAAAXgAAAAABXgAAAAABMAAAAAAAXgAAAAACXgAAAAADfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAABMAAAAAAAXgAAAAACMAAAAAABXgAAAAAAMAAAAAAAXgAAAAADMAAAAAACXgAAAAADbgAAAAAAfwAAAAAAbgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANQAAAAACNQAAAAABNQAAAAACNQAAAAACXgAAAAABXgAAAAADXgAAAAABXgAAAAADXgAAAAADfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAADXgAAAAAAXgAAAAADXgAAAAACbgAAAAAAfwAAAAAAbgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfwAAAAAAXgAAAAABXgAAAAAAXgAAAAACXgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAUAAAAAAAbgAAAAAAUAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAXgAAAAACXgAAAAACXgAAAAACfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAABNQAAAAABNQAAAAADXgAAAAADXgAAAAADXgAAAAAAXgAAAAACXgAAAAACXgAAAAACUAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAMAAAAAAAXgAAAAACMAAAAAADXgAAAAABMAAAAAADXgAAAAADMAAAAAACXgAAAAABUAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAABXgAAAAADXgAAAAAAXgAAAAAAXgAAAAABXgAAAAABMAAAAAAAXgAAAAACXgAAAAADfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAABMAAAAAAAXgAAAAACMAAAAAABXgAAAAAAMAAAAAAAXgAAAAADMAAAAAACXgAAAAADbgAAAAAAfwAAAAAAbgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANQAAAAACNQAAAAABNQAAAAACNQAAAAACXgAAAAABXgAAAAADXgAAAAABXgAAAAADXgAAAAADUAAAAAAAUAAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAADXgAAAAAAXgAAAAADXgAAAAACbgAAAAAAfwAAAAAAbgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfwAAAAAAXgAAAAABXgAAAAAAXgAAAAACXgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 2,-1: ind: 2,-1 - tiles: QAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAbQAAAAAAXgAAAAABXgAAAAABXgAAAAABXgAAAAACfwAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAXgAAAAADMAAAAAABXgAAAAADXgAAAAAAfwAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAMgAAAAAAfwAAAAAANQAAAAACXgAAAAAAMAAAAAABXgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAMgAAAAAAfwAAAAAANQAAAAAAXgAAAAADXgAAAAABMAAAAAACbgAAAAAAfwAAAAAAbgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAABDgAAAAADDgAAAAADDgAAAAACfwAAAAAANQAAAAADXgAAAAADXgAAAAADXgAAAAACfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAABDgAAAAADDgAAAAACDgAAAAABfwAAAAAANQAAAAADXgAAAAABXgAAAAABXgAAAAADbgAAAAAAfwAAAAAAbgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAADgAAAAAADgAAAAACDgAAAAADfwAAAAAANQAAAAABXgAAAAAAXgAAAAADXgAAAAABfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAADMAAAAAABMAAAAAADbQAAAAAAfwAAAAAAXgAAAAAAMAAAAAABXgAAAAAAXgAAAAAAUAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAADIAAAAAADIAAAAAAAIAAAAAADfwAAAAAAXgAAAAADXgAAAAACMAAAAAADXgAAAAACUAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAADIAAAAAACIAAAAAAAIAAAAAABbQAAAAAAXgAAAAACXgAAAAAAXgAAAAADMAAAAAADUAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAABMAAAAAADIAAAAAADMAAAAAACUAAAAAAAXgAAAAACXgAAAAADXgAAAAADXgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAACIAAAAAACIAAAAAACIAAAAAADUAAAAAAAXgAAAAABXgAAAAAAXgAAAAADXgAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAMAAAAAACIAAAAAADMAAAAAABfwAAAAAAMAAAAAACXgAAAAABXgAAAAAAXgAAAAACfwAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbQAAAAAAIAAAAAACIAAAAAACfwAAAAAAfwAAAAAAXgAAAAAAMAAAAAAAXgAAAAADXgAAAAADfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXgAAAAAAXgAAAAADXgAAAAACXgAAAAACXgAAAAAAXgAAAAAAXgAAAAADMAAAAAAAXgAAAAADfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfwAAAAAA + tiles: QAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAbQAAAAAAXgAAAAABXgAAAAABXgAAAAABXgAAAAACUAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAUAAAAAAAUAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAADMAAAAAABXgAAAAADXgAAAAAAUAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPwAAAAAAPwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAANQAAAAACXgAAAAAAMAAAAAABXgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPwAAAAAAXgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAANQAAAAAAXgAAAAADXgAAAAABMAAAAAACbgAAAAAAfwAAAAAAbgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAABDgAAAAADDgAAAAADfwAAAAAAfwAAAAAANQAAAAADXgAAAAADXgAAAAADXgAAAAACUAAAAAAAUAAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAABDgAAAAADDgAAAAACDgAAAAABfwAAAAAANQAAAAADXgAAAAABXgAAAAABXgAAAAADbgAAAAAAfwAAAAAAbgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAADgAAAAAADgAAAAACDgAAAAADfwAAAAAANQAAAAABXgAAAAAAXgAAAAADXgAAAAABfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAADMAAAAAABMAAAAAADbQAAAAAAfwAAAAAAXgAAAAAAMAAAAAABXgAAAAAAXgAAAAAAUAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAADIAAAAAADIAAAAAAAIAAAAAADfwAAAAAAXgAAAAADXgAAAAACMAAAAAADXgAAAAACUAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAADIAAAAAACIAAAAAAAIAAAAAABUAAAAAAAXgAAAAACXgAAAAAAXgAAAAADMAAAAAADUAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAABMAAAAAADIAAAAAADMAAAAAACUAAAAAAAXgAAAAACXgAAAAADXgAAAAADXgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAACIAAAAAACIAAAAAACIAAAAAADUAAAAAAAXgAAAAABXgAAAAAAXgAAAAADXgAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAMAAAAAACIAAAAAADMAAAAAABfwAAAAAAMAAAAAACXgAAAAABXgAAAAAAXgAAAAACfwAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAXgAAAAAAMAAAAAAAXgAAAAADXgAAAAADfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXgAAAAAAXgAAAAADXgAAAAACXgAAAAACXgAAAAAAXgAAAAAAXgAAAAADMAAAAAAAXgAAAAADfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfwAAAAAA version: 6 2,0: ind: 2,0 - tiles: XgAAAAACMAAAAAABMAAAAAABXgAAAAABXgAAAAAAXgAAAAAAXgAAAAABXgAAAAAAMAAAAAADXgAAAAAAXgAAAAAAXgAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAXgAAAAABXgAAAAACXgAAAAACXgAAAAADXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAACXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbgAAAAAAfwAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAUAAAAAAAXgAAAAAAfwAAAAAACgAAAAAACgAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAbwAAAAABfwAAAAAAbwAAAAADXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAUAAAAAAAXgAAAAAAUAAAAAAACgAAAAAACgAAAAAAUAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAMAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAfwAAAAAACgAAAAAACgAAAAAAfwAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAAAMAAAAAAAXgAAAAAAUAAAAAAAXgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAAAXgAAAAAAMAAAAAAAUAAAAAAAXgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAfwAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAfwAAAAAAXgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAUAAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAUAAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAewAAAAACewAAAAABfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAA + tiles: XgAAAAACMAAAAAABMAAAAAABXgAAAAABXgAAAAAAXgAAAAAAXgAAAAABXgAAAAAAMAAAAAADXgAAAAAAXgAAAAAAXgAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAXgAAAAABXgAAAAACXgAAAAACXgAAAAADXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAACXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbgAAAAAAfwAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAUAAAAAAAXgAAAAAAfwAAAAAACgAAAAAACgAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAbwAAAAABfwAAAAAAfwAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAUAAAAAAAXgAAAAAAUAAAAAAACgAAAAAACgAAAAAAUAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAMAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAfwAAAAAACgAAAAAACgAAAAAAfwAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAAAMAAAAAAAXgAAAAAAUAAAAAAAXgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAAAXgAAAAAAMAAAAAAAUAAAAAAAXgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAfwAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAfwAAAAAAXgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAUAAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAUAAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAewAAAAACewAAAAABfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAA version: 6 2,1: ind: 2,1 - tiles: ewAAAAAAewAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfwAAAAAABwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAABwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAABwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAABwAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAABwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfwAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAABwAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfwAAAAAABwAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: ewAAAAAAewAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfwAAAAAABwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAABwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAABwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAABwAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAABwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfwAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAABwAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfwAAAAAABwAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -4,0: ind: -4,0 - tiles: fgAAAAAAfgAAAAAAfwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAewAAAAACewAAAAABewAAAAABewAAAAAAewAAAAABewAAAAACewAAAAADewAAAAABfwAAAAAAfgAAAAAAAAAAAAAAfwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAewAAAAABewAAAAAAewAAAAABewAAAAADewAAAAABewAAAAACewAAAAABewAAAAABfwAAAAAAfgAAAAAAAAAAAAAAfwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAewAAAAABfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAARAAAAAAARAAAAAAARAAAAAAARAAAAAAAXgAAAAAAXgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfwAAAAAARAAAAAAARAAAAAAARAAAAAAARAAAAAAAXgAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAARAAAAAAARAAAAAAARAAAAAAARAAAAAAAXgAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAXgAAAAADXgAAAAABXgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAXgAAAAABXgAAAAACXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAAAXgAAAAACMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAbgAAAAAAXgAAAAABXgAAAAADMAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAbgAAAAAAbgAAAAAAfwAAAAAAXgAAAAADXgAAAAACXgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAbgAAAAAAXgAAAAACXgAAAAAAMAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAAAXgAAAAACMAAAAAAA + tiles: fgAAAAAAfgAAAAAAfwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAewAAAAACewAAAAABewAAAAABewAAAAAAewAAAAABewAAAAACewAAAAADewAAAAABfwAAAAAAfgAAAAAAAAAAAAAAfwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAewAAAAABewAAAAAAewAAAAABewAAAAADewAAAAABewAAAAACewAAAAABewAAAAABfwAAAAAAfgAAAAAAAAAAAAAAfwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAewAAAAABfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAARAAAAAAARAAAAAAARAAAAAAARAAAAAAAfwAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAARAAAAAAARAAAAAAARAAAAAAARAAAAAAAXgAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAARAAAAAAARAAAAAAARAAAAAAARAAAAAAAUAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAAAfwAAAAAAbQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAXgAAAAADXgAAAAABXgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAXgAAAAABXgAAAAACXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAACMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbQAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAbQAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAABXgAAAAADMAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAUAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAADXgAAAAACXgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAbQAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAbQAAAAAAXgAAAAAAXgAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAXgAAAAACXgAAAAAAMAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAXgAAAAAAXgAAAAACMAAAAAAA version: 6 -4,-1: ind: -4,-1 - tiles: fgAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAewAAAAACewAAAAABewAAAAABewAAAAAAewAAAAACewAAAAADewAAAAAAewAAAAADewAAAAADewAAAAAAewAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAfwAAAAAAewAAAAADewAAAAADewAAAAADewAAAAAAewAAAAACewAAAAAAewAAAAACewAAAAADfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAIAAAAAABIAAAAAAAfwAAAAAAewAAAAABewAAAAABewAAAAABewAAAAADewAAAAACewAAAAABewAAAAAAewAAAAABfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAIAAAAAAAIAAAAAACfwAAAAAAewAAAAADewAAAAAAewAAAAACewAAAAAAewAAAAAAewAAAAACfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAewAAAAABewAAAAABewAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAQwAAAAAAOwAAAAAATQAAAAAATQAAAAADTQAAAAABTQAAAAABTQAAAAACfwAAAAAAewAAAAABewAAAAADewAAAAABQwAAAAAAJAAAAAAAJAAAAAAAQwAAAAAAIAAAAAABIAAAAAAAOwAAAAAATQAAAAADTQAAAAACTQAAAAAATQAAAAAATQAAAAAAfwAAAAAAewAAAAAAewAAAAACewAAAAAAQwAAAAAAJAAAAAAAJAAAAAAAQwAAAAAAIAAAAAACIAAAAAABOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAQwAAAAAAewAAAAADewAAAAACewAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAOwAAAAAATQAAAAACTQAAAAADTQAAAAADTQAAAAABTQAAAAAAfwAAAAAAewAAAAABewAAAAACewAAAAADQwAAAAAAcQAAAAADcQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAOwAAAAAATQAAAAADTQAAAAACTQAAAAADTQAAAAABTQAAAAAAfwAAAAAAQwAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAewAAAAACewAAAAABQwAAAAAAIAAAAAABIAAAAAABIAAAAAACIAAAAAABIAAAAAADIAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAPwAAAAAAPwAAAAAAewAAAAADewAAAAAAfwAAAAAAIAAAAAABIAAAAAACIAAAAAAAIAAAAAADIAAAAAAAIAAAAAACfgAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAPwAAAAAAPwAAAAAAewAAAAABewAAAAACQwAAAAAAIAAAAAADIAAAAAABIAAAAAADIAAAAAAAIAAAAAABIAAAAAABfgAAAAAAAAAAAAAAfwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAewAAAAACewAAAAADfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAfwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAewAAAAAAewAAAAADewAAAAACewAAAAADewAAAAAAewAAAAAAewAAAAABewAAAAADfwAAAAAA + tiles: fgAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAewAAAAACewAAAAABewAAAAABewAAAAAAewAAAAACewAAAAADewAAAAAAewAAAAADewAAAAADewAAAAAAewAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAfwAAAAAAewAAAAADewAAAAADewAAAAADewAAAAAAewAAAAACewAAAAAAewAAAAACewAAAAADfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAIAAAAAABIAAAAAAAfwAAAAAAewAAAAABewAAAAABewAAAAABewAAAAADewAAAAACewAAAAABewAAAAAAewAAAAABfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAIAAAAAAAIAAAAAACfwAAAAAAewAAAAADewAAAAAAewAAAAACewAAAAAAewAAAAAAewAAAAACfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAewAAAAABewAAAAABewAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAIAAAAAAAIAAAAAAAOwAAAAAATQAAAAAATQAAAAADTQAAAAABTQAAAAABTQAAAAACfwAAAAAAewAAAAABewAAAAADewAAAAABQwAAAAAAJAAAAAAAJAAAAAAAQwAAAAAAIAAAAAAAIAAAAAAAOwAAAAAATQAAAAADTQAAAAACTQAAAAAATQAAAAAATQAAAAAAUAAAAAAAewAAAAAAewAAAAACewAAAAAAQwAAAAAAJAAAAAAAJAAAAAAAQwAAAAAAIAAAAAAAIAAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAQwAAAAAAewAAAAADewAAAAACewAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAIAAAAAAAOwAAAAAATQAAAAACTQAAAAADTQAAAAADTQAAAAABTQAAAAAAUAAAAAAAewAAAAABewAAAAACewAAAAADQwAAAAAAcQAAAAADcQAAAAAAfwAAAAAAfwAAAAAAIAAAAAAAOwAAAAAATQAAAAADTQAAAAACTQAAAAADTQAAAAABTQAAAAAAfwAAAAAAQwAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAewAAAAACewAAAAABQwAAAAAAIAAAAAABIAAAAAABIAAAAAACUAAAAAAAIAAAAAADIAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAPwAAAAAAPwAAAAAAewAAAAADewAAAAAAfwAAAAAAIAAAAAABIAAAAAACIAAAAAAAfwAAAAAAIAAAAAAAIAAAAAACfgAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAPwAAAAAAPwAAAAAAewAAAAABewAAAAACQwAAAAAAIAAAAAADIAAAAAABIAAAAAADUAAAAAAAIAAAAAABIAAAAAABfgAAAAAAAAAAAAAAUAAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAewAAAAACewAAAAADfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAUAAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAewAAAAAAewAAAAADewAAAAACewAAAAADewAAAAAAewAAAAAAewAAAAABewAAAAADfwAAAAAA version: 6 -4,-2: ind: -4,-2 - tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAUAAAAAAAUAAAAAAAewAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAUAAAAAAAewAAAAAAewAAAAAADQAAAAAAewAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAUAAAAAAAewAAAAAAewAAAAAAewAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAUAAAAAAAUAAAAAAAewAAAAAAfwAAAAAAewAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAewAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAAgAAAAAAAgAAAAAAfwAAAAAAXgAAAAACXgAAAAADfwAAAAAAXgAAAAADXgAAAAADfwAAAAAALAAAAAAALAAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfwAAAAAAAgAAAAAAAgAAAAAAfwAAAAAAXgAAAAAAXgAAAAACfwAAAAAAXgAAAAABXgAAAAAAfwAAAAAALAAAAAAALAAAAAAAfwAAAAAA + tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAUAAAAAAAUAAAAAAAewAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAUAAAAAAAewAAAAAAewAAAAAADQAAAAAAewAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAUAAAAAAAewAAAAAAewAAAAAAewAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAUAAAAAAAUAAAAAAAewAAAAAAfwAAAAAAewAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAewAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAAgAAAAAAAgAAAAAAfwAAAAAAXgAAAAACXgAAAAADfwAAAAAAXgAAAAADXgAAAAADfwAAAAAALAAAAAAALAAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfwAAAAAAAgAAAAAAAgAAAAAAfwAAAAAAXgAAAAAAXgAAAAACfwAAAAAAXgAAAAABXgAAAAAAfwAAAAAALAAAAAAALAAAAAAAfwAAAAAA version: 6 -4,1: ind: -4,1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAXgAAAAACXgAAAAAAXgAAAAADXgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAXgAAAAAAXgAAAAADXgAAAAAAMAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAXgAAAAAAXgAAAAAAXgAAAAABMAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAABXgAAAAABXgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAbgAAAAAAXgAAAAACXgAAAAAAMAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAbgAAAAAAbgAAAAAAfwAAAAAAXgAAAAABXgAAAAAAMAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAbgAAAAAAXgAAAAAAXgAAAAAAXgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAABXgAAAAACXgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAewAAAAAAewAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAADewAAAAABewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAewAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAewAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAewAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAwAAAAAAAwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAewAAAAABewAAAAADewAAAAADfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAXgAAAAAAXgAAAAADXgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAXgAAAAADXgAAAAAAMAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAXgAAAAAAXgAAAAABMAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAXgAAAAABXgAAAAABXgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAbQAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAbQAAAAAAXgAAAAAAXgAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAXgAAAAACXgAAAAAAMAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAUAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAABXgAAAAAAMAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAbQAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAbQAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAABXgAAAAACXgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAewAAAAAAewAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAUAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAADewAAAAABewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAUAAAAAAAewAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAUAAAAAAAewAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAUAAAAAAAewAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAwAAAAAAAwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAewAAAAABewAAAAADewAAAAADfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAA version: 6 -2,-3: ind: -2,-3 - tiles: fwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAQwAAAAAAOwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAIAAAAAAAfwAAAAAAIAAAAAAAfwAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAIAAAAAAAfwAAAAAAIAAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAIAAAAAAAfwAAAAAAfwAAAAAAIAAAAAAAfwAAAAAAIAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAIAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAIAAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAIAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAIAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAIAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAIAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAIAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAIAAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAIAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAIAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAIAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAIAAAAAAA + tiles: UAAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAQwAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAIAAAAAAAfwAAAAAAIAAAAAAAfwAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAIAAAAAAAfwAAAAAAIAAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAUAAAAAAAIAAAAAAAfwAAAAAAfwAAAAAAIAAAAAAAfwAAAAAAIAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAIAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAIAAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAIAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAIAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAIAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAUAAAAAAAIAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAIAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAIAAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAIAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAIAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAUAAAAAAAIAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAIAAAAAAA version: 6 -1,-3: ind: -1,-3 - tiles: QwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAIAAAAAAAfwAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAIAAAAAAAQwAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAIAAAAAAAQwAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAIAAAAAAAQwAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAIAAAAAAAfwAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAIAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAIAAAAAAAfwAAAAAAIAAAAAAAXgAAAAAAXgAAAAABIAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAIAAAAAAAQwAAAAAAIAAAAAAAXgAAAAAAXgAAAAACIAAAAAAAfwAAAAAAfwAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAIAAAAAAAfwAAAAAAIAAAAAAAXgAAAAACXgAAAAAAIAAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAIAAAAAAAfwAAAAAAIAAAAAAAXgAAAAABXgAAAAAAIAAAAAAAfwAAAAAAfwAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAIAAAAAAAfwAAAAAAIAAAAAAAXgAAAAACXgAAAAABIAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAIAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAXgAAAAADXgAAAAADQwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAIAAAAAAAfwAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAfwAAAAAAQwAAAAAAXgAAAAACXgAAAAADQwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAXgAAAAABBQAAAAAAfwAAAAAAJAAAAAADJAAAAAAAJAAAAAACQwAAAAAAIAAAAAAAfwAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAfwAAAAAAXgAAAAADfwAAAAAAXgAAAAAABQAAAAAAfwAAAAAAMAAAAAADMAAAAAABMAAAAAABfwAAAAAA + tiles: QwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAIAAAAAAAfwAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAIAAAAAAAQwAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAIAAAAAAAQwAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAIAAAAAAAQwAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAIAAAAAAAfwAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAIAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAIAAAAAAAUAAAAAAAIAAAAAAAXgAAAAAAXgAAAAABIAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAIAAAAAAAQwAAAAAAIAAAAAAAXgAAAAAAXgAAAAACIAAAAAAAfwAAAAAAfwAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAIAAAAAAAfwAAAAAAIAAAAAAAXgAAAAACXgAAAAAAIAAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAIAAAAAAAfwAAAAAAIAAAAAAAXgAAAAABXgAAAAAAIAAAAAAAfwAAAAAAfwAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAIAAAAAAAfwAAAAAAIAAAAAAAXgAAAAACXgAAAAABIAAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAIAAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAXgAAAAADXgAAAAADQwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAIAAAAAAAUAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAUAAAAAAAQwAAAAAAXgAAAAACXgAAAAADQwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAXgAAAAABBQAAAAAAUAAAAAAAJAAAAAADJAAAAAAAJAAAAAACQwAAAAAAIAAAAAAAUAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAUAAAAAAAXgAAAAADfwAAAAAAXgAAAAAABQAAAAAAUAAAAAAAMAAAAAADMAAAAAABMAAAAAABfwAAAAAA version: 6 0,-3: ind: 0,-3 - tiles: fwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfwAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAOwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfwAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAfwAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAOwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAQwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfwAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAfwAAAAAAPAAAAAAAfwAAAAAAOwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAOwAAAAAAfwAAAAAAfwAAAAAAOwAAAAAAOwAAAAAAfwAAAAAAPAAAAAAAfwAAAAAAOwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfwAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAQwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAJQAAAAABfwAAAAAAXgAAAAABfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAKAAAAAADKAAAAAACKAAAAAABfwAAAAAAJQAAAAAAfwAAAAAAXgAAAAADfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAXgAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAfwAAAAAATwAAAAAATwAAAAAAfwAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAXgAAAAADfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAfwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAfwAAAAAAJQAAAAADfwAAAAAAXgAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAfwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAfwAAAAAAfwAAAAAATwAAAAADTwAAAAABfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAewAAAAAAewAAAAADewAAAAAAQwAAAAAAfwAAAAAAXgAAAAAATwAAAAAAPAAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfwAAAAAALAAAAAAAewAAAAAAewAAAAACewAAAAADQwAAAAAAfwAAAAAAXgAAAAACTwAAAAADfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfwAAAAAALAAAAAAAewAAAAAAewAAAAAAewAAAAADQwAAAAAAfwAAAAAAXgAAAAABXgAAAAAD + tiles: fwAAAAAAfwAAAAAAUAAAAAAAfgAAAAAAUAAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAOwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAfgAAAAAAUAAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAfwAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAOwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAQwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAfgAAAAAAUAAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAfwAAAAAAPAAAAAAAfwAAAAAAOwAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAOwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAPAAAAAAAfwAAAAAAOwAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAfgAAAAAAUAAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAQwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAJQAAAAABfwAAAAAAXgAAAAABfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAKAAAAAADKAAAAAACKAAAAAABfwAAAAAAJQAAAAAAfwAAAAAAXgAAAAADUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAXgAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAfwAAAAAATwAAAAAATwAAAAAAfwAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAXgAAAAADUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAUAAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAfwAAAAAAJQAAAAADfwAAAAAAXgAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAfwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAfwAAAAAAUAAAAAAATwAAAAADTwAAAAABfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAewAAAAAAewAAAAADewAAAAAAQwAAAAAAfwAAAAAAXgAAAAAATwAAAAAAPAAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfwAAAAAALAAAAAAAewAAAAAAewAAAAACewAAAAADQwAAAAAAfwAAAAAAXgAAAAACTwAAAAADfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAUAAAAAAALAAAAAAAewAAAAAAewAAAAAAewAAAAADQwAAAAAAUAAAAAAAXgAAAAABXgAAAAAD version: 6 1,-3: ind: 1,-3 - tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAbQAAAAAAfwAAAAAAbQAAAAAAUAAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATwAAAAABfwAAAAAAUAAAAAAAbQAAAAAAfwAAAAAAbQAAAAAAUAAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATwAAAAADfwAAAAAAUAAAAAAAbQAAAAAAfwAAAAAAbQAAAAAAUAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAADXgAAAAABUAAAAAAAXgAAAAABXgAAAAACXgAAAAACUAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAbQAAAAAAfwAAAAAAbQAAAAAAUAAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATwAAAAABUAAAAAAAUAAAAAAAbQAAAAAAUAAAAAAAbQAAAAAAUAAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATwAAAAADfwAAAAAAUAAAAAAAbQAAAAAAUAAAAAAAbQAAAAAAUAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAADXgAAAAABUAAAAAAAXgAAAAABXgAAAAACXgAAAAACUAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -3,2: ind: -3,2 - tiles: XgAAAAABXgAAAAAAXgAAAAADXgAAAAABfwAAAAAAXgAAAAACMAAAAAAAMAAAAAABMAAAAAAAXgAAAAABbQAAAAAAewAAAAADewAAAAADewAAAAABfwAAAAAAewAAAAACMAAAAAABXgAAAAABMAAAAAACMAAAAAACbQAAAAAAXgAAAAAAXgAAAAADXgAAAAAAXgAAAAABXgAAAAAAfwAAAAAAewAAAAAAewAAAAADewAAAAADfwAAAAAAbQAAAAAAMAAAAAABXgAAAAADUAAAAAAAUAAAAAAAfwAAAAAAXgAAAAABMAAAAAABMAAAAAADMAAAAAAAUAAAAAAAfwAAAAAAewAAAAAAewAAAAADewAAAAAAfwAAAAAAIAAAAAADMAAAAAAAXgAAAAACfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAXgAAAAABXgAAAAAAUAAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAIAAAAAACMAAAAAACXgAAAAACfwAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAfwAAAAAAMAAAAAADMAAAAAACUAAAAAAAfwAAAAAAIAAAAAACIAAAAAAAbQAAAAAAfwAAAAAAMAAAAAACXgAAAAABXgAAAAACfwAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAfwAAAAAAXgAAAAACXgAAAAACUAAAAAAAfwAAAAAAIAAAAAABIAAAAAAAfwAAAAAAMAAAAAACMAAAAAACbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAIAAAAAAAIAAAAAADfwAAAAAAfwAAAAAAMAAAAAABKQAAAAABKQAAAAADfwAAAAAAXgAAAAABXgAAAAABXgAAAAAAXgAAAAACXgAAAAACXgAAAAAAXgAAAAADfwAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAKQAAAAABKQAAAAAAfwAAAAAAXgAAAAADXgAAAAADXgAAAAAAXgAAAAADXgAAAAADXgAAAAAAXgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAKQAAAAACKQAAAAAAfwAAAAAAXgAAAAABXgAAAAACSwAAAAAASwAAAAACXgAAAAABXgAAAAAAXgAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAKQAAAAADKQAAAAAAKQAAAAABKQAAAAACKQAAAAAAKQAAAAABKQAAAAACfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbwAAAAADfwAAAAAAfwAAAAAAKQAAAAACKQAAAAABKQAAAAACKQAAAAABHgAAAAAAHgAAAAAAHgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAIAAAAAAAIAAAAAAAbwAAAAACfwAAAAAAfwAAAAAAKQAAAAAAKQAAAAACKQAAAAACKQAAAAADHgAAAAAAHgAAAAAAHgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAIAAAAAAAIAAAAAAAfwAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbwAAAAACfwAAAAAAfwAAAAAAfwAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbwAAAAABfwAAAAAAewAAAAAAewAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAewAAAAAAewAAAAAA + tiles: XgAAAAABXgAAAAAAXgAAAAADXgAAAAABfwAAAAAAXgAAAAACMAAAAAAAMAAAAAABMAAAAAAAXgAAAAABbQAAAAAAewAAAAADewAAAAADewAAAAABfwAAAAAAewAAAAACMAAAAAABXgAAAAABMAAAAAACMAAAAAACbQAAAAAAXgAAAAAAXgAAAAADXgAAAAAAXgAAAAABXgAAAAAAfwAAAAAAewAAAAAAewAAAAADewAAAAADfwAAAAAAbQAAAAAAMAAAAAABXgAAAAADUAAAAAAAUAAAAAAAfwAAAAAAXgAAAAABMAAAAAABMAAAAAADMAAAAAAAUAAAAAAAfwAAAAAAewAAAAAAewAAAAADewAAAAAAfwAAAAAAIAAAAAADMAAAAAAAXgAAAAACfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAXgAAAAABXgAAAAAAUAAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAIAAAAAACMAAAAAACXgAAAAACUAAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAUAAAAAAAMAAAAAADMAAAAAACUAAAAAAAfwAAAAAAIAAAAAACIAAAAAAAbQAAAAAAfwAAAAAAMAAAAAACXgAAAAABXgAAAAACUAAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAUAAAAAAAXgAAAAACXgAAAAACUAAAAAAAfwAAAAAAIAAAAAABIAAAAAAAfwAAAAAAMAAAAAACMAAAAAACbQAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAIAAAAAAAIAAAAAADfwAAAAAAfwAAAAAAMAAAAAABKQAAAAABKQAAAAADfwAAAAAAXgAAAAABXgAAAAABXgAAAAAAXgAAAAACXgAAAAACXgAAAAAAXgAAAAADfwAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAKQAAAAABKQAAAAAAfwAAAAAAXgAAAAADXgAAAAADXgAAAAAAXgAAAAADXgAAAAADXgAAAAAAXgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAKQAAAAACKQAAAAAAfwAAAAAAXgAAAAABXgAAAAACSwAAAAAASwAAAAACXgAAAAABXgAAAAAAXgAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAKQAAAAADKQAAAAAAKQAAAAABKQAAAAACKQAAAAAAKQAAAAABKQAAAAACfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbwAAAAADfwAAAAAAfwAAAAAAKQAAAAACKQAAAAABKQAAAAACKQAAAAABHgAAAAAAHgAAAAAAHgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAIAAAAAAAIAAAAAAAbwAAAAACfwAAAAAAfwAAAAAAKQAAAAAAKQAAAAACKQAAAAACKQAAAAADHgAAAAAAHgAAAAAAHgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAIAAAAAAAIAAAAAAAfwAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbwAAAAACfwAAAAAAfwAAAAAAfwAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbwAAAAABfwAAAAAAewAAAAAAewAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAewAAAAAAewAAAAAA version: 6 -4,2: ind: -4,2 - tiles: fwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAABUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAXgAAAAADMAAAAAADXgAAAAACfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAACMAAAAAABXgAAAAACfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAACMAAAAAABXgAAAAABfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAXgAAAAAAMAAAAAAAXgAAAAABfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAASAAAAAAASAAAAAAAXgAAAAACfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAfwAAAAAAKQAAAAADKQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAfwAAAAAAKQAAAAADKQAAAAACAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAfwAAAAAAKQAAAAABKQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAIAAAAAAAIAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAIAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAA + tiles: fwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAABUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAXgAAAAADMAAAAAADXgAAAAACfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAXgAAAAACMAAAAAABXgAAAAACfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAXgAAAAACMAAAAAABXgAAAAABfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAXgAAAAAAMAAAAAAAXgAAAAABfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAASAAAAAAASAAAAAAAXgAAAAACfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAUAAAAAAAKQAAAAADKQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAUAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAUAAAAAAAKQAAAAADKQAAAAACAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAUAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAUAAAAAAAKQAAAAABKQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAUAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAfwAAAAAAKQAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAIAAAAAAAfwAAAAAAIAAAAAAAIAAAAAAAfwAAAAAAKQAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAIAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAIAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAA version: 6 -2,2: ind: -2,2 - tiles: ewAAAAABewAAAAACewAAAAACewAAAAADewAAAAABewAAAAACfwAAAAAAMAAAAAADXgAAAAAAXgAAAAABfwAAAAAAbgAAAAAAfwAAAAAAfwAAAAAANQAAAAAANQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAADXgAAAAADXgAAAAACbQAAAAAAIAAAAAAAIAAAAAAAbQAAAAAAIAAAAAACIAAAAAADIAAAAAABfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbgAAAAAAXgAAAAADXgAAAAABXgAAAAACfwAAAAAAIAAAAAAAIAAAAAAAfwAAAAAAIAAAAAACIAAAAAAAIAAAAAADfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbwAAAAACfwAAAAAAMAAAAAABXgAAAAABXgAAAAACbQAAAAAAIAAAAAAAIAAAAAAAbQAAAAAAIAAAAAADIAAAAAABfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAADXgAAAAABXgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAIAAAAAADIAAAAAACMAAAAAADfwAAAAAAfwAAAAAAfwAAAAAAewAAAAAAewAAAAABfwAAAAAAbQAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAewAAAAADewAAAAABfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbgAAAAAAewAAAAAAewAAAAABewAAAAADewAAAAADewAAAAAAewAAAAABewAAAAACewAAAAADewAAAAAAfwAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAATwAAAAABTwAAAAABTwAAAAADTwAAAAACTwAAAAACTwAAAAACTwAAAAAATwAAAAADTwAAAAABfwAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAbwAAAAADbwAAAAACfwAAAAAAIAAAAAAAIAAAAAAAIAAAAAAATwAAAAAATwAAAAAATwAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAIAAAAAAAIAAAAAAATwAAAAAAIAAAAAAAIAAAAAAAIAAAAAAATwAAAAAAIAAAAAAAIAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAATwAAAAAAIAAAAAAAIAAAAAAAIAAAAAAATwAAAAAAIAAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAATwAAAAAAIAAAAAAAIAAAAAAAIAAAAAAATwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAIAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAIAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAfwAAAAAAewAAAAAAewAAAAAAewAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAewAAAAAAewAAAAAAfwAAAAAAewAAAAAAewAAAAAAewAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAA + tiles: ewAAAAABewAAAAACewAAAAACewAAAAADewAAAAABewAAAAACfwAAAAAAMAAAAAADXgAAAAAAXgAAAAABfwAAAAAAbgAAAAAAfwAAAAAAfwAAAAAANQAAAAAANQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAADXgAAAAADXgAAAAACbQAAAAAAIAAAAAAAIAAAAAAAbQAAAAAAIAAAAAACIAAAAAADIAAAAAABfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbgAAAAAAXgAAAAADXgAAAAABXgAAAAACUAAAAAAAIAAAAAAAIAAAAAAAUAAAAAAAIAAAAAACIAAAAAAAIAAAAAADfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbwAAAAACfwAAAAAAMAAAAAABXgAAAAABXgAAAAACbQAAAAAAIAAAAAAAIAAAAAAAbQAAAAAAIAAAAAADIAAAAAABfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAADXgAAAAABXgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAIAAAAAADIAAAAAACMAAAAAADfwAAAAAAfwAAAAAAfwAAAAAAewAAAAAAewAAAAABfwAAAAAAbQAAAAAAUAAAAAAAbQAAAAAAfwAAAAAAewAAAAADewAAAAABfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbgAAAAAAewAAAAAAewAAAAABewAAAAADewAAAAADewAAAAAAewAAAAABewAAAAACewAAAAADewAAAAAAfwAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAATwAAAAABTwAAAAABTwAAAAADTwAAAAACTwAAAAACTwAAAAACTwAAAAAATwAAAAADTwAAAAABfwAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAbwAAAAADbwAAAAACfwAAAAAAIAAAAAAAIAAAAAAAIAAAAAAATwAAAAAATwAAAAAATwAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAIAAAAAAAIAAAAAAATwAAAAAAIAAAAAAAIAAAAAAAIAAAAAAATwAAAAAAIAAAAAAAIAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAATwAAAAAAIAAAAAAAIAAAAAAAIAAAAAAATwAAAAAAIAAAAAAAUAAAAAAAUAAAAAAAfgAAAAAAfgAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAATwAAAAAAIAAAAAAAIAAAAAAAIAAAAAAATwAAAAAAUAAAAAAAUAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAIAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAIAAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAfwAAAAAAewAAAAAAewAAAAAAewAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAewAAAAAAewAAAAAAfwAAAAAAewAAAAAAewAAAAAAewAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAA version: 6 -1,2: ind: -1,2 - tiles: fwAAAAAAbwAAAAACfwAAAAAAJQAAAAAAIAAAAAACMAAAAAABMAAAAAABIAAAAAACJQAAAAACfwAAAAAAbQAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAewAAAAADewAAAAADfwAAAAAAfwAAAAAAfwAAAAAAJQAAAAABIAAAAAACMAAAAAABMAAAAAABIAAAAAACJQAAAAACfwAAAAAAIAAAAAACIAAAAAADIAAAAAAAfwAAAAAAewAAAAABMAAAAAACIAAAAAABIAAAAAACfwAAAAAAJQAAAAACIAAAAAADMAAAAAADMAAAAAABIAAAAAAAJQAAAAACfwAAAAAAIAAAAAADIAAAAAAAIAAAAAADbQAAAAAAewAAAAAAewAAAAABIAAAAAAAIAAAAAACbQAAAAAAJQAAAAADIAAAAAACMAAAAAADMAAAAAACIAAAAAADJQAAAAABbQAAAAAAIAAAAAADIAAAAAAAIAAAAAACfwAAAAAAewAAAAACMAAAAAACIAAAAAADIAAAAAABfwAAAAAAJQAAAAABIAAAAAABIAAAAAABIAAAAAADIAAAAAAAJQAAAAABfwAAAAAAIAAAAAADIAAAAAACIAAAAAADfwAAAAAAfwAAAAAAfwAAAAAAIAAAAAAAIAAAAAACfwAAAAAAfwAAAAAAKQAAAAABTwAAAAACTwAAAAABKQAAAAAAfwAAAAAAfwAAAAAAIAAAAAAAIAAAAAAAIAAAAAADfwAAAAAAewAAAAADewAAAAABIAAAAAADIAAAAAAAIAAAAAADIAAAAAABIAAAAAACTwAAAAACTwAAAAACIAAAAAABIAAAAAABIAAAAAACIAAAAAADIAAAAAACIAAAAAACbQAAAAAAewAAAAADewAAAAADNQAAAAACNQAAAAABIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAACIAAAAAAAIAAAAAADIAAAAAABIAAAAAADIAAAAAAAJQAAAAAAJQAAAAAAfwAAAAAAewAAAAADewAAAAABfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAewAAAAAAewAAAAACfgAAAAAAfwAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAfwAAAAAAJAAAAAAAJAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfwAAAAAABAAAAAAABAAAAAAAMAAAAAACMAAAAAAAMAAAAAAAMAAAAAABBAAAAAAABAAAAAAAfwAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAfwAAAAAAfgAAAAAAfwAAAAAAMAAAAAADMAAAAAABMAAAAAAAMAAAAAABMAAAAAAAMAAAAAACMAAAAAADMAAAAAACfwAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAMAAAAAADMAAAAAADMAAAAAABMAAAAAACfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAJAAAAAAAJAAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAA + tiles: fwAAAAAAbwAAAAACfwAAAAAAJQAAAAAAIAAAAAACMAAAAAABMAAAAAABIAAAAAACJQAAAAACfwAAAAAAbQAAAAAAUAAAAAAAbQAAAAAAfwAAAAAAewAAAAADewAAAAADfwAAAAAAfwAAAAAAfwAAAAAAJQAAAAABIAAAAAACMAAAAAABMAAAAAABIAAAAAACJQAAAAACfwAAAAAAIAAAAAACIAAAAAADIAAAAAAAfwAAAAAAewAAAAABMAAAAAACIAAAAAABIAAAAAACfwAAAAAAJQAAAAACIAAAAAADMAAAAAADMAAAAAABIAAAAAAAJQAAAAACfwAAAAAAIAAAAAADIAAAAAAAIAAAAAADbQAAAAAAewAAAAAAewAAAAABIAAAAAAAIAAAAAACbQAAAAAAJQAAAAADIAAAAAACMAAAAAADMAAAAAACIAAAAAADJQAAAAABbQAAAAAAIAAAAAADIAAAAAAAIAAAAAACfwAAAAAAewAAAAACMAAAAAACIAAAAAADIAAAAAABfwAAAAAAJQAAAAABIAAAAAABIAAAAAABIAAAAAADIAAAAAAAJQAAAAABfwAAAAAAIAAAAAADIAAAAAACIAAAAAADfwAAAAAAfwAAAAAAfwAAAAAAIAAAAAAAIAAAAAACfwAAAAAAfwAAAAAAKQAAAAABTwAAAAACTwAAAAABKQAAAAAAfwAAAAAAfwAAAAAAIAAAAAAAIAAAAAAAIAAAAAADfwAAAAAAewAAAAADewAAAAABIAAAAAADIAAAAAAAIAAAAAADIAAAAAABIAAAAAACTwAAAAACTwAAAAACIAAAAAABIAAAAAABIAAAAAACIAAAAAADIAAAAAACIAAAAAACbQAAAAAAewAAAAADewAAAAADNQAAAAACNQAAAAABIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAACIAAAAAAAIAAAAAADIAAAAAABIAAAAAADIAAAAAAAJQAAAAAAJQAAAAAAfwAAAAAAewAAAAADewAAAAABfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAewAAAAAAewAAAAACfgAAAAAAfwAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAfwAAAAAAJAAAAAAAJAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfwAAAAAABAAAAAAABAAAAAAAMAAAAAACMAAAAAAAMAAAAAAAMAAAAAABBAAAAAAABAAAAAAAfwAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAfwAAAAAAfgAAAAAAUAAAAAAAMAAAAAADMAAAAAABMAAAAAAAMAAAAAABMAAAAAAAMAAAAAACMAAAAAADMAAAAAACfwAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAMAAAAAADMAAAAAADMAAAAAABMAAAAAACUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAJAAAAAAAJAAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAA version: 6 0,2: ind: 0,2 - tiles: MAAAAAADewAAAAADewAAAAACTwAAAAAATwAAAAADUAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAewAAAAADMAAAAAABewAAAAADTwAAAAACTwAAAAAAUAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAMAAAAAABewAAAAADewAAAAAATwAAAAACTwAAAAAAUAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAewAAAAABMAAAAAABewAAAAABTwAAAAAATwAAAAABUAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAUAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAUAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAfwAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAegAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAegAAAAACegAAAAADfwAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAA + tiles: MAAAAAADewAAAAADewAAAAACTwAAAAAATwAAAAADfwAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAewAAAAADMAAAAAABewAAAAADTwAAAAACTwAAAAAAUAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAMAAAAAABewAAAAADewAAAAAATwAAAAACTwAAAAAAUAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAewAAAAABMAAAAAABewAAAAABTwAAAAAATwAAAAABUAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAUAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAUAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAfwAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAegAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAegAAAAACegAAAAADUAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAA version: 6 0,-4: ind: 0,-4 - tiles: AAAAAAAAfwAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAQwAAAAAAfwAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfwAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAOwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfwAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAOwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAfwAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAQwAAAAAAfwAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAfgAAAAAAUAAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAOwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAfgAAAAAAUAAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAOwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAA version: 6 -1,-4: ind: -1,-4 - tiles: IAAAAAAAfwAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAOwAAAAAAfwAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAOwAAAAAAfwAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAOwAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAOwAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAOwAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAOwAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAOwAAAAAAfgAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAOwAAAAAAfgAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAOwAAAAAAfgAAAAAAAAAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAOwAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAOwAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAOwAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAfwAAAAAAfgAAAAAAfwAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAA + tiles: IAAAAAAAUAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAOwAAAAAAfwAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAOwAAAAAAfwAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAOwAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAOwAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAOwAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAOwAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAOwAAAAAAfgAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAOwAAAAAAfgAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAOwAAAAAAfgAAAAAAAAAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAOwAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAOwAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAOwAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAfwAAAAAAfgAAAAAAfwAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAA version: 6 -2,-4: ind: -2,-4 - tiles: AAAAAAAAfgAAAAAAAAAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAIAAAAAAAIAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfgAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAOwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfgAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAOwAAAAAAfwAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAOwAAAAAAfwAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAOwAAAAAAfwAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAOwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAOwAAAAAAfwAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAOwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAOwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAOwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAOwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAOwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAOwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAOwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAOwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAOwAAAAAA + tiles: AAAAAAAAfgAAAAAAAAAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAUAAAAAAAIAAAAAAAIAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfgAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAOwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfgAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAOwAAAAAAfwAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAOwAAAAAAfwAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAOwAAAAAAfwAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAOwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAOwAAAAAAfwAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAOwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAOwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAOwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAOwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAOwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAOwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAOwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAOwAAAAAA version: 6 -3,-3: ind: -3,-3 - tiles: fwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAHQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAEAAAAAAAXgAAAAAAEAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAXgAAAAAAEAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbgAAAAAAXgAAAAAADwAAAAAAXgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAEAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAXgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAAAfwAAAAAAEAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAAAXgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAAAXgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAA + tiles: fwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAHQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAEAAAAAAAXgAAAAAAEAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAXgAAAAAAEAAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbgAAAAAAXgAAAAAADwAAAAAAXgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAEAAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAXgAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAAAfwAAAAAAEAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAAAXgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAAAXgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAA version: 6 -3,-4: ind: -3,-4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAA version: 6 -5,-1: ind: -5,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfgAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAA version: 6 -5,0: ind: -5,0 @@ -272,15 +274,15 @@ entities: version: 6 -5,-2: ind: -5,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAA version: 6 -1,-5: ind: -1,-5 - tiles: fwAAAAAAfwAAAAAAfwAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAEgAAAAAAIAAAAAACIAAAAAACIAAAAAABEgAAAAAAIAAAAAADfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAIAAAAAADIAAAAAAAfwAAAAAAIAAAAAAAIAAAAAADEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAIAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAATwAAAAADIAAAAAABfwAAAAAAIAAAAAAAEgAAAAAAEgAAAAAAfwAAAAAAfwAAAAAAIAAAAAAAfwAAAAAAEgAAAAAAIAAAAAACfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAIAAAAAACTwAAAAABUAAAAAAAIAAAAAAAEgAAAAAAfwAAAAAAfwAAAAAAOQAAAAAAIAAAAAACfwAAAAAAEgAAAAAAIAAAAAADIAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAATwAAAAABIAAAAAABfwAAAAAAIAAAAAABEgAAAAAAEgAAAAAAfwAAAAAAfwAAAAAAIAAAAAACfwAAAAAAEgAAAAAAIAAAAAADfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAIAAAAAABIAAAAAADfwAAAAAAIAAAAAABIAAAAAADEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAIAAAAAADfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAIAAAAAABIAAAAAADIAAAAAACEgAAAAAAIAAAAAAAIAAAAAABIAAAAAACEgAAAAAAIAAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAIAAAAAABIAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAOQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAATwAAAAACIAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAIAAAAAABfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAABMAAAAAADMAAAAAACMAAAAAACMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAABMAAAAAADMAAAAAAAMAAAAAABMAAAAAADMAAAAAACMAAAAAADMAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAMAAAAAAAMAAAAAACMAAAAAADMAAAAAADMAAAAAADMAAAAAADfgAAAAAAfgAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAIAAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAA + tiles: fwAAAAAAfwAAAAAAfwAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAEgAAAAAAIAAAAAACIAAAAAACIAAAAAABEgAAAAAAIAAAAAADfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAIAAAAAADIAAAAAAAfwAAAAAAIAAAAAAAIAAAAAADEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAIAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAATwAAAAADIAAAAAABfwAAAAAAIAAAAAAAEgAAAAAAEgAAAAAAfwAAAAAAfwAAAAAAIAAAAAAAfwAAAAAAEgAAAAAAIAAAAAACfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAIAAAAAACTwAAAAABUAAAAAAAIAAAAAAAEgAAAAAAfwAAAAAAfwAAAAAAOQAAAAAAIAAAAAACfwAAAAAAEgAAAAAAIAAAAAADIAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAATwAAAAABIAAAAAABfwAAAAAAIAAAAAABEgAAAAAAEgAAAAAAfwAAAAAAfwAAAAAAIAAAAAACfwAAAAAAEgAAAAAAIAAAAAADfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAIAAAAAABIAAAAAADfwAAAAAAIAAAAAABIAAAAAADEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAIAAAAAADfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAIAAAAAABIAAAAAADIAAAAAACEgAAAAAAIAAAAAAAIAAAAAABIAAAAAACEgAAAAAAIAAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAIAAAAAABIAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAOQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAATwAAAAACIAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAIAAAAAABfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAABMAAAAAADMAAAAAACMAAAAAACMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAABMAAAAAADMAAAAAAAMAAAAAABMAAAAAADMAAAAAACMAAAAAADMAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAMAAAAAAAMAAAAAACMAAAAAADMAAAAAADMAAAAAADMAAAAAADfgAAAAAAfgAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAIAAAAAAAUAAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAA version: 6 -2,-5: ind: -2,-5 - tiles: fwAAAAAAEgAAAAAAIAAAAAADEgAAAAAAEgAAAAAAIAAAAAACIAAAAAABIAAAAAAAfwAAAAAAIAAAAAAAIAAAAAAAIAAAAAABIAAAAAADfwAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAEgAAAAAAIAAAAAADEgAAAAAAEgAAAAAAIAAAAAACOQAAAAAAOQAAAAAAfwAAAAAAIAAAAAABIAAAAAACIAAAAAABIAAAAAADfwAAAAAAIAAAAAAAIAAAAAACfwAAAAAAEgAAAAAAIAAAAAACTwAAAAADTwAAAAADIAAAAAACfwAAAAAAfwAAAAAAfwAAAAAAIAAAAAABTwAAAAADTwAAAAAAIAAAAAADfwAAAAAAIAAAAAAATwAAAAADfwAAAAAAEgAAAAAATwAAAAACIAAAAAADIAAAAAABTwAAAAADUAAAAAAAIAAAAAAAUAAAAAAAIAAAAAABIAAAAAADIAAAAAADIAAAAAADUAAAAAAATwAAAAACIAAAAAAAfwAAAAAAEgAAAAAAIAAAAAADTwAAAAAATwAAAAAAIAAAAAADfwAAAAAAfwAAAAAAfwAAAAAAIAAAAAABTwAAAAABTwAAAAACIAAAAAACfwAAAAAAIAAAAAAATwAAAAAAfwAAAAAAEgAAAAAAIAAAAAAAEgAAAAAAEgAAAAAAIAAAAAADOQAAAAAAOQAAAAAAfwAAAAAAIAAAAAAAIAAAAAAAIAAAAAADIAAAAAACfwAAAAAAIAAAAAADIAAAAAADfwAAAAAAEgAAAAAAIAAAAAACEgAAAAAAEgAAAAAAIAAAAAAAIAAAAAACIAAAAAACfwAAAAAAIAAAAAABIAAAAAABIAAAAAAAIAAAAAACfwAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAEgAAAAAAEgAAAAAAIAAAAAADOQAAAAAAOQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAIAAAAAADIAAAAAADAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAIAAAAAAATwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAIAAAAAACIAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAOwAAAAAAMAAAAAACMAAAAAAAMAAAAAABMAAAAAADMAAAAAABMAAAAAAAMAAAAAADMAAAAAADMAAAAAAAMAAAAAACMAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAADOwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfgAAAAAAfwAAAAAAfgAAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAADOwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAfgAAAAAAMAAAAAACMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAOwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAOwAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAfwAAAAAAfgAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfgAAAAAAfwAAAAAAIAAAAAAAIAAAAAAA + tiles: fwAAAAAAEgAAAAAAIAAAAAADEgAAAAAAEgAAAAAAIAAAAAACIAAAAAABIAAAAAAAfwAAAAAAIAAAAAAAIAAAAAAAIAAAAAABIAAAAAADfwAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAEgAAAAAAIAAAAAADEgAAAAAAEgAAAAAAIAAAAAACOQAAAAAAOQAAAAAAfwAAAAAAIAAAAAABIAAAAAACIAAAAAABIAAAAAADfwAAAAAAIAAAAAAAIAAAAAACfwAAAAAAEgAAAAAAIAAAAAACTwAAAAADTwAAAAADIAAAAAACUAAAAAAAUAAAAAAAUAAAAAAAIAAAAAABTwAAAAADTwAAAAAAIAAAAAADfwAAAAAAIAAAAAAATwAAAAADfwAAAAAAEgAAAAAATwAAAAACIAAAAAADIAAAAAABTwAAAAADUAAAAAAAIAAAAAAAUAAAAAAAIAAAAAABIAAAAAADIAAAAAADIAAAAAADUAAAAAAATwAAAAACIAAAAAAAfwAAAAAAEgAAAAAAIAAAAAADTwAAAAAATwAAAAAAIAAAAAADUAAAAAAAUAAAAAAAUAAAAAAAIAAAAAABTwAAAAABTwAAAAACIAAAAAACfwAAAAAAIAAAAAAATwAAAAAAfwAAAAAAEgAAAAAAIAAAAAAAEgAAAAAAEgAAAAAAIAAAAAADOQAAAAAAOQAAAAAAfwAAAAAAIAAAAAAAIAAAAAAAIAAAAAADIAAAAAACfwAAAAAAIAAAAAADIAAAAAADfwAAAAAAEgAAAAAAIAAAAAACEgAAAAAAEgAAAAAAIAAAAAAAIAAAAAACIAAAAAACfwAAAAAAIAAAAAABIAAAAAABIAAAAAAAIAAAAAACfwAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAEgAAAAAAIAAAAAADOQAAAAAAOQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAIAAAAAADIAAAAAADAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAIAAAAAAATwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAIAAAAAACIAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAOwAAAAAAMAAAAAACMAAAAAAAMAAAAAABMAAAAAADMAAAAAABMAAAAAAAMAAAAAADMAAAAAADMAAAAAAAMAAAAAACMAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAADOwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfgAAAAAAfwAAAAAAfgAAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAADOwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAfgAAAAAAMAAAAAACMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAOwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAOwAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAfwAAAAAAfgAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfgAAAAAAUAAAAAAAIAAAAAAAIAAAAAAA version: 6 -3,-5: ind: -3,-5 @@ -288,27 +290,27 @@ entities: version: 6 0,-6: ind: 0,-6 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAABMAAAAAACfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAABfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAABfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAABMAAAAAACfgAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAABfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAABfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 0,-5: ind: 0,-5 - tiles: AAAAAAAAMAAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAACMAAAAAAAMAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAADMAAAAAAAMAAAAAABfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAMAAAAAAAMAAAAAACMAAAAAACfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAADMAAAAAADMAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAACMAAAAAAAMAAAAAADfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAACfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAACMAAAAAABfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAMAAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAACMAAAAAAAMAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAADMAAAAAAAMAAAAAABfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAMAAAAAAAMAAAAAACMAAAAAACfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAADMAAAAAADMAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAACMAAAAAAAMAAAAAADfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAACfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAACMAAAAAABfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfgAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -1,-6: ind: -1,-6 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAAAMAAAAAAAMAAAAAADMAAAAAACMAAAAAABMAAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAABMAAAAAADMAAAAAAAMAAAAAADMAAAAAABMAAAAAADMAAAAAADMAAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAACMAAAAAABMAAAAAABMAAAAAAATwAAAAAAIAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAIAAAAAADfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATwAAAAABIAAAAAADfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAACIAAAAAACfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAOQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAAAMAAAAAAAMAAAAAADMAAAAAACMAAAAAABMAAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAABMAAAAAADMAAAAAAAMAAAAAADMAAAAAABMAAAAAADMAAAAAADMAAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAACMAAAAAABMAAAAAABMAAAAAAATwAAAAAAIAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAIAAAAAADfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATwAAAAABIAAAAAADfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAACIAAAAAACfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAOQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAA version: 6 -3,-6: ind: -3,-6 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAMAAAAAADMAAAAAABMAAAAAABMAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAMAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAMAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAMAAAAAADAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAMAAAAAADMAAAAAABMAAAAAABMAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAMAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAMAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAMAAAAAADAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -2,-6: ind: -2,-6 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAMAAAAAACMAAAAAADMAAAAAACMAAAAAADMAAAAAABMAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAMAAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAMAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAMAAAAAABMAAAAAADMAAAAAAAMAAAAAACMAAAAAAAMAAAAAADMAAAAAADMAAAAAABMAAAAAACMAAAAAAAMAAAAAABMAAAAAABAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAIAAAAAADTwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAIAAAAAADIAAAAAACAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAIAAAAAADTwAAAAABfwAAAAAAfwAAAAAAfwAAAAAAEgAAAAAAEgAAAAAAIAAAAAABOQAAAAAAOQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAIAAAAAADIAAAAAAC + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAMAAAAAACMAAAAAADMAAAAAACMAAAAAADMAAAAAABMAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAMAAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAMAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAMAAAAAABMAAAAAADMAAAAAAAMAAAAAACMAAAAAAAMAAAAAADMAAAAAADMAAAAAABMAAAAAACMAAAAAAAMAAAAAABMAAAAAABAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAIAAAAAADTwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAIAAAAAADIAAAAAACAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAIAAAAAADTwAAAAABfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAEgAAAAAAIAAAAAABOQAAAAAAOQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAIAAAAAADIAAAAAAC version: 6 3,0: ind: 3,0 - tiles: bAAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAbAAAAAAAaQAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAbAAAAAAAXgAAAAAAXgAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAbAAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAbAAAAAAAXgAAAAAAXgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAbAAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAbAAAAAAAXgAAAAAAXgAAAAAAYAAAAAAAUAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAUAAAAAAAAAAAAAAAbAAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAbAAAAAAAXgAAAAAAXgAAAAAAYAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAUAAAAAAAAAAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAXgAAAAAAXgAAAAAAYAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAUAAAAAAAAAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAfwAAAAAA + tiles: bAAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAbAAAAAAAaQAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAbAAAAAAAXgAAAAAAXgAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAbAAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAbAAAAAAAXgAAAAAAXgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAbAAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAbAAAAAAAXgAAAAAAXgAAAAAAYAAAAAAAUAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAUAAAAAAAAAAAAAAAbAAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAbAAAAAAAXgAAAAAAXgAAAAAAYAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAUAAAAAAAAAAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAXgAAAAAAXgAAAAAAYAAAAAAAfwAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAUAAAAAAAAAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAfwAAAAAA version: 6 3,1: ind: 3,1 @@ -320,19 +322,19 @@ entities: version: 6 1,2: ind: 1,2 - tiles: fwAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAMAAAAAABMAAAAAABMAAAAAADfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: fwAAAAAAfgAAAAAAfgAAAAAAUAAAAAAAMAAAAAABMAAAAAABMAAAAAADUAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAUAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAUAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -1,3: ind: -1,3 - tiles: AAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -2,3: ind: -2,3 - tiles: ewAAAAAAewAAAAAAfwAAAAAAewAAAAAAewAAAAAAewAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAewAAAAAAewAAAAAAfwAAAAAAewAAAAAAewAAAAAAewAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAewAAAAAAewAAAAAAfwAAAAAAewAAAAAAewAAAAAAewAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAfwAAAAAAewAAAAAAewAAAAAAewAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAA + tiles: ewAAAAAAewAAAAAAfwAAAAAAewAAAAAAewAAAAAAewAAAAAAUAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAewAAAAAAewAAAAAAfwAAAAAAewAAAAAAewAAAAAAewAAAAAAUAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAewAAAAAAewAAAAAAfwAAAAAAewAAAAAAewAAAAAAewAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAfwAAAAAAewAAAAAAewAAAAAAewAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAA version: 6 -3,3: ind: -3,3 - tiles: fwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAewAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAUAAAAAAAewAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAUAAAAAAAewAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAUAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAUAAAAAAAIAAAAAABUAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAA + tiles: fwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAewAAAAAAfwAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAUAAAAAAAewAAAAAAfwAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAUAAAAAAAewAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAUAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAUAAAAAAAIAAAAAABUAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAA version: 6 -4,3: ind: -4,3 @@ -348,7 +350,7 @@ entities: version: 6 -5,2: ind: -5,2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 1,-4: ind: 1,-4 @@ -372,11 +374,11 @@ entities: version: 6 0,3: ind: 0,3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 1,3: ind: 1,3 - tiles: fwAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: fwAAAAAAUAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 3,-1: ind: 3,-1 @@ -396,7 +398,7 @@ entities: version: 6 -4,-3: ind: -4,-3 - tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAA + tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAA version: 6 -4,-4: ind: -4,-4 @@ -406,6 +408,10 @@ entities: ind: -5,-3 tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 + -5,1: + ind: -5,1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAA + version: 6 - type: Broadphase - type: Physics bodyStatus: InAir @@ -433,4004 +439,3953 @@ entities: color: '#FFFFFFFF' id: Arrows decals: - 80: 21,-2 + 75: 21,-2 - node: color: '#FFFFFFFF' id: Bot decals: - 76: 18,-2 + 71: 18,-2 - node: cleanable: True color: '#FFFFFFFF' id: Bot decals: - 2185: 21,-25 - 2186: 22,-25 + 1924: 21,-25 + 1925: 22,-25 - node: color: '#FFFF00FF' id: BotGreyscale decals: - 294: -23,-39 - 295: -23,-40 - 296: -23,-38 - 297: -21,-39 - 298: -20,-39 + 124: -23,-39 + 125: -23,-40 + 126: -23,-38 + 127: -21,-39 + 128: -20,-39 - node: color: '#FFFFFFFF' id: BotGreyscale decals: - 77: 19,-2 - 78: 20,-2 - 304: -22,-39 + 72: 19,-2 + 73: 20,-2 + 134: -22,-39 - node: color: '#FFFFFFFF' id: BotLeft decals: 0: 15,-5 - 938: 15,-4 - 1261: -50,-11 - 1262: -49,-11 - 1263: -48,-11 - 2386: -1,-36 - 2387: -1,-37 - 2388: 0,-37 - 2389: 0,-36 - 2390: 0,-36 - 2391: 1,-36 - 2392: 1,-37 - 2393: 2,-37 - 2394: 2,-36 + 727: 15,-4 + 2125: -1,-36 + 2126: -1,-37 + 2127: 0,-37 + 2128: 0,-36 + 2129: 0,-36 + 2130: 1,-36 + 2131: 1,-37 + 2132: 2,-37 + 2133: 2,-36 - node: color: '#FFFFFF93' id: BotLeftGreyscale decals: - 283: 4,-23 - 284: 3,-23 + 113: 4,-23 + 114: 3,-23 - node: color: '#FFFFFFFF' id: BotLeftGreyscale decals: - 2446: -1,-22 - 2447: -2,-22 + 2185: -1,-22 + 2186: -2,-22 - node: color: '#FFFFFFFF' id: BotRight decals: - 55: 4,-36 - 56: 4,-37 - 57: 5,-37 - 58: 5,-36 - 59: 6,-36 - 60: 6,-37 - 61: 7,-37 - 62: 7,-36 + 50: 4,-36 + 51: 4,-37 + 52: 5,-37 + 53: 5,-36 + 54: 6,-36 + 55: 6,-37 + 56: 7,-37 + 57: 7,-36 + - node: + color: '#DE3A3A96' + id: Box + decals: + 2377: -27,-16 + 2378: -26,-16 - node: color: '#FFFFFFFF' id: Box decals: - 1258: -52,-9 - 1266: -52,-10 + 1027: -52,-9 + 1032: -52,-10 + 2353: -32,-39 - node: cleanable: True color: '#FFFFFFFF' id: Box decals: - 2093: 5,-26 - 2094: 4,-26 - 2095: 3,-26 - 2096: 2,-26 - 2097: 1,-26 - 2098: 1,-28 - 2099: 2,-28 - 2100: 3,-28 - 2101: 4,-28 - 2102: 5,-28 + 1832: 5,-26 + 1833: 4,-26 + 1834: 3,-26 + 1835: 2,-26 + 1836: 1,-26 + 1837: 1,-28 + 1838: 2,-28 + 1839: 3,-28 + 1840: 4,-28 + 1841: 5,-28 - node: angle: 3.141592653589793 rad color: '#FFFFFFFF' id: Box decals: - 1826: -52,-9 + 1567: -52,-9 - node: color: '#EFB34196' id: BoxGreyscale decals: - 290: -18,-29 - 291: -18,-28 - 292: -18,-35 + 120: -18,-29 + 121: -18,-28 + 122: -18,-35 - node: color: '#FFFFFFFF' id: BoxGreyscale decals: - 516: -39,34 - 517: -39,35 - 518: -39,36 - 519: -39,37 - 520: -37,25 - 521: -36,25 - 522: -35,25 - 523: -50,32 - 524: -49,32 - 525: -50,37 - 566: -51,37 - 1259: -52,-9 - 1260: -52,-10 + 342: -39,34 + 343: -39,35 + 344: -39,36 + 345: -39,37 + 346: -37,25 + 347: -36,25 + 348: -35,25 + 349: -50,32 + 350: -49,32 + 351: -50,37 + 373: -51,37 + 1028: -52,-9 + 1029: -52,-10 - node: color: '#0096FFFF' id: BrickBoxOverlay decals: - 2595: 32,9 + 2334: 32,9 - node: color: '#FF0000FF' id: BrickBoxOverlay decals: - 2596: 36,8 + 2335: 36,8 + - node: + color: '#DE3A3A96' + id: BrickLineOverlayE + decals: + 2366: -29,-13 + 2367: -29,-14 + 2368: -29,-15 + 2369: -29,-16 + 2374: -21,-8 + 2375: -21,-9 + 2376: -21,-10 + 2389: -21,-12 + 2390: -21,-13 + 2391: -21,-14 + 2392: -21,-15 + 2393: -21,-16 + 2394: -21,-17 - node: color: '#6B2833DD' id: BrickLineOverlayN decals: - 2448: -34,44 - 2449: -33,44 - 2450: -32,44 - 2451: -31,44 - 2452: -30,44 - 2453: -29,44 - 2454: -28,44 - 2455: -27,44 - 2456: -43,17 - 2457: -42,17 - 2458: -41,17 + 2187: -34,44 + 2188: -33,44 + 2189: -32,44 + 2190: -31,44 + 2191: -30,44 + 2192: -29,44 + 2193: -28,44 + 2194: -27,44 + 2195: -43,17 + 2196: -42,17 + 2197: -41,17 - node: - cleanable: True - color: '#FFFFFFFF' - id: BrickTileDarkLineW + color: '#DE3A3A96' + id: BrickLineOverlayN decals: - 49: -1,-32 - 50: -1,-31 + 2435: -41,-10 + 2436: -39,-10 + 2437: -38,-10 + 2438: -37,-10 + 2439: -36,-10 + 2440: -35,-10 + 2441: -33,-10 + 2442: -32,-10 + 2443: -31,-10 - node: - color: '#FF0000FF' - id: BrickTileSteelCornerNe + color: '#DE3A3A96' + id: BrickLineOverlayW decals: - 81: -47,-3 - 212: -28,-9 - 220: -32,-5 - 251: -21,-12 - 907: -28,-5 + 2362: -30,-13 + 2363: -30,-14 + 2364: -30,-15 + 2365: -30,-16 + 2370: -26,-8 + 2371: -26,-9 + 2372: -26,-10 + 2373: -26,-11 + 2395: -24,-17 + 2396: -24,-16 + 2397: -24,-15 + 2398: -24,-14 + 2399: -24,-13 + 2400: -24,-12 - node: + cleanable: True color: '#FFFFFFFF' - id: BrickTileSteelCornerNe + id: BrickTileDarkLineW decals: - 6: -8,4 - 13: -8,8 - 22: -6,23 + 44: -1,-32 + 45: -1,-31 - node: - color: '#FF0000FF' - id: BrickTileSteelCornerNw + color: '#FFFFFFFF' + id: BrickTileSteelCornerNe decals: - 151: -54,-3 - 221: -34,-5 - 258: -24,-12 - 906: -30,-5 + 8: -8,8 + 17: -6,23 - node: color: '#FFFFFFFF' id: BrickTileSteelCornerNw decals: 1: -13,4 - 12: -11,8 - 21: -10,23 - - node: - color: '#FF0000FF' - id: BrickTileSteelCornerSe - decals: - 82: -47,-5 - 202: -28,-16 - 252: -21,-17 - 908: -28,-7 + 7: -11,8 + 16: -10,23 - node: color: '#FFFFFFFF' id: BrickTileSteelCornerSe decals: - 11: -8,7 - - node: - color: '#FF0000FF' - id: BrickTileSteelCornerSw - decals: - 150: -54,-5 - 179: -33,-11 - 199: -29,-16 - 253: -24,-17 - 909: -30,-7 + 6: -8,7 - node: color: '#FFFFFFFF' id: BrickTileSteelCornerSw decals: - 10: -11,7 - 2380: -24,4 - - node: - color: '#FF0000FF' - id: BrickTileSteelInnerNe - decals: - 94: -42,-6 - 95: -42,-2 - 107: -43,0 - 108: -41,0 - 216: -32,-9 - - node: - color: '#FF0000FF' - id: BrickTileSteelInnerNw - decals: - 91: -43,-6 - 106: -41,0 - 174: -34,-9 - - node: - color: '#FF0000FF' - id: BrickTileSteelInnerSe - decals: - 96: -42,-2 - 97: -42,0 - - node: - color: '#FF0000FF' - id: BrickTileSteelInnerSw - decals: - 90: -43,-6 - 176: -33,-10 - 195: -29,-11 - - node: - color: '#FF0000FF' - id: BrickTileSteelLineE - decals: - 83: -47,-4 - 92: -42,-5 - 99: -43,1 - 109: -41,1 - 114: -42,-3 - 115: -42,-1 - 203: -28,-14 - 204: -28,-13 - 205: -28,-12 - 208: -28,-11 - 211: -28,-10 - 217: -32,-8 - 218: -32,-7 - 219: -32,-6 - 259: -21,-13 - 260: -21,-14 - 261: -21,-15 - 262: -21,-16 - 556: -28,-15 - 904: -28,-6 + 5: -11,7 + 2119: -24,4 - node: color: '#FFFFFFFF' id: BrickTileSteelLineE decals: - 7: -8,3 - 16: -6,21 - 17: -6,22 - - node: - color: '#FF0000FF' - id: BrickTileSteelLineN - decals: - 84: -45,-6 - 85: -44,-6 - 93: -41,-6 - 98: -42,0 - 116: -40,0 - 117: -40,-2 - 118: -41,-2 - 119: -48,-3 - 120: -49,-3 - 124: -50,-3 - 125: -44,-9 - 126: -43,-9 - 127: -42,-9 - 128: -39,-9 - 129: -40,-9 - 130: -39,-9 - 131: -37,-9 - 132: -37,-9 - 133: -38,-9 - 134: -37,-9 - 135: -37,-9 - 144: -41,-9 - 145: -51,-3 - 146: -52,-3 - 147: -53,-3 - 153: -47,-9 - 154: -48,-9 - 155: -49,-9 - 156: -50,-9 - 157: -46,-9 - 163: -47,-7 - 164: -36,-9 - 213: -29,-9 - 214: -30,-9 - 215: -31,-9 - 224: -33,-5 - 249: -23,-12 - 250: -22,-12 - 910: -29,-5 + 11: -6,21 + 12: -6,22 - node: color: '#FFFFFFFF' id: BrickTileSteelLineN decals: - 3: -12,4 - 4: -11,4 - 5: -10,4 - 8: -10,8 - 9: -9,8 - 23: -7,23 - 24: -8,23 - 25: -9,23 - 2398: -8,-39 - 2399: -7,-39 - 2400: -6,-39 - - node: - color: '#474A4DFF' - id: BrickTileSteelLineS - decals: - 914: -25,-9 - 915: -24,-9 - 916: -23,-9 - 917: -22,-9 - 918: -21,-9 - - node: - color: '#FF0000FF' - id: BrickTileSteelLineS - decals: - 86: -45,-6 - 87: -44,-6 - 110: -41,0 - 111: -40,0 - 112: -41,-2 - 113: -40,-2 - 121: -48,-5 - 122: -49,-5 - 123: -50,-5 - 136: -44,-10 - 137: -43,-10 - 138: -41,-10 - 139: -40,-10 - 140: -42,-10 - 141: -39,-10 - 142: -37,-10 - 143: -38,-10 - 148: -52,-5 - 149: -53,-5 - 158: -50,-10 - 159: -49,-10 - 160: -48,-10 - 161: -46,-10 - 162: -47,-8 - 165: -36,-10 - 177: -34,-10 - 183: -32,-11 - 184: -31,-11 - 185: -30,-11 - 263: -22,-17 - 264: -23,-17 - 911: -29,-7 + 3: -10,8 + 4: -9,8 + 18: -7,23 + 19: -8,23 + 20: -9,23 + 2137: -8,-39 + 2138: -7,-39 + 2139: -6,-39 - node: color: '#FFFFFFFF' id: BrickTileSteelLineS decals: - 14: -10,7 - 15: -9,7 - 2395: -8,-39 - 2396: -7,-39 - 2397: -6,-39 - - node: - color: '#474A4DFF' - id: BrickTileSteelLineW - decals: - 912: -25,-9 - 913: -25,-8 - - node: - color: '#FF0000FF' - id: BrickTileSteelLineW - decals: - 88: -43,-7 - 89: -43,-5 - 100: -41,1 - 101: -43,1 - 102: -43,0 - 103: -43,-1 - 104: -43,-2 - 105: -43,-3 - 152: -54,-4 - 169: -34,-8 - 170: -34,-7 - 171: -34,-6 - 187: -29,-12 - 188: -29,-13 - 189: -29,-14 - 254: -24,-16 - 255: -24,-15 - 256: -24,-14 - 257: -24,-13 - 557: -29,-15 - 905: -30,-6 + 9: -10,7 + 10: -9,7 + 2134: -8,-39 + 2135: -7,-39 + 2136: -6,-39 - node: color: '#FFFFFFFF' id: BrickTileSteelLineW decals: 2: -13,3 - 18: -10,20 - 19: -10,21 - 20: -10,22 - 26: -24,6 - 27: -24,7 - 894: -7,-26 - 895: -7,-25 - 896: -7,-23 - 897: -7,-22 - 898: -7,-21 - 899: -7,-20 - 900: -7,-19 - 901: -7,-18 - 902: -7,-17 - 903: -7,-16 - 2297: -24,5 + 13: -10,20 + 14: -10,21 + 15: -10,22 + 21: -24,6 + 22: -24,7 + 698: -7,-26 + 699: -7,-25 + 700: -7,-23 + 701: -7,-22 + 702: -7,-21 + 703: -7,-20 + 704: -7,-19 + 705: -7,-18 + 706: -7,-17 + 707: -7,-16 + 2036: -24,5 - node: color: '#334E6DC8' id: BrickTileWhiteCornerNe decals: - 1915: -8,36 + 1654: -8,36 - node: color: '#52B4E996' id: BrickTileWhiteCornerNe decals: - 609: 13,6 + 416: 13,6 - node: color: '#D381C996' id: BrickTileWhiteCornerNe decals: - 506: -39,33 + 332: -39,33 - node: color: '#EFB34196' id: BrickTileWhiteCornerNe decals: - 369: -16,-33 + 195: -16,-33 - node: color: '#334E6DC8' id: BrickTileWhiteCornerNw decals: - 1916: -13,36 + 1655: -13,36 - node: color: '#52B4E996' id: BrickTileWhiteCornerNw decals: - 593: 10,15 - 666: 10,6 + 400: 10,15 + 473: 10,6 - node: color: '#D381C996' id: BrickTileWhiteCornerNw decals: - 513: -43,34 - 2199: -45,44 + 339: -43,34 + 1938: -45,44 - node: color: '#334E6DC8' id: BrickTileWhiteCornerSe decals: - 400: -17,33 - 424: -15,34 + 226: -17,33 + 250: -15,34 - node: color: '#52B4E996' id: BrickTileWhiteCornerSe decals: - 591: 19,15 - 608: 13,8 + 398: 19,15 + 415: 13,8 - node: color: '#D381C996' id: BrickTileWhiteCornerSe decals: - 2192: -39,39 + 1931: -39,39 - node: color: '#334E6DC8' id: BrickTileWhiteCornerSw decals: - 425: -6,33 + 251: -6,33 - node: color: '#52B4E996' id: BrickTileWhiteCornerSw decals: - 607: 15,8 + 414: 15,8 - node: color: '#D381C996' id: BrickTileWhiteCornerSw decals: - 2191: -45,39 + 1930: -45,39 - node: color: '#52B4E996' id: BrickTileWhiteEndE decals: - 600: 15,7 - 613: 19,7 - 631: 23,7 + 407: 15,7 + 420: 19,7 + 438: 23,7 - node: color: '#52B4E996' id: BrickTileWhiteEndN decals: - 606: 14,8 - 610: 18,8 - 611: 22,8 - 665: 15,6 + 413: 14,8 + 417: 18,8 + 418: 22,8 + 472: 15,6 - node: color: '#52B4E996' id: BrickTileWhiteEndS decals: - 599: 14,6 - 612: 18,6 - 614: 22,6 + 406: 14,6 + 419: 18,6 + 421: 22,6 - node: color: '#52B4E996' id: BrickTileWhiteEndW decals: - 601: 13,7 - 626: 21,7 + 408: 13,7 + 433: 21,7 - node: cleanable: True color: '#52B4E996' id: BrickTileWhiteEndW decals: - 1767: 17,7 + 1508: 17,7 - node: color: '#334E6DC8' id: BrickTileWhiteInnerNe decals: - 1831: -12,36 - 1919: -9,36 + 1572: -12,36 + 1658: -9,36 - node: color: '#52B4E996' id: BrickTileWhiteInnerNe decals: - 605: 14,7 - 629: 22,7 - 659: 13,5 - 660: 12,6 + 412: 14,7 + 436: 22,7 + 466: 13,5 + 467: 12,6 - node: cleanable: True color: '#52B4E996' id: BrickTileWhiteInnerNe decals: - 1768: 18,7 + 1509: 18,7 - node: color: '#D381C996' id: BrickTileWhiteInnerNe decals: - 501: -47,32 - 505: -40,33 - 2209: -39,41 - 2210: -44,44 + 327: -47,32 + 331: -40,33 + 1948: -39,41 + 1949: -44,44 - node: color: '#EFB34196' id: BrickTileWhiteInnerNe decals: - 370: -17,-33 + 196: -17,-33 - node: color: '#334E6DC8' id: BrickTileWhiteInnerNw decals: - 392: -16,36 - 1832: -9,36 - 1920: -12,36 + 218: -16,36 + 1573: -9,36 + 1659: -12,36 - node: color: '#52B4E996' id: BrickTileWhiteInnerNw decals: - 595: 11,15 - 602: 14,7 - 628: 22,7 - 636: 12,6 - 661: 15,5 + 402: 11,15 + 409: 14,7 + 435: 22,7 + 443: 12,6 + 468: 15,5 - node: cleanable: True color: '#52B4E996' id: BrickTileWhiteInnerNw decals: - 1769: 18,7 + 1510: 18,7 - node: color: '#D381C996' id: BrickTileWhiteInnerNw decals: - 2211: -44,44 + 1950: -44,44 - node: color: '#334E6DC8' id: BrickTileWhiteInnerSe decals: - 401: -17,34 - 423: -15,38 - 1251: -12,39 - 1884: -9,38 + 227: -17,34 + 249: -15,38 + 1020: -12,39 + 1623: -9,38 - node: color: '#52B4E996' id: BrickTileWhiteInnerSe decals: - 585: 12,15 - 604: 14,7 - 630: 22,7 - 662: 12,8 + 392: 12,15 + 411: 14,7 + 437: 22,7 + 469: 12,8 - node: cleanable: True color: '#52B4E996' id: BrickTileWhiteInnerSe decals: - 1770: 18,7 + 1511: 18,7 - node: color: '#A4610696' id: BrickTileWhiteInnerSe decals: - 2223: 11,-7 + 1962: 11,-7 - node: color: '#D381C996' id: BrickTileWhiteInnerSe decals: - 2207: -40,39 - 2208: -39,41 + 1946: -40,39 + 1947: -39,41 - node: color: '#334E6DC8' id: BrickTileWhiteInnerSw decals: - 433: -6,38 - 1250: -9,39 - 1883: -12,38 + 259: -6,38 + 1019: -9,39 + 1622: -12,38 - node: color: '#52B4E996' id: BrickTileWhiteInnerSw decals: - 603: 14,7 - 627: 22,7 + 410: 14,7 + 434: 22,7 - node: cleanable: True color: '#52B4E996' id: BrickTileWhiteInnerSw decals: - 1771: 18,7 + 1512: 18,7 - node: color: '#A4610696' id: BrickTileWhiteInnerSw decals: - 2222: 14,-7 + 1961: 14,-7 - node: color: '#D381C996' id: BrickTileWhiteInnerSw decals: - 2206: -40,39 + 1945: -40,39 - node: color: '#EFB34196' id: BrickTileWhiteInnerSw decals: - 355: -20,-45 + 181: -20,-45 - node: color: '#334E6DC8' id: BrickTileWhiteLineE decals: - 404: -8,32 - 405: -8,33 - 406: -8,34 - 407: -8,35 - 426: -15,35 - 427: -15,37 - 428: -15,36 - 1860: -12,38 - 1877: -12,37 - 1888: -9,37 + 230: -8,32 + 231: -8,33 + 232: -8,34 + 233: -8,35 + 252: -15,35 + 253: -15,37 + 254: -15,36 + 1599: -12,38 + 1616: -12,37 + 1627: -9,37 - node: color: '#52B4E996' id: BrickTileWhiteLineE decals: - 575: 12,10 - 576: 12,11 - 577: 12,12 - 578: 12,13 - 579: 12,14 - 592: 19,16 - 637: 23,10 - 638: 23,11 - 639: 23,12 - 640: 23,14 - 641: 23,15 - 642: 23,16 - 643: 23,17 - 644: 23,18 - 645: 23,19 - 657: 12,7 - 663: 15,4 - 664: 15,5 - 676: 8,12 - 677: 8,11 - 678: 8,10 - 679: 8,9 - 680: 8,8 - 681: 8,7 - 682: 8,6 - 683: 13,18 - 684: 13,19 - 685: 13,20 - 686: 13,21 - 687: 13,22 - 688: 13,23 - 689: 13,24 - 690: 13,25 - 691: 13,26 - 705: 19,18 - 706: 19,19 - 707: 19,20 - 708: 19,21 - 2487: 28,6 - 2488: 28,5 - 2489: 28,4 + 382: 12,10 + 383: 12,11 + 384: 12,12 + 385: 12,13 + 386: 12,14 + 399: 19,16 + 444: 23,10 + 445: 23,11 + 446: 23,12 + 447: 23,14 + 448: 23,15 + 449: 23,16 + 450: 23,17 + 451: 23,18 + 452: 23,19 + 464: 12,7 + 470: 15,4 + 471: 15,5 + 483: 8,12 + 484: 8,11 + 485: 8,10 + 486: 8,9 + 487: 8,8 + 488: 8,7 + 489: 8,6 + 490: 13,18 + 491: 13,19 + 492: 13,20 + 493: 13,21 + 494: 13,22 + 495: 13,23 + 496: 13,24 + 497: 13,25 + 498: 13,26 + 512: 19,18 + 513: 19,19 + 514: 19,20 + 515: 19,21 + 2226: 28,6 + 2227: 28,5 + 2228: 28,4 - node: cleanable: True color: '#52B4E996' id: BrickTileWhiteLineE decals: - 2070: 23,13 + 1809: 23,13 - node: color: '#D381C996' id: BrickTileWhiteLineE decals: - 466: -41,25 - 469: -41,29 - 470: -35,29 - 471: -35,28 - 472: -35,27 - 473: -35,26 - 493: -47,37 - 494: -47,36 - 495: -47,35 - 496: -47,34 - 497: -47,33 - 502: -40,35 - 503: -40,37 - 504: -39,32 - 507: -39,31 - 1930: -20,-74 - 1931: -20,-75 - 1932: -20,-76 - 1933: -20,-77 - 1934: -20,-78 - 1935: -20,-79 - 1936: -20,-80 - 2193: -39,40 - 2194: -39,42 - 2518: -52,40 - 2519: -52,41 - 2520: -52,42 + 292: -41,25 + 295: -41,29 + 296: -35,29 + 297: -35,28 + 298: -35,27 + 299: -35,26 + 319: -47,37 + 320: -47,36 + 321: -47,35 + 322: -47,34 + 323: -47,33 + 328: -40,35 + 329: -40,37 + 330: -39,32 + 333: -39,31 + 1669: -20,-74 + 1670: -20,-75 + 1671: -20,-76 + 1672: -20,-77 + 1673: -20,-78 + 1674: -20,-79 + 1675: -20,-80 + 1932: -39,40 + 1933: -39,42 + 2257: -52,40 + 2258: -52,41 + 2259: -52,42 - node: color: '#EFB34196' id: BrickTileWhiteLineE decals: - 305: -16,-46 - 306: -16,-45 - 307: -16,-43 - 308: -16,-44 - 309: -16,-42 - 310: -16,-41 - 311: -16,-40 - 312: -16,-39 - 313: -16,-38 - 314: -16,-37 - 315: -16,-36 - 316: -16,-35 - 353: -16,-47 - 371: -17,-32 - 372: -17,-31 - 373: -21,-30 - 374: -21,-29 - 375: -21,-28 - 376: -11,-37 - 377: -11,-38 - 378: -11,-39 - 379: -11,-40 - 380: -11,-41 - 2521: -1,-17 - 2522: -1,-18 - 2523: -1,-20 + 135: -16,-46 + 136: -16,-45 + 137: -16,-43 + 138: -16,-44 + 139: -16,-42 + 140: -16,-41 + 141: -16,-40 + 142: -16,-39 + 143: -16,-38 + 144: -16,-37 + 145: -16,-36 + 146: -16,-35 + 179: -16,-47 + 197: -17,-32 + 198: -17,-31 + 199: -21,-30 + 200: -21,-29 + 201: -21,-28 + 202: -11,-37 + 203: -11,-38 + 204: -11,-39 + 205: -11,-40 + 206: -11,-41 + 2260: -1,-17 + 2261: -1,-18 + 2262: -1,-20 - node: color: '#FF801DFF' id: BrickTileWhiteLineE decals: - 2115: 19,10 - 2116: 19,11 - 2117: 19,12 - 2118: 19,13 + 1854: 19,10 + 1855: 19,11 + 1856: 19,12 + 1857: 19,13 - node: color: '#334E6DC8' id: BrickTileWhiteLineN decals: - 390: -18,36 - 391: -17,36 - 395: -14,39 - 396: -13,39 - 397: -7,39 - 398: -6,39 - 1252: -12,39 - 1253: -11,39 - 1254: -10,39 - 1829: -11,36 - 1830: -10,36 + 216: -18,36 + 217: -17,36 + 221: -14,39 + 222: -13,39 + 223: -7,39 + 224: -6,39 + 1021: -12,39 + 1022: -11,39 + 1023: -10,39 + 1570: -11,36 + 1571: -10,36 - node: cleanable: True color: '#334E6DC8' id: BrickTileWhiteLineN decals: - 1190: -8,39 - 1191: -9,39 + 969: -8,39 + 970: -9,39 - node: color: '#3C44AAFF' id: BrickTileWhiteLineN decals: - 2545: -3,17 + 2284: -3,17 - node: color: '#43990996' id: BrickTileWhiteLineN decals: - 2585: 32,11 - 2586: 33,11 - 2587: 34,11 + 2324: 32,11 + 2325: 33,11 + 2326: 34,11 - node: color: '#49FFC5FF' id: BrickTileWhiteLineN decals: - 2401: -5.9915333,-39.38071 - 2402: -6.991725,-39.38071 - 2403: -7.983293,-39.38071 + 2140: -5.9915333,-39.38071 + 2141: -6.991725,-39.38071 + 2142: -7.983293,-39.38071 - node: color: '#52B4E996' id: BrickTileWhiteLineN decals: - 635: 11,6 - 658: 14,5 - 714: 25,22 - 715: 26,22 - 716: 27,22 - 717: 28,22 - 718: 29,22 + 442: 11,6 + 465: 14,5 + 521: 25,22 + 522: 26,22 + 523: 27,22 + 524: 28,22 + 525: 29,22 - node: color: '#B02E26FF' id: BrickTileWhiteLineN decals: - 2546: -4,17 + 2285: -4,17 - node: color: '#D381C996' id: BrickTileWhiteLineN decals: - 499: -46,32 - 500: -45,32 - 2200: -43,44 - 2201: -42,44 + 325: -46,32 + 326: -45,32 + 1939: -43,44 + 1940: -42,44 - node: color: '#334E6DC8' id: BrickTileWhiteLineS decals: - 399: -18,33 - 402: -16,34 - 403: -4,33 - 412: -13,41 - 413: -14,41 - 414: -12,41 - 415: -11,41 - 416: -10,41 - 417: -9,41 - 418: -7,41 - 419: -7,38 - 420: -8,38 - 421: -13,38 - 422: -14,38 - 1248: -11,39 - 1249: -10,39 - 1828: -8,41 + 225: -18,33 + 228: -16,34 + 229: -4,33 + 238: -13,41 + 239: -14,41 + 240: -12,41 + 241: -11,41 + 242: -10,41 + 243: -9,41 + 244: -7,41 + 245: -7,38 + 246: -8,38 + 247: -13,38 + 248: -14,38 + 1017: -11,39 + 1018: -10,39 + 1569: -8,41 - node: cleanable: True color: '#334E6DC8' id: BrickTileWhiteLineS decals: - 1181: -5,33 + 960: -5,33 - node: color: '#3C44AAFF' id: BrickTileWhiteLineS decals: - 2544: -3,21 + 2283: -3,21 - node: color: '#43990996' id: BrickTileWhiteLineS decals: - 2580: 32,7 - 2581: 33,7 - 2582: 34,7 - 2583: 35,7 - 2584: 36,7 + 2319: 32,7 + 2320: 33,7 + 2321: 34,7 + 2322: 35,7 + 2323: 36,7 - node: color: '#52B4E996' id: BrickTileWhiteLineS decals: - 586: 13,15 - 587: 14,15 - 588: 16,15 - 589: 15,15 - 590: 18,15 - 709: 25,18 - 710: 26,18 - 711: 27,18 - 712: 28,18 - 713: 29,18 + 393: 13,15 + 394: 14,15 + 395: 16,15 + 396: 15,15 + 397: 18,15 + 516: 25,18 + 517: 26,18 + 518: 27,18 + 519: 28,18 + 520: 29,18 - node: cleanable: True color: '#52B4E996' id: BrickTileWhiteLineS decals: - 2071: 17,15 + 1810: 17,15 - node: color: '#A4610696' id: BrickTileWhiteLineS decals: - 2220: 12,-7 - 2221: 13,-7 + 1959: 12,-7 + 1960: 13,-7 - node: color: '#B02E26FF' id: BrickTileWhiteLineS decals: - 2547: -4,21 + 2286: -4,21 - node: color: '#D381C996' id: BrickTileWhiteLineS decals: - 2202: -41,39 - 2203: -42,39 - 2204: -43,39 - 2205: -44,39 + 1941: -41,39 + 1942: -42,39 + 1943: -43,39 + 1944: -44,39 - node: color: '#334E6DC8' id: BrickTileWhiteLineW decals: - 393: -16,37 - 394: -16,38 - 408: -13,32 - 409: -13,33 - 410: -13,34 - 411: -13,35 - 429: -6,34 - 430: -6,35 - 431: -6,36 - 432: -6,37 - 1864: -9,38 - 1867: -9,37 - 1887: -12,37 + 219: -16,37 + 220: -16,38 + 234: -13,32 + 235: -13,33 + 236: -13,34 + 237: -13,35 + 255: -6,34 + 256: -6,35 + 257: -6,36 + 258: -6,37 + 1603: -9,38 + 1606: -9,37 + 1626: -12,37 - node: color: '#52B4E996' id: BrickTileWhiteLineW decals: - 580: 10,10 - 581: 10,11 - 582: 10,12 - 583: 10,13 - 584: 10,14 - 594: 11,16 - 633: 12,8 - 634: 12,7 - 646: 21,19 - 647: 21,18 - 648: 21,17 - 649: 21,16 - 650: 21,15 - 651: 21,14 - 652: 21,13 - 653: 21,12 - 654: 21,11 - 655: 21,10 - 656: 20,20 - 667: 10,4 - 668: 10,5 - 669: 6,6 - 670: 6,7 - 671: 6,8 - 672: 6,9 - 673: 6,10 - 674: 6,11 - 675: 6,12 - 692: 12,26 - 693: 12,24 - 694: 12,25 - 695: 12,23 - 696: 12,22 - 697: 12,21 - 698: 12,20 - 699: 12,19 - 700: 12,18 - 701: 15,18 - 702: 15,19 - 703: 15,20 - 704: 15,21 - 2490: 25,6 - 2491: 25,5 - 2492: 25,4 + 387: 10,10 + 388: 10,11 + 389: 10,12 + 390: 10,13 + 391: 10,14 + 401: 11,16 + 440: 12,8 + 441: 12,7 + 453: 21,19 + 454: 21,18 + 455: 21,17 + 456: 21,16 + 457: 21,15 + 458: 21,14 + 459: 21,13 + 460: 21,12 + 461: 21,11 + 462: 21,10 + 463: 20,20 + 474: 10,4 + 475: 10,5 + 476: 6,6 + 477: 6,7 + 478: 6,8 + 479: 6,9 + 480: 6,10 + 481: 6,11 + 482: 6,12 + 499: 12,26 + 500: 12,24 + 501: 12,25 + 502: 12,23 + 503: 12,22 + 504: 12,21 + 505: 12,20 + 506: 12,19 + 507: 12,18 + 508: 15,18 + 509: 15,19 + 510: 15,20 + 511: 15,21 + 2229: 25,6 + 2230: 25,5 + 2231: 25,4 - node: color: '#D381C996' id: BrickTileWhiteLineW decals: - 460: -25,34 - 461: -25,33 - 467: -43,25 - 468: -43,29 - 474: -39,25 - 475: -39,26 - 476: -39,27 - 477: -39,28 - 478: -39,29 - 488: -51,32 - 489: -51,33 - 490: -51,34 - 491: -51,35 - 492: -51,36 - 508: -43,31 - 509: -43,32 - 510: -43,33 - 511: -41,35 - 512: -41,37 - 1937: -23,-80 - 1938: -23,-79 - 1939: -23,-78 - 1940: -23,-77 - 1941: -23,-76 - 1942: -23,-75 - 1943: -23,-74 - 2195: -45,40 - 2196: -45,41 - 2197: -45,42 - 2198: -45,43 - 2515: -56,40 - 2516: -56,41 - 2517: -56,42 + 286: -25,34 + 287: -25,33 + 293: -43,25 + 294: -43,29 + 300: -39,25 + 301: -39,26 + 302: -39,27 + 303: -39,28 + 304: -39,29 + 314: -51,32 + 315: -51,33 + 316: -51,34 + 317: -51,35 + 318: -51,36 + 334: -43,31 + 335: -43,32 + 336: -43,33 + 337: -41,35 + 338: -41,37 + 1676: -23,-80 + 1677: -23,-79 + 1678: -23,-78 + 1679: -23,-77 + 1680: -23,-76 + 1681: -23,-75 + 1682: -23,-74 + 1934: -45,40 + 1935: -45,41 + 1936: -45,42 + 1937: -45,43 + 2254: -56,40 + 2255: -56,41 + 2256: -56,42 + - node: + color: '#DE3A3A96' + id: BrickTileWhiteLineW + decals: + 2469: -45,-16 + 2470: -45,-17 + 2471: -45,-18 + 2472: -45,-19 - node: color: '#EFB34196' id: BrickTileWhiteLineW decals: - 354: -20,-46 - 356: -23,-44 - 357: -23,-43 - 358: -24,-41 - 359: -24,-40 - 360: -24,-39 - 361: -24,-38 - 362: -24,-37 - 363: -23,-35 - 364: -23,-34 - 365: -23,-31 - 366: -23,-32 - 367: -23,-30 - 368: -23,-29 - 381: -14,-41 - 382: -14,-40 - 383: -14,-39 - 384: -14,-38 - 385: -14,-37 - 2524: -5,-20 - 2525: -5,-18 - 2526: -5,-17 - 2527: -5,-16 + 180: -20,-46 + 182: -23,-44 + 183: -23,-43 + 184: -24,-41 + 185: -24,-40 + 186: -24,-39 + 187: -24,-38 + 188: -24,-37 + 189: -23,-35 + 190: -23,-34 + 191: -23,-31 + 192: -23,-32 + 193: -23,-30 + 194: -23,-29 + 207: -14,-41 + 208: -14,-40 + 209: -14,-39 + 210: -14,-38 + 211: -14,-37 + 2263: -5,-20 + 2264: -5,-18 + 2265: -5,-17 + 2266: -5,-16 - node: color: '#FF801DFF' id: BrickTileWhiteLineW decals: - 2111: 14,13 - 2112: 14,12 - 2113: 14,11 - 2114: 14,10 + 1850: 14,13 + 1851: 14,12 + 1852: 14,11 + 1853: 14,10 - node: color: '#FFFFFFFF' id: BushAOne decals: - 844: 37,-13 + 650: 37,-13 - node: color: '#FFFFFFFF' id: BushATwo decals: - 848: 37,-10 - 863: -27,24 - 869: 35,-13 + 654: 37,-10 + 669: -27,24 - node: color: '#FFFFFFFF' id: BushCOne decals: - 843: 37,-12 + 649: 37,-12 - node: color: '#FFFFFFFF' id: BushCTwo decals: - 842: 37,-9 - 867: -45,23 - 868: 35,-12 - 880: -13,-2 + 648: 37,-9 + 673: -45,23 + 684: -13,-2 - node: color: '#FFFFFFFF' id: BushDOne decals: - 1223: -59.663837,-5.750451 + 992: -59.663837,-5.750451 - node: color: '#FFFFFFFF' id: Busha1 decals: - 850: 33,-23 - 854: 33,-19 - 855: -17,27 + 656: 33,-23 + 660: 33,-19 + 661: -17,27 - node: color: '#FFFFFFFF' id: Busha2 decals: - 849: 34,-23 + 655: 34,-23 - node: color: '#FFFFFFFF' id: Busha3 decals: - 853: 34,-19 + 659: 34,-19 - node: color: '#FFFFFFFF' id: Bushb2 decals: - 1220: -58.898212,-5.953576 - 1221: -61.554462,-6.266076 - 1222: -58.741962,-6.875451 + 989: -58.898212,-5.953576 + 990: -61.554462,-6.266076 + 991: -58.741962,-6.875451 - node: color: '#FFFFFFFF' id: Bushc1 decals: - 838: 13,-2 - 839: 10,2 - 847: 37,-11 - 862: -32,24 - 866: -45,22 - 870: -15,-12 + 644: 13,-2 + 645: 10,2 + 653: 37,-11 + 668: -32,24 + 672: -45,22 + 674: -15,-12 - node: color: '#FFFFFFFF' id: Bushc3 decals: - 852: 35,-19 - 864: -28,24 - 865: -33,24 - 871: -14,-12 + 658: 35,-19 + 670: -28,24 + 671: -33,24 + 675: -14,-12 - node: color: '#FFFFFFFF' id: Bushd1 decals: - 881: -14,-2 + 685: -14,-2 - node: color: '#FFFFFFFF' id: Bushd3 decals: - 840: 15,2 - 841: 12,-2 + 646: 15,2 + 647: 12,-2 - node: color: '#FFFFFFFF' id: Bushe2 decals: - 858: -17,32 - 861: -33,24 + 664: -17,32 + 667: -33,24 - node: color: '#FFFFFFFF' id: Bushe4 decals: - 819: -2,2 + 625: -2,2 - node: color: '#FFFFFFFF' id: Bushf1 decals: - 818: -2,3 - 879: -15,-2 + 624: -2,3 + 683: -15,-2 - node: color: '#FFFFFFFF' id: Bushf2 decals: - 857: -18,32 - 878: -13,-2 + 663: -18,32 + 682: -13,-2 - node: color: '#FFFFFFFF' id: Bushg3 decals: - 851: 32,-19 + 657: 32,-19 - node: color: '#FFFFFFFF' id: Bushg4 decals: - 856: -18,27 + 662: -18,27 - node: cleanable: True color: '#FFFFFFFF' id: Bushj1 decals: - 2107: -22,4 + 1846: -22,4 - node: color: '#FFFFFFFF' id: Bushk3 decals: - 1927: -15.210269,39.22148 + 1666: -15.210269,39.22148 - node: color: '#FFFFFFFF' id: Bushm3 decals: - 860: -45,9 + 666: -45,9 - node: color: '#FFFFFFFF' id: Bushn1 decals: - 835: 2,-2 - 859: -45,10 - 872: -13,-12 - 873: -32,24 - 882: -15,-2 + 641: 2,-2 + 665: -45,10 + 676: -13,-12 + 677: -32,24 + 686: -15,-2 - node: cleanable: True color: '#FFFFFFFF' id: Bushn1 decals: - 2108: -20,3 + 1847: -20,3 + - node: + angle: 1.5707963267948966 rad + color: '#FFFFFFFF' + id: Caution + decals: + 2467: -56,21 + 2468: -56,13 - node: color: '#FF0000FF' id: CautionGreyscale decals: - 2594: 36,10 + 2333: 36,10 - node: color: '#3C44AAFF' id: CheckerNESW decals: - 2541: -4,20 - 2542: -3,19 - 2543: -4,18 + 2280: -4,20 + 2281: -3,19 + 2282: -4,18 - node: color: '#43990996' id: CheckerNESW decals: - 2588: 35,12 - 2589: 35,11 - 2590: 36,11 - 2591: 36,12 - 2592: 37,12 - 2593: 37,11 + 2327: 35,12 + 2328: 35,11 + 2329: 36,11 + 2330: 36,12 + 2331: 37,12 + 2332: 37,11 - node: color: '#52B4E996' id: CheckerNESW decals: - 719: 15,23 - 720: 15,24 - 721: 15,25 - 722: 15,26 - 723: 16,26 - 724: 16,25 - 725: 16,24 - 726: 16,23 - 727: 17,23 - 728: 17,24 - 729: 17,25 - 730: 17,26 - 1778: 17,5 - 1779: 17,4 - 1780: 17,3 - 1781: 18,3 - 1782: 19,5 - 1783: 19,4 - 1784: 19,3 - 1785: 20,3 - 1786: 20,4 - 1787: 20,5 - 1788: 21,5 - 1789: 21,3 - 1790: 22,3 - 1791: 22,5 - 1792: 23,5 - 1793: 23,4 - 1794: 23,3 - 2463: -31,3 - 2464: -32,2 - 2465: -31,1 - 2466: -32,0 - 2467: -31,-1 - 2468: -33,-1 - 2469: -34,0 - 2470: -33,1 - 2471: -34,2 - 2472: -33,3 - 2483: 25,2 - 2484: 26,2 - 2485: 27,2 - 2486: 28,2 + 526: 15,23 + 527: 15,24 + 528: 15,25 + 529: 15,26 + 530: 16,26 + 531: 16,25 + 532: 16,24 + 533: 16,23 + 534: 17,23 + 535: 17,24 + 536: 17,25 + 537: 17,26 + 1519: 17,5 + 1520: 17,4 + 1521: 17,3 + 1522: 18,3 + 1523: 19,5 + 1524: 19,4 + 1525: 19,3 + 1526: 20,3 + 1527: 20,4 + 1528: 20,5 + 1529: 21,5 + 1530: 21,3 + 1531: 22,3 + 1532: 22,5 + 1533: 23,5 + 1534: 23,4 + 1535: 23,3 + 2202: -31,3 + 2203: -32,2 + 2204: -31,1 + 2205: -32,0 + 2206: -31,-1 + 2207: -33,-1 + 2208: -34,0 + 2209: -33,1 + 2210: -34,2 + 2211: -33,3 + 2222: 25,2 + 2223: 26,2 + 2224: 27,2 + 2225: 28,2 - node: cleanable: True color: '#52B4E996' id: CheckerNESW decals: - 1822: 18,5 - 1823: 18,4 - 1824: 21,4 - 1825: 22,4 + 1563: 18,5 + 1564: 18,4 + 1565: 21,4 + 1566: 22,4 - node: color: '#9FED5896' id: CheckerNESW decals: - 2072: 19,-14 - 2073: 19,-13 - 2074: 19,-12 - 2075: 20,-12 - 2076: 21,-12 - 2077: 22,-12 + 1811: 19,-14 + 1812: 19,-13 + 1813: 19,-12 + 1814: 20,-12 + 1815: 21,-12 + 1816: 22,-12 - node: color: '#A4610696' id: CheckerNESW decals: - 2216: 10,-4 - 2217: 10,-5 - 2218: 10,-6 - 2219: 10,-7 - 2224: 9,-20 - 2225: 9,-21 - 2226: 9,-22 - 2227: 9,-23 - 2228: 9,-24 - 2229: 9,-25 - 2230: 9,-26 - 2231: 9,-27 - 2232: 9,-28 - 2241: 9,-18 - 2242: 9,-17 - 2243: 9,-16 - 2244: 9,-15 - 2245: 9,-14 - 2246: 9,-13 - 2260: 10,-11 - 2261: 10,-10 - 2262: 10,-9 - 2263: 14,-32 - 2264: 14,-30 - 2265: 14,-29 - 2266: 14,-28 - 2267: 14,-27 - 2268: 14,-26 - 2269: 14,-25 - 2279: 14,-33 - 2294: 4,-3 - 2295: 4,-4 - 2296: 4,-5 - 2362: 14,-34 - 2363: 14,-35 + 1955: 10,-4 + 1956: 10,-5 + 1957: 10,-6 + 1958: 10,-7 + 1963: 9,-20 + 1964: 9,-21 + 1965: 9,-22 + 1966: 9,-23 + 1967: 9,-24 + 1968: 9,-25 + 1969: 9,-26 + 1970: 9,-27 + 1971: 9,-28 + 1980: 9,-18 + 1981: 9,-17 + 1982: 9,-16 + 1983: 9,-15 + 1984: 9,-14 + 1985: 9,-13 + 1999: 10,-11 + 2000: 10,-10 + 2001: 10,-9 + 2002: 14,-32 + 2003: 14,-30 + 2004: 14,-29 + 2005: 14,-28 + 2006: 14,-27 + 2007: 14,-26 + 2008: 14,-25 + 2018: 14,-33 + 2033: 4,-3 + 2034: 4,-4 + 2035: 4,-5 + 2101: 14,-34 + 2102: 14,-35 - node: color: '#B02E26FF' id: CheckerNESW decals: - 2538: -3,20 - 2539: -4,19 - 2540: -3,18 + 2277: -3,20 + 2278: -4,19 + 2279: -3,18 - node: color: '#D381C996' id: CheckerNESW decals: - 2508: -56,39 - 2509: -55,39 - 2510: -54,39 - 2511: -53,39 - 2512: -52,39 - 2513: -53,43 - 2514: -52,43 + 2247: -56,39 + 2248: -55,39 + 2249: -54,39 + 2250: -53,39 + 2251: -52,39 + 2252: -53,43 + 2253: -52,43 - node: color: '#DE3A3A96' id: CheckerNESW decals: - 206: -24,-3 - 207: -23,-3 - 209: -22,-3 - 210: -21,-3 - 229: -41,-13 - 230: -41,-15 - 231: -41,-16 - 237: -41,-14 - 238: -41,-12 - 2473: -34,3 - 2474: -33,2 - 2475: -32,3 - 2476: -31,2 - 2477: -32,1 - 2478: -34,1 - 2479: -34,-1 - 2480: -33,0 - 2481: -32,-1 - 2482: -31,0 + 91: -24,-3 + 92: -23,-3 + 93: -22,-3 + 94: -21,-3 + 2212: -34,3 + 2213: -33,2 + 2214: -32,3 + 2215: -31,2 + 2216: -32,1 + 2217: -34,1 + 2218: -34,-1 + 2219: -33,0 + 2220: -32,-1 + 2221: -31,0 + 2379: -27,-13 + 2380: -26,-13 + 2381: -25,-13 + 2382: -25,-14 + 2383: -25,-15 + 2384: -25,-16 + 2385: -26,-15 + 2386: -27,-15 + 2387: -27,-14 + 2388: -26,-14 + 2401: -40,-12 + 2402: -39,-12 + 2403: -38,-12 + 2404: -37,-12 + 2405: -36,-12 + 2406: -36,-13 + 2407: -36,-14 + 2408: -36,-15 + 2409: -37,-15 + 2410: -38,-15 + 2411: -39,-15 + 2412: -40,-14 + 2413: -40,-13 + 2414: -40,-15 + 2415: -46,-7 + 2416: -46,-8 + 2417: -46,-9 + 2418: -46,-10 + 2419: -46,-11 + 2420: -44,-9 + 2421: -44,-10 + 2422: -44,-11 - node: color: '#EFB34196' id: CheckerNESW decals: - 2323: -12,-25 - 2324: -11,-25 + 2062: -12,-25 + 2063: -11,-25 - node: color: '#DE3A3A96' id: CheckerNWSE decals: - 190: -25,-9 - 191: -24,-9 - 192: -23,-9 - 193: -22,-9 - 194: -21,-9 - 196: -25,-8 - 197: -26,-6 - 198: -26,-5 - 200: -26,-4 - 201: -26,-3 - 222: -35,-15 - 223: -35,-14 - 225: -35,-13 - 226: -35,-12 - 236: -35,-16 + 87: -26,-6 + 88: -26,-5 + 89: -26,-4 + 90: -26,-3 - node: color: '#EFB34196' id: Delivery decals: - 317: -28,-32 - 318: -25,-35 - 319: -36,-32 - 320: -39,-35 - 321: -36,-35 - 322: -28,-35 - 323: -28,-39 - 324: -36,-39 - 325: -32,-43 - 326: -32,-35 - 327: -28,-43 - 328: -25,-43 - 329: -28,-46 - 330: -36,-46 - 331: -39,-43 - 332: -36,-43 + 147: -28,-32 + 148: -25,-35 + 149: -36,-32 + 150: -39,-35 + 151: -36,-35 + 152: -28,-35 + 153: -28,-43 + 154: -25,-43 + 155: -28,-46 + 156: -36,-46 + 157: -39,-43 + 158: -36,-43 - node: color: '#FFFF00FF' id: Delivery decals: - 299: -23,-39 - 300: -23,-38 - 301: -23,-40 - 302: -21,-39 - 303: -20,-39 + 129: -23,-39 + 130: -23,-38 + 131: -23,-40 + 132: -21,-39 + 133: -20,-39 - node: color: '#FFFFFFFF' id: Delivery decals: - 2145: 22,-30 - 2146: 21,-30 - 2147: 21,-31 - 2148: 22,-31 + 1884: 22,-30 + 1885: 21,-30 + 1886: 21,-31 + 1887: 22,-31 + 2453: -40,1 + 2454: -40,0 + 2455: -40,-1 + 2456: -44,-3 + 2457: -40,-3 + 2458: -41,-3 - node: cleanable: True color: '#FFFFFFFF' id: Delivery decals: - 2152: 13,-18 - 2153: 13,-17 - 2183: 22,-29 - 2184: 21,-29 - - node: - color: '#DE3A3A96' - id: DeliveryGreyscale - decals: - 232: -39,-16 - 239: -41,-7 - 240: -26,-16 - 241: -26,-15 - 242: -26,-14 - 243: -26,-13 - 244: -26,-12 - 245: -24,-14 - 246: -24,-15 - 247: -24,-16 - 248: -24,-17 - - node: - color: '#DF0000FF' - id: DeliveryGreyscale - decals: - 233: -41,-14 - 234: -41,-12 - 235: -35,-16 + 1891: 13,-18 + 1892: 13,-17 + 1922: 22,-29 + 1923: 21,-29 - node: color: '#EFB34196' id: DeliveryGreyscale decals: - 293: -21,-44 + 123: -21,-44 - node: color: '#FFFFFFFF' id: DeliveryGreyscale decals: - 333: -35,-45 - 334: -34,-45 - 335: -33,-45 - 336: -31,-45 - 337: -30,-45 - 338: -29,-45 - 339: -30,-33 - 340: -29,-33 - 341: -31,-33 - 342: -33,-33 - 343: -34,-33 - 344: -35,-33 - 514: -46,34 - 515: -45,34 - 2149: 17,-30 - 2150: 18,-30 + 159: -35,-45 + 160: -34,-45 + 161: -33,-45 + 162: -31,-45 + 163: -30,-45 + 164: -29,-45 + 165: -30,-33 + 166: -29,-33 + 167: -31,-33 + 168: -33,-33 + 169: -34,-33 + 170: -35,-33 + 340: -46,34 + 341: -45,34 + 1888: 17,-30 + 1889: 18,-30 - node: cleanable: True color: '#FFFFFFFF' id: DeliveryGreyscale decals: - 2154: 14,-18 - 2155: 14,-17 - 2156: 15,-17 - 2157: 15,-18 - 2178: 18,-29 - 2179: 17,-29 - 2187: 16,-30 - 2188: 16,-29 + 1893: 14,-18 + 1894: 14,-17 + 1895: 15,-17 + 1896: 15,-18 + 1917: 18,-29 + 1918: 17,-29 + 1926: 16,-30 + 1927: 16,-29 - node: color: '#52B4E996' id: DiagonalCheckerBOverlay decals: - 2502: -29,3 - 2503: -28,2 - 2504: -29,1 + 2241: -29,3 + 2242: -28,2 + 2243: -29,1 - node: color: '#DE3A3A96' id: DiagonalCheckerBOverlay decals: - 2505: -29,2 - 2506: -28,3 - 2507: -28,1 + 2244: -29,2 + 2245: -28,3 + 2246: -28,1 - node: cleanable: True color: '#5D2C0098' id: Dirt decals: - 1685: 22,1 + 1426: 22,1 - node: cleanable: True color: '#5D2C00D3' id: Dirt decals: - 1686: 40,1 - 1687: -25,-3 - 1688: -26,2 - 1690: -31,5 - 1716: 26,-3 + 1427: 40,1 + 1428: -25,-3 + 1429: -26,2 + 1431: -31,5 + 1457: 26,-3 - node: cleanable: True color: '#5D5200FF' id: Dirt decals: - 1675: -2,-28 - 1676: -2,-25 - 1677: 4,-24 - 1678: 1,-23 - 1679: -4,-23 - 1680: -4,-22 - 1681: 0,-25 - 1683: 10,-30 - 1684: 24,-9 + 1416: -2,-28 + 1417: -2,-25 + 1418: 4,-24 + 1419: 1,-23 + 1420: -4,-23 + 1421: -4,-22 + 1422: 0,-25 + 1424: 10,-30 + 1425: 24,-9 - node: cleanable: True color: '#792C0079' id: Dirt decals: - 1748: 22,16 + 1489: 22,16 - node: cleanable: True color: '#792C0082' id: Dirt decals: - 1753: 11,11 - 1754: 11,14 - 1755: 19,16 - 1756: 12,18 - 1757: 13,25 - 1758: 13,24 - 1759: 14,5 - 1760: 23,6 - 1761: 19,8 - 1762: 11,5 - 1763: 8,7 - 1764: 6,11 - 1765: 19,6 + 1494: 11,11 + 1495: 11,14 + 1496: 19,16 + 1497: 12,18 + 1498: 13,25 + 1499: 13,24 + 1500: 14,5 + 1501: 23,6 + 1502: 19,8 + 1503: 11,5 + 1504: 8,7 + 1505: 6,11 + 1506: 19,6 - node: cleanable: True color: '#792C00B7' id: Dirt decals: - 1749: 21,17 - 1750: 16,15 - 1751: 12,15 - 1752: 10,13 + 1490: 21,17 + 1491: 16,15 + 1492: 12,15 + 1493: 10,13 - node: cleanable: True color: '#792C00D1' id: Dirt decals: - 1717: 25,-4 - 1718: 25,-10 - 1719: 39,-1 - 1720: 31,0 - 1721: 13,4 - 1722: 14,4 - 1723: 0,-2 - 1724: 20,-29 - 1725: 37,-24 - 1726: -7,-36 - 1727: -8,-37 - 1728: -7,-35 - 1729: -7,-31 - 1736: -14,-19 - 1737: -14,-19 - 1738: -15,-18 - 1739: -17,-21 - 1740: -18,-26 - 1741: -17,-13 - 1742: -17,-4 - 1743: -21,11 - 1744: -32,15 - 1745: -41,15 - 1746: -48,12 - 1747: -46,6 + 1458: 25,-4 + 1459: 25,-10 + 1460: 39,-1 + 1461: 31,0 + 1462: 13,4 + 1463: 14,4 + 1464: 0,-2 + 1465: 20,-29 + 1466: 37,-24 + 1467: -7,-36 + 1468: -8,-37 + 1469: -7,-35 + 1470: -7,-31 + 1477: -14,-19 + 1478: -14,-19 + 1479: -15,-18 + 1480: -17,-21 + 1481: -18,-26 + 1482: -17,-13 + 1483: -17,-4 + 1484: -21,11 + 1485: -32,15 + 1486: -41,15 + 1487: -48,12 + 1488: -46,6 - node: cleanable: True color: '#835432FF' id: Dirt decals: - 2083: 26,-17 - 2084: 25,-16 - 2085: 29,-17 + 1822: 26,-17 + 1823: 25,-16 + 1824: 29,-17 - node: cleanable: True color: '#A0521263' id: Dirt decals: - 1772: 18,7 - 1773: 18,7 - 1774: 18,6 - 1775: 17,6 - 1776: 17,7 - 1795: -28,10 - 1796: -28,10 - 1797: -28,9 - 1798: -28,9 - 1799: -29,10 - 1800: -28,11 - 1801: -29,11 - 1802: -28,10 - 1803: -28,10 - 1810: -29,13 - 1811: -29,13 - 1812: -29,13 - 1813: -28,14 - 1814: -28,15 - 1815: -30,14 - 1816: -29,12 - 1817: -28,12 - 1818: -29,12 - 1819: -29,12 - 1820: -29,13 - 1821: -29,13 - 1833: 39,-4 - 1834: 38,-4 - 1835: 38,-4 - 1836: 39,-8 - 1837: 39,-8 - 1838: 38,-7 - 1839: 38,-7 - 1840: 39,0 - 1841: 40,-1 - 1842: 40,-1 - 1843: 34,-1 - 1844: 33,-1 - 1845: 35,-1 - 1846: 35,-1 - 1847: 25,1 - 1848: 25,-3 - 1849: 24,-2 - 1850: 24,-3 - 1851: 26,-6 - 1852: 26,-6 - 1853: 29,-16 - 1854: 38,-19 - 1855: 36,-22 - 1856: 31,-23 - 1857: 40,-21 - 1858: 38,-20 - 1859: 40,-13 - 1861: 39,-14 - 1862: 34,-6 - 1863: 35,-6 - 1865: 32,-4 - 1866: 31,-3 - 1868: 31,-3 - 1869: 31,-6 - 1870: 30,-7 - 1871: 29,-7 - 1872: 33,-9 - 1873: 30,-10 - 1874: 28,-10 - 1875: 29,-9 - 1876: 28,-13 - 1878: 30,-13 - 1879: 30,-13 - 1880: 30,-12 - 1881: 30,-12 - 1882: 32,0 - 1885: 27,3 - 1886: 27,3 - 1889: 12,-7 - 1890: 13,-7 - 1891: 13,-7 - 1892: 12,-7 - 1893: 10,-6 - 1894: 10,-6 - 1895: 14,-6 - 1896: 14,-6 - 1897: 14,-5 - 1898: 12,-6 - 1899: 15,-5 - 1900: 13,-9 - 1901: 12,-9 - 1902: 14,-9 - 1903: 14,-11 - 1904: 14,-11 - 1905: 13,-9 - 1906: 10,-10 - 1907: 10,-10 - 1908: 11,-10 - 1909: 7,-10 - 1910: 7,-10 - 1911: 13,-10 - 1912: 13,-10 - 1913: 7,-18 - 1914: 7,-18 - 1917: 29,-19 - 1918: 29,-19 - 1921: 26,-12 - 1922: 24,-13 - 1923: 24,-13 - 1924: 24,-13 + 1513: 18,7 + 1514: 18,7 + 1515: 18,6 + 1516: 17,6 + 1517: 17,7 + 1536: -28,10 + 1537: -28,10 + 1538: -28,9 + 1539: -28,9 + 1540: -29,10 + 1541: -28,11 + 1542: -29,11 + 1543: -28,10 + 1544: -28,10 + 1551: -29,13 + 1552: -29,13 + 1553: -29,13 + 1554: -28,14 + 1555: -28,15 + 1556: -30,14 + 1557: -29,12 + 1558: -28,12 + 1559: -29,12 + 1560: -29,12 + 1561: -29,13 + 1562: -29,13 + 1574: 39,-4 + 1575: 38,-4 + 1576: 38,-4 + 1577: 39,-8 + 1578: 39,-8 + 1579: 38,-7 + 1580: 38,-7 + 1581: 39,0 + 1582: 40,-1 + 1583: 40,-1 + 1584: 34,-1 + 1585: 33,-1 + 1586: 35,-1 + 1587: 35,-1 + 1588: 25,1 + 1589: 25,-3 + 1590: 24,-2 + 1591: 24,-3 + 1592: 29,-16 + 1593: 38,-19 + 1594: 36,-22 + 1595: 31,-23 + 1596: 40,-21 + 1597: 38,-20 + 1598: 40,-13 + 1600: 39,-14 + 1601: 34,-6 + 1602: 35,-6 + 1604: 32,-4 + 1605: 31,-3 + 1607: 31,-3 + 1608: 31,-6 + 1609: 30,-7 + 1610: 29,-7 + 1611: 33,-9 + 1612: 30,-10 + 1613: 28,-10 + 1614: 29,-9 + 1615: 28,-13 + 1617: 30,-13 + 1618: 30,-13 + 1619: 30,-12 + 1620: 30,-12 + 1621: 32,0 + 1624: 27,3 + 1625: 27,3 + 1628: 12,-7 + 1629: 13,-7 + 1630: 13,-7 + 1631: 12,-7 + 1632: 10,-6 + 1633: 10,-6 + 1634: 14,-6 + 1635: 14,-6 + 1636: 14,-5 + 1637: 12,-6 + 1638: 15,-5 + 1639: 13,-9 + 1640: 12,-9 + 1641: 14,-9 + 1642: 14,-11 + 1643: 14,-11 + 1644: 13,-9 + 1645: 10,-10 + 1646: 10,-10 + 1647: 11,-10 + 1648: 7,-10 + 1649: 7,-10 + 1650: 13,-10 + 1651: 13,-10 + 1652: 7,-18 + 1653: 7,-18 + 1656: 29,-19 + 1657: 29,-19 + 1660: 26,-12 + 1661: 24,-13 + 1662: 24,-13 + 1663: 24,-13 - node: cleanable: True color: '#FF0000B7' id: Dirt decals: - 1804: 19,4 + 1545: 19,4 - node: cleanable: True color: '#FFFCFFFF' id: Dirt decals: - 2019: -15,-75 - 2020: -17,-77 - 2021: -10,-71 - 2022: -9,-78 - 2023: -18,-76 - 2024: -23,-77 - 2025: -12,-74 - 2026: -12,-79 - 2027: -23,-78 - 2028: -12,-81 - 2029: -25,-78 - 2030: -11,-76 - 2031: -16,-67 - 2032: -15,-76 - 2033: -27,-77 - 2034: -23,-75 - 2035: -12,-81 - 2052: -18,-47 - 2053: -11,-37 - 2054: -24,-39 - 2055: -21,-35 - 2056: -15,-38 - 2057: -17,-35 - 2058: -8,-33 - 2059: -19,-29 - 2060: -23,-28 - 2061: -7,-32 - 2062: -4,-28 + 1758: -15,-75 + 1759: -17,-77 + 1760: -10,-71 + 1761: -9,-78 + 1762: -18,-76 + 1763: -23,-77 + 1764: -12,-74 + 1765: -12,-79 + 1766: -23,-78 + 1767: -12,-81 + 1768: -25,-78 + 1769: -11,-76 + 1770: -16,-67 + 1771: -15,-76 + 1772: -27,-77 + 1773: -23,-75 + 1774: -12,-81 + 1791: -18,-47 + 1792: -11,-37 + 1793: -24,-39 + 1794: -21,-35 + 1795: -15,-38 + 1796: -17,-35 + 1797: -8,-33 + 1798: -19,-29 + 1799: -23,-28 + 1800: -7,-32 + 1801: -4,-28 - node: color: '#FFFFFFFF' id: Dirt decals: - 2404: -8,-40 - 2405: -7,-39 - 2406: -6,-38 - 2407: -2,-40 - 2408: -2,-42 - 2409: 1,-40 - 2410: -1,-45 - 2411: -4,-46 - 2412: -2,-48 + 2143: -8,-40 + 2144: -7,-39 + 2145: -6,-38 + 2146: -2,-40 + 2147: -2,-42 + 2148: 1,-40 + 2149: -1,-45 + 2150: -4,-46 + 2151: -2,-48 - node: cleanable: True color: '#FFFFFFFF' id: Dirt decals: - 498: 34,-14 - 942: 29,-24 - 943: 39,-18 - 944: 39,-11 - 945: 39,-3 - 946: 40,7 - 947: 39,12 - 948: 35,16 - 949: 33,20 - 950: 33,23 - 951: 26,29 - 952: 22,29 - 953: 13,28 - 954: 13,30 - 955: 13,19 - 956: 23,16 - 957: 13,11 - 958: 13,6 - 959: 11,12 - 960: 18,11 - 961: 20,6 - 962: 7,7 - 963: 6,3 - 964: 2,7 - 965: 4,8 - 966: 1,6 - 967: -3,6 - 968: -4,2 - 969: -25,-1 - 970: -43,1 - 971: -20,0 - 972: -26,1 - 973: -37,6 - 974: -49,5 - 975: -46,11 - 976: -43,29 - 977: -40,33 - 978: -31,41 - 979: -40,46 - 980: -46,46 - 981: -50,45 - 982: -52,45 - 983: -52,50 - 1179: -60,-1 - 1180: -59,-1 - 1206: -43,0 - 1207: -41,-2 - 1208: -44,-6 - 1209: -42,-10 - 1210: -37,-9 - 1211: -39,-13 - 1212: -41,-16 - 1213: -43,-16 - 1214: -44,-15 - 1215: -43,-15 - 1321: 31,-9 - 1322: 31,-1 - 1324: 17,-2 - 1325: 8,-7 - 1332: -7,-4 - 1339: -8,-10 - 1346: -25,-6 - 1352: -10,3 - 1353: -9,17 - 1354: -10,21 - 1355: -6,27 - 1372: -9,10 - 1541: -28,25 - 1542: -28,31 - 1543: -30,31 - 1544: -32,31 - 1584: -18,-1 - 1585: -8,-8 - 1586: -10,-14 - 1587: 23,-13 - 1588: 33,-20 - 1589: 40,-12 - 1616: -13,43 - 1639: 0,32 - 1640: 3,32 - 1648: -29,13 - 1649: -31,10 - 1650: -37,10 - 1651: -17,10 - 1652: -12,10 - 1653: -20,-25 - 1654: -23,-23 - 1661: -22,-22 - 1664: -10,-23 - 1665: 2,-23 - 1700: -15,13 - 1701: -13,15 - 1702: -13,13 - 1703: -15,10 - 1704: -15,15 - 1705: 35,-17 - 1706: 35,-15 - 1707: 35,-16 - 1708: 35,-16 - 1709: 34,-17 - 1710: 33,-15 - 1711: 34,-15 - 1766: 13,1 - 2333: 12,-20 - 2334: 12,-21 - 2338: 22,-26 - 2339: 21,-25 - 2340: 22,-25 - 2341: 20,-25 - 2342: 18,-25 - 2343: 18,-26 - 2344: 18,-27 - 2354: 17,-23 - 2355: 16,-23 - 2356: 18,-20 - 2373: 9,-44 - 2374: 9,-37 - 2376: 12,-35 - 2566: 21,22 - 2567: 23,21 - 2568: 26,25 - 2579: 24,26 - 2602: 49,8 - 2613: 57,3 + 324: 34,-14 + 731: 29,-24 + 732: 39,-18 + 733: 39,-11 + 734: 39,-3 + 735: 40,7 + 736: 39,12 + 737: 35,16 + 738: 33,20 + 739: 33,23 + 740: 26,29 + 741: 22,29 + 742: 13,28 + 743: 13,30 + 744: 13,19 + 745: 23,16 + 746: 13,11 + 747: 13,6 + 748: 11,12 + 749: 18,11 + 750: 20,6 + 751: 7,7 + 752: 6,3 + 753: 2,7 + 754: 4,8 + 755: 1,6 + 756: -3,6 + 757: -4,2 + 758: -25,-1 + 759: -20,0 + 760: -26,1 + 761: -37,6 + 762: -49,5 + 763: -46,11 + 764: -43,29 + 765: -40,33 + 766: -31,41 + 767: -40,46 + 768: -46,46 + 769: -50,45 + 770: -52,45 + 771: -52,50 + 958: -60,-1 + 959: -59,-1 + 1080: 31,-9 + 1081: 31,-1 + 1083: 17,-2 + 1084: 8,-7 + 1091: -7,-4 + 1098: -8,-10 + 1105: -25,-6 + 1111: -10,3 + 1112: -9,17 + 1113: -10,21 + 1114: -6,27 + 1131: -9,10 + 1283: -28,25 + 1284: -28,31 + 1285: -30,31 + 1286: -32,31 + 1326: -18,-1 + 1327: -8,-8 + 1328: -10,-14 + 1329: 23,-13 + 1330: 33,-20 + 1331: 40,-12 + 1357: -13,43 + 1380: 0,32 + 1381: 3,32 + 1389: -29,13 + 1390: -31,10 + 1391: -37,10 + 1392: -17,10 + 1393: -12,10 + 1394: -20,-25 + 1395: -23,-23 + 1402: -22,-22 + 1405: -10,-23 + 1406: 2,-23 + 1441: -15,13 + 1442: -13,15 + 1443: -13,13 + 1444: -15,10 + 1445: -15,15 + 1446: 35,-17 + 1447: 35,-15 + 1448: 35,-16 + 1449: 35,-16 + 1450: 34,-17 + 1451: 33,-15 + 1452: 34,-15 + 1507: 13,1 + 2072: 12,-20 + 2073: 12,-21 + 2077: 22,-26 + 2078: 21,-25 + 2079: 22,-25 + 2080: 20,-25 + 2081: 18,-25 + 2082: 18,-26 + 2083: 18,-27 + 2093: 17,-23 + 2094: 16,-23 + 2095: 18,-20 + 2112: 9,-44 + 2113: 9,-37 + 2115: 12,-35 + 2305: 21,22 + 2306: 23,21 + 2307: 26,25 + 2318: 24,26 + 2341: 49,8 + 2352: 57,3 + 2485: -60,14 + 2486: -60,12 + 2490: -60,22 + 2491: -60,20 + 2495: -40,-7 + 2500: -41,-11 + 2505: -33,-16 + 2512: -43,-3 - node: cleanable: True color: '#00FF00FF' id: DirtHeavy decals: - 922: -55,-8 - 923: -52,-4 + 711: -55,-8 + 712: -52,-4 - node: cleanable: True color: '#5D2C00D3' id: DirtHeavy decals: - 1691: -29,7 - 1692: -36,7 - 1693: -35,5 + 1432: -29,7 + 1433: -36,7 + 1434: -35,5 - node: cleanable: True color: '#792C00D1' id: DirtHeavy decals: - 1730: -8,-35 + 1471: -8,-35 - node: cleanable: True color: '#8354329E' id: DirtHeavy decals: - 2091: 24,-15 + 1830: 24,-15 - node: cleanable: True color: '#835432FF' id: DirtHeavy decals: - 2090: 25,-12 + 1829: 25,-12 - node: cleanable: True color: '#A0521263' id: DirtHeavy decals: - 1805: -28,9 - 1807: -28,9 - 1808: -28,9 - 1809: -29,11 - 1925: 25,-15 + 1546: -28,9 + 1548: -28,9 + 1549: -28,9 + 1550: -29,11 + 1664: 25,-15 - node: cleanable: True color: '#FFFCFFFF' id: DirtHeavy decals: - 2036: -15,-79 - 2037: -17,-80 - 2038: -8,-75 - 2039: -19,-79 - 2040: -20,-78 - 2041: -22,-79 - 2042: -24,-75 - 2043: -27,-78 - 2044: -16,-74 - 2045: -10,-79 - 2046: -21,-77 - 2047: -28,-75 - 2048: -29,-77 - 2049: -29,-78 - 2050: -18,-44 - 2051: -13,-40 + 1775: -15,-79 + 1776: -17,-80 + 1777: -8,-75 + 1778: -19,-79 + 1779: -20,-78 + 1780: -22,-79 + 1781: -24,-75 + 1782: -27,-78 + 1783: -16,-74 + 1784: -10,-79 + 1785: -21,-77 + 1786: -28,-75 + 1787: -29,-77 + 1788: -29,-78 + 1789: -18,-44 + 1790: -13,-40 - node: cleanable: True color: '#FFFFFFFF' id: DirtHeavy decals: - 63: -29,10 - 479: 28,-10 - 480: 35,-16 - 481: 33,-17 - 756: 34,-13 - 757: 32,-12 - 781: 28,-13 - 782: 31,-13 - 783: 31,-10 - 784: 29,-11 - 785: 29,-12 - 786: 34,-10 - 787: 35,-9 - 788: 33,-9 - 789: 32,-9 - 790: 32,-10 - 791: 33,-10 - 820: 29,-3 - 821: 28,-4 - 822: 30,-5 - 823: 31,-6 - 824: 32,-6 - 826: 32,-4 - 827: 32,-3 - 828: 32,-2 - 830: 34,-3 - 833: 33,-16 - 834: 32,-16 - 939: 20,1 - 940: 23,-9 - 984: -47,43 - 985: -48,43 - 986: -41,35 - 987: -38,23 - 988: -42,19 - 989: -38,15 - 990: -42,8 - 991: -37,6 - 992: -36,0 - 993: -38,-6 - 994: -40,-10 - 995: -38,-16 - 996: -29,-22 - 997: -25,-20 - 998: -23,-15 - 999: -27,-18 - 1000: -28,-16 - 1001: -13,-18 - 1002: -3,-19 - 1003: -7,-34 - 1004: -16,-44 - 1005: -19,-48 - 1006: -22,-44 - 1007: -33,-46 - 1008: -36,-40 - 1009: -32,-28 - 1142: -49,50 - 1143: -53,45 - 1144: -43,31 - 1145: -41,33 - 1146: -43,24 - 1147: -40,25 - 1148: -50,20 - 1149: -42,19 - 1150: -49,14 - 1151: -51,5 - 1152: -51,6 - 1153: -47,5 - 1154: -44,6 - 1158: -54,-18 - 1159: -53,-18 - 1160: -53,-17 - 1161: -50,-18 - 1162: -50,-18 - 1163: -59,-13 - 1164: -59,-13 - 1165: -60,-13 - 1166: -60,-12 - 1167: -59,-12 - 1182: -18,34 - 1183: -20,34 - 1270: -50,-5 - 1271: -48,-3 - 1272: -47,-5 - 1273: -48,-5 - 1274: -55,-1 - 1275: -57,1 - 1276: -57,0 - 1277: -55,1 - 1278: -57,-2 - 1279: -57,-1 - 1280: -56,-3 - 1281: -56,-5 - 1282: -57,-5 - 1283: -55,-7 - 1284: -57,-7 - 1289: 38,-18 - 1290: 37,-23 - 1291: 30,-23 - 1299: 26,1 - 1300: 15,-1 - 1303: 11,-4 - 1304: 21,10 - 1305: 11,16 - 1309: 21,19 - 1310: 27,19 - 1315: 16,23 - 1316: 12,22 - 1317: 12,21 - 1323: 18,-2 - 1326: 5,-8 - 1327: 5,-11 - 1333: -9,-4 - 1336: -4,-7 - 1337: -9,-9 - 1342: -17,-12 - 1343: -19,-12 - 1344: -19,-3 - 1347: -24,-6 - 1348: -24,-4 - 1351: -11,7 - 1356: -4,27 - 1357: -10,21 - 1358: -11,18 - 1359: -10,15 - 1360: -7,18 - 1362: -8,21 - 1363: -1,19 - 1371: -9,9 - 1373: -9,10 - 1374: -18,4 - 1379: -22,6 - 1380: -19,6 - 1381: -22,-8 - 1382: 12,-16 - 1407: 21,14 - 1458: -58,1 - 1459: -58,1 - 1460: -60,1 - 1461: -60,1 - 1462: -60,1 - 1463: -60,1 - 1464: -58,-2 - 1465: -58,-2 - 1466: -58,-2 - 1467: -58,-2 - 1468: -58,-2 - 1469: -58,-2 - 1470: -58,-2 - 1471: -58,-3 - 1472: -58,-3 - 1473: -58,-3 - 1474: -57,-4 - 1475: -56,-2 - 1476: -57,-1 - 1477: -57,-8 - 1478: -56,-9 - 1479: -51,10 - 1480: -50,12 - 1481: -50,15 - 1482: -50,16 - 1483: -51,19 - 1484: -51,18 - 1485: -49,20 - 1486: -48,19 - 1487: -47,17 - 1488: -45,17 - 1545: -28,31 - 1546: -38,25 - 1547: -25,24 - 1548: -25,29 - 1549: -23,31 - 1550: -23,35 - 1551: -23,34 - 1552: -15,25 - 1553: -18,25 - 1554: -21,26 - 1555: -15,26 - 1576: -13,5 - 1577: -11,6 - 1591: 40,-20 - 1592: 39,-20 - 1593: 40,-18 - 1617: -8,38 - 1618: -5,36 - 1619: -5,35 - 1620: -9,36 - 1621: -8,35 - 1622: -8,33 - 1623: -12,33 - 1624: -17,34 - 1625: -15,36 - 1626: -15,38 - 1627: -14,38 - 1628: -12,39 - 1629: -13,35 - 1630: -12,36 - 1631: -8,39 - 1632: -6,29 - 1633: -4,31 - 1634: -4,33 - 1635: -4,34 - 1636: -5,33 - 1637: -6,33 - 1638: -1,34 - 1641: 2,32 - 1642: -2,29 - 1643: 0,32 - 1644: -33,35 - 1645: -33,34 - 1646: -33,36 - 1647: -33,38 - 1655: -20,-24 - 1656: -19,-24 - 1657: -19,-21 - 1658: -18,-24 - 1659: -17,-20 - 1660: -22,-26 - 1662: -7,-22 - 1663: -8,-21 - 2325: -14,-25 - 2328: 10,-27 - 2332: 9,-21 - 2335: 20,-32 - 2336: 19,-33 - 2345: 19,-26 - 2370: 11,-41 - 2569: 25,24 - 2573: 21,23 - 2601: 54,6 - 2607: 48,7 + 58: -29,10 + 305: 28,-10 + 306: 35,-16 + 307: 33,-17 + 563: 34,-13 + 564: 32,-12 + 587: 28,-13 + 588: 31,-13 + 589: 31,-10 + 590: 29,-11 + 591: 29,-12 + 592: 34,-10 + 593: 35,-9 + 594: 33,-9 + 595: 32,-9 + 596: 32,-10 + 597: 33,-10 + 626: 29,-3 + 627: 28,-4 + 628: 30,-5 + 629: 31,-6 + 630: 32,-6 + 632: 32,-4 + 633: 32,-3 + 634: 32,-2 + 636: 34,-3 + 639: 33,-16 + 640: 32,-16 + 728: 20,1 + 729: 23,-9 + 772: -47,43 + 773: -48,43 + 774: -41,35 + 775: -38,23 + 776: -42,19 + 777: -38,15 + 778: -42,8 + 779: -37,6 + 780: -36,0 + 781: -38,-6 + 782: -29,-22 + 783: -25,-20 + 784: -23,-15 + 785: -27,-18 + 786: -13,-18 + 787: -3,-19 + 788: -7,-34 + 789: -16,-44 + 790: -19,-48 + 791: -22,-44 + 792: -33,-46 + 793: -36,-40 + 794: -32,-28 + 921: -49,50 + 922: -53,45 + 923: -43,31 + 924: -41,33 + 925: -43,24 + 926: -40,25 + 927: -50,20 + 928: -42,19 + 929: -49,14 + 930: -51,5 + 931: -51,6 + 932: -47,5 + 933: -44,6 + 937: -54,-18 + 938: -53,-18 + 939: -53,-17 + 940: -50,-18 + 941: -50,-18 + 942: -59,-13 + 943: -59,-13 + 944: -60,-13 + 945: -60,-12 + 946: -59,-12 + 961: -18,34 + 962: -20,34 + 1033: -55,-1 + 1034: -57,1 + 1035: -57,0 + 1036: -55,1 + 1037: -57,-2 + 1038: -57,-1 + 1039: -56,-3 + 1040: -56,-5 + 1041: -57,-5 + 1042: -55,-7 + 1043: -57,-7 + 1048: 38,-18 + 1049: 37,-23 + 1050: 30,-23 + 1058: 26,1 + 1059: 15,-1 + 1062: 11,-4 + 1063: 21,10 + 1064: 11,16 + 1068: 21,19 + 1069: 27,19 + 1074: 16,23 + 1075: 12,22 + 1076: 12,21 + 1082: 18,-2 + 1085: 5,-8 + 1086: 5,-11 + 1092: -9,-4 + 1095: -4,-7 + 1096: -9,-9 + 1101: -17,-12 + 1102: -19,-12 + 1103: -19,-3 + 1106: -24,-6 + 1107: -24,-4 + 1110: -11,7 + 1115: -4,27 + 1116: -10,21 + 1117: -11,18 + 1118: -10,15 + 1119: -7,18 + 1121: -8,21 + 1122: -1,19 + 1130: -9,9 + 1132: -9,10 + 1137: -22,6 + 1138: -19,6 + 1139: -22,-8 + 1140: 12,-16 + 1165: 21,14 + 1200: -58,1 + 1201: -58,1 + 1202: -60,1 + 1203: -60,1 + 1204: -60,1 + 1205: -60,1 + 1206: -58,-2 + 1207: -58,-2 + 1208: -58,-2 + 1209: -58,-2 + 1210: -58,-2 + 1211: -58,-2 + 1212: -58,-2 + 1213: -58,-3 + 1214: -58,-3 + 1215: -58,-3 + 1216: -57,-4 + 1217: -56,-2 + 1218: -57,-1 + 1219: -57,-8 + 1220: -56,-9 + 1221: -51,10 + 1222: -50,12 + 1223: -50,15 + 1224: -50,16 + 1225: -51,19 + 1226: -51,18 + 1227: -49,20 + 1228: -48,19 + 1229: -47,17 + 1230: -45,17 + 1287: -28,31 + 1288: -38,25 + 1289: -25,24 + 1290: -25,29 + 1291: -23,31 + 1292: -23,35 + 1293: -23,34 + 1294: -15,25 + 1295: -18,25 + 1296: -21,26 + 1297: -15,26 + 1318: -13,5 + 1319: -11,6 + 1333: 40,-20 + 1334: 39,-20 + 1335: 40,-18 + 1358: -8,38 + 1359: -5,36 + 1360: -5,35 + 1361: -9,36 + 1362: -8,35 + 1363: -8,33 + 1364: -12,33 + 1365: -17,34 + 1366: -15,36 + 1367: -15,38 + 1368: -14,38 + 1369: -12,39 + 1370: -13,35 + 1371: -12,36 + 1372: -8,39 + 1373: -6,29 + 1374: -4,31 + 1375: -4,33 + 1376: -4,34 + 1377: -5,33 + 1378: -6,33 + 1379: -1,34 + 1382: 2,32 + 1383: -2,29 + 1384: 0,32 + 1385: -33,35 + 1386: -33,34 + 1387: -33,36 + 1388: -33,38 + 1396: -20,-24 + 1397: -19,-24 + 1398: -19,-21 + 1399: -18,-24 + 1400: -17,-20 + 1401: -22,-26 + 1403: -7,-22 + 1404: -8,-21 + 2064: -14,-25 + 2067: 10,-27 + 2071: 9,-21 + 2074: 20,-32 + 2075: 19,-33 + 2084: 19,-26 + 2109: 11,-41 + 2308: 25,24 + 2312: 21,23 + 2340: 54,6 + 2346: 48,7 + 2481: -54,21 + 2487: -56,12 + 2492: -59,21 + 2497: -35,-13 + 2498: -28,-9 + 2502: -44,-9 + 2509: -39,-8 + 2510: -44,-7 + 2518: -29,-15 - node: cleanable: True color: '#FFFFFFFF' id: DirtHeavyMonotile decals: - 2326: -14,-22 - 2337: 19,-27 - 2346: 20,-26 - 2371: 11,-44 - 2375: 11,-37 - 2574: 22,25 - 2577: 20,24 - 2578: 25,25 - 2608: 55,7 - 2610: 55,0 + 2065: -14,-22 + 2076: 19,-27 + 2085: 20,-26 + 2110: 11,-44 + 2114: 11,-37 + 2313: 22,25 + 2316: 20,24 + 2317: 25,25 + 2347: 55,7 + 2349: 55,0 + 2482: -55,18 + 2489: -56,22 + 2493: -60,21 + 2494: -42,28 + 2496: -40,-11 + 2506: -34,-10 + 2507: -34,-8 + 2517: -27,-15 - node: cleanable: True color: '#5D2C00D3' id: DirtLight decals: - 1689: -33,5 + 1430: -33,5 - node: cleanable: True color: '#792C00D1' id: DirtLight decals: - 1731: -8,-36 - 1732: -8,-23 - 1733: -8,-19 - 1734: -12,-18 - 1735: -13,-17 + 1472: -8,-36 + 1473: -8,-23 + 1474: -8,-19 + 1475: -12,-18 + 1476: -13,-17 - node: cleanable: True color: '#835432FF' id: DirtLight decals: - 2086: 28,-17 - 2088: 27,-17 + 1825: 28,-17 + 1827: 27,-17 - node: cleanable: True color: '#A0521263' id: DirtLight decals: - 1777: 19,7 - 1926: 25,-15 + 1518: 19,7 + 1665: 25,-15 - node: cleanable: True color: '#FF0000B7' id: DirtLight decals: - 1806: 20,6 + 1547: 20,6 - node: cleanable: True color: '#FF0000FF' id: DirtLight decals: - 1217: -50,-15 + 986: -50,-15 - node: cleanable: True color: '#FFFCFFFF' id: DirtLight decals: - 1997: -12,-79 - 1998: -11,-78 - 1999: -8,-74 - 2000: -7,-78 - 2001: -8,-79 - 2002: -13,-76 - 2003: -18,-77 - 2004: -14,-73 - 2005: -17,-72 - 2006: -20,-78 - 2007: -22,-78 - 2008: -26,-75 - 2009: -22,-82 - 2010: -16,-82 - 2011: -11,-86 - 2012: -15,-88 - 2013: -20,-79 - 2014: -28,-80 - 2015: -17,-68 - 2016: -17,-65 - 2017: -17,-69 - 2018: -16,-73 - 2063: -17,-46 - 2064: -16,-42 - 2065: -12,-46 - 2066: -20,-46 - 2067: -17,-37 - 2068: -13,-40 - 2069: -21,-36 + 1736: -12,-79 + 1737: -11,-78 + 1738: -8,-74 + 1739: -7,-78 + 1740: -8,-79 + 1741: -13,-76 + 1742: -18,-77 + 1743: -14,-73 + 1744: -17,-72 + 1745: -20,-78 + 1746: -22,-78 + 1747: -26,-75 + 1748: -22,-82 + 1749: -16,-82 + 1750: -11,-86 + 1751: -15,-88 + 1752: -20,-79 + 1753: -28,-80 + 1754: -17,-68 + 1755: -17,-65 + 1756: -17,-69 + 1757: -16,-73 + 1802: -17,-46 + 1803: -16,-42 + 1804: -12,-46 + 1805: -20,-46 + 1806: -17,-37 + 1807: -13,-40 + 1808: -21,-36 - node: cleanable: True color: '#FFFFFFFF' id: DirtLight decals: - 64: -28,11 - 65: -28,12 - 67: -29,11 - 482: 32,-16 - 483: 34,-17 - 486: 33,-16 - 487: 26,-13 - 759: 33,-12 - 760: 32,-13 - 761: 29,-9 - 762: 29,-11 - 763: 29,-12 - 764: 31,-12 - 765: 29,-12 - 766: 30,-11 - 767: 31,-10 - 768: 30,-9 - 769: 30,-9 - 770: 30,-10 - 771: 31,-10 - 772: 31,-9 - 773: 30,-9 - 774: 30,-10 - 775: 29,-9 - 792: 35,-9 - 793: 34,-9 - 794: 31,-9 - 795: 30,-9 - 796: 35,-7 - 797: 32,-7 - 798: 31,-5 - 799: 32,-4 - 800: 29,-4 - 801: 29,-6 - 802: 29,-7 - 803: 33,-4 - 804: 34,-4 - 805: 30,-4 - 806: 29,-5 - 1058: 41,8 - 1059: 39,9 - 1060: 39,13 - 1061: 39,13 - 1062: 36,17 - 1063: 34,19 - 1064: 32,21 - 1065: 34,24 - 1066: 30,22 - 1067: 32,23 - 1068: 44,13 - 1069: 44,12 - 1070: 44,11 - 1071: 54,11 - 1072: 59,11 - 1073: 55,16 - 1074: 54,14 - 1075: 54,16 - 1076: 45,13 - 1077: 41,13 - 1078: 42,13 - 1079: 42,16 - 1080: 29,10 - 1081: 21,6 - 1082: 29,6 - 1083: 14,0 - 1084: 17,-4 - 1085: 22,-2 - 1086: 9,-6 - 1087: 12,-10 - 1088: 16,-8 - 1089: 7,-12 - 1090: 1,-10 - 1091: 6,-20 - 1092: -1,-15 - 1093: -3,-21 - 1094: 11,-19 - 1095: 7,-23 - 1096: 1,-23 - 1097: -1,-30 - 1098: 7,-31 - 1099: -2,-32 - 1100: 0,-42 - 1101: -1,-36 - 1102: -15,-41 - 1103: -18,-36 - 1104: -8,-43 - 1105: -25,-39 - 1106: -18,-44 - 1107: -18,-35 - 1108: -15,-38 - 1109: -25,-31 - 1110: -12,-29 - 1111: -24,-28 - 1112: -35,-22 - 1113: -20,-20 - 1114: -26,-27 - 1115: -28,-20 - 1116: -36,-18 - 1117: -33,-8 - 1118: -29,-16 - 1119: -45,-10 - 1120: -43,-1 - 1121: -36,-8 - 1122: -42,-1 - 1123: -45,2 - 1124: -54,2 - 1125: -42,7 - 1126: -45,21 - 1127: -46,27 - 1128: -38,33 - 1129: -50,36 - 1130: -38,46 - 1131: -36,45 - 1132: -36,44 - 1133: -42,50 - 1134: -44,51 - 1135: -40,57 - 1136: -39,57 - 1137: -46,57 - 1138: -41,60 - 1139: -47,61 - 1140: -44,65 - 1141: -39,65 - 1168: -59,-7 - 1169: -61,-8 - 1170: -58,-3 - 1171: -59,-3 - 1172: -59,-1 - 1173: -59,0 - 1174: -58,-1 - 1175: -59,0 - 1176: -60,0 - 1177: -60,1 - 1178: -59,1 - 1184: -15,35 - 1185: -15,38 - 1186: -4,38 - 1187: -5,38 - 1296: 40,-4 - 1297: 39,1 - 1298: 33,1 - 1301: 14,-4 - 1302: 11,-5 - 1306: 10,15 - 1307: 23,10 - 1314: 17,25 - 1335: -6,-6 - 1338: -7,-10 - 1345: -24,1 - 1349: -25,-5 - 1361: -12,17 - 1368: -7,10 - 1369: -9,9 - 1370: -8,9 - 1375: -22,5 - 1376: -18,6 - 1377: -18,5 - 1378: -21,6 - 1383: 9,-16 - 1384: 9,-14 - 1385: 21,-13 - 1386: 20,-14 - 1387: 28,-19 - 1388: 38,-24 - 1389: 40,-19 - 1390: 37,-16 - 1391: 40,-11 - 1392: 37,-4 - 1393: 37,0 - 1394: 33,1 - 1408: 7,-11 - 1409: 8,-12 - 1410: 8,-13 - 1411: 8,-11 - 1412: 2,-6 - 1413: 4,-6 - 1414: 1,-7 - 1415: 3,-6 - 1416: 1,-2 - 1417: 1,-1 - 1418: -1,3 - 1419: -4,1 - 1420: -9,0 - 1421: -12,0 - 1422: -16,0 - 1423: -17,-2 - 1424: -18,-3 - 1425: -18,-6 - 1426: -18,-10 - 1427: -18,-12 - 1428: -17,-14 - 1429: -22,-13 - 1430: -22,-13 - 1431: -22,-15 - 1432: -30,-11 - 1433: -32,-9 - 1434: -34,-9 - 1435: -36,-10 - 1436: -37,-10 - 1437: -41,-10 - 1438: -43,-10 - 1439: -45,-10 - 1440: -38,-12 - 1441: -38,-12 - 1442: -38,-14 - 1443: -38,-14 - 1444: -41,-15 - 1445: -45,-11 - 1446: -49,-9 - 1447: -50,-10 - 1448: -51,-15 - 1449: -53,-14 - 1450: -50,-15 - 1451: -53,-13 - 1452: -56,-12 - 1453: -57,-10 - 1454: -55,-9 - 1455: -55,-8 - 1456: -56,-8 - 1457: -55,-9 - 1489: -51,15 - 1490: -51,14 - 1491: -49,13 - 1492: -48,13 - 1493: -47,13 - 1494: -47,16 - 1495: -47,19 - 1496: -48,21 - 1497: -47,23 - 1498: -50,23 - 1499: -50,22 - 1500: -42,13 - 1501: -43,12 - 1502: -43,10 - 1503: -42,11 - 1504: -42,14 - 1505: -42,18 - 1506: -43,19 - 1507: -43,21 - 1508: -43,22 - 1509: -42,22 - 1510: -41,19 - 1511: -41,16 - 1512: -41,14 - 1513: -41,13 - 1514: -40,27 - 1515: -39,26 - 1516: -39,29 - 1517: -35,27 - 1518: -39,26 - 1519: -40,26 - 1520: -41,33 - 1521: -45,33 - 1522: -48,33 - 1523: -49,34 - 1524: -51,34 - 1525: -51,33 - 1526: -50,39 - 1527: -49,40 - 1528: -48,40 - 1529: -48,40 - 1530: -36,37 - 1531: -37,37 - 1532: -37,37 - 1533: -37,36 - 1534: -37,36 - 1535: -36,36 - 1536: -37,34 - 1537: -37,32 - 1538: -32,25 - 1539: -33,25 - 1540: -33,25 - 1556: -14,27 - 1557: -20,25 - 1558: -14,26 - 1559: -23,25 - 1560: -24,22 - 1561: -23,31 - 1562: -25,31 - 1563: -25,29 - 1565: -23,36 - 1566: -24,33 - 1567: -24,22 - 1568: -24,16 - 1569: -24,15 - 1570: -24,14 - 1571: -26,11 - 1572: -26,11 - 1573: -26,8 - 1578: -10,5 - 1579: -16,4 - 1580: -14,3 - 1581: -14,6 - 1582: -14,6 - 1583: -15,-1 - 1594: 30,-20 - 1595: 28,-20 - 1596: 28,-19 - 1597: 25,-8 - 1598: 25,-8 - 1599: 25,-6 - 1600: 24,-8 - 1601: 24,-6 - 1602: 24,-3 - 1603: 24,-3 - 1604: 26,-6 - 1605: 22,7 - 1606: 14,7 - 1607: 13,8 - 1608: 11,8 - 1609: 12,10 - 1610: 12,10 - 1611: 10,10 - 1612: 10,12 - 1613: 8,11 - 1614: 7,9 - 1615: 6,7 - 1666: -3,-28 - 1667: -5,-28 - 1668: -5,-23 - 1669: -5,-27 - 1670: -3,-29 - 1671: -2,-28 - 1672: 0,-24 - 1673: -1,-23 - 1674: 1,-24 - 2329: 12,-23 - 2330: 9,-20 - 2347: 20,-28 - 2348: 17,-26 - 2349: 16,-31 - 2350: 12,-14 - 2351: 9,-14 - 2352: 4,-14 - 2353: 14,-22 - 2372: 11,-43 - 2570: 24,26 - 2572: 20,25 - 2575: 19,26 - 2603: 52,3 - 2604: 50,1 - 2605: 56,3 - 2611: 47,6 + 59: -28,11 + 60: -28,12 + 62: -29,11 + 308: 32,-16 + 309: 34,-17 + 312: 33,-16 + 313: 26,-13 + 566: 32,-13 + 567: 29,-9 + 568: 29,-11 + 569: 29,-12 + 570: 31,-12 + 571: 29,-12 + 572: 30,-11 + 573: 31,-10 + 574: 30,-9 + 575: 30,-9 + 576: 30,-10 + 577: 31,-10 + 578: 31,-9 + 579: 30,-9 + 580: 30,-10 + 581: 29,-9 + 598: 35,-9 + 599: 34,-9 + 600: 31,-9 + 601: 30,-9 + 602: 35,-7 + 603: 32,-7 + 604: 31,-5 + 605: 32,-4 + 606: 29,-4 + 607: 29,-6 + 608: 29,-7 + 609: 33,-4 + 610: 34,-4 + 611: 30,-4 + 612: 29,-5 + 843: 41,8 + 844: 39,9 + 845: 39,13 + 846: 39,13 + 847: 36,17 + 848: 34,19 + 849: 32,21 + 850: 34,24 + 851: 30,22 + 852: 32,23 + 853: 44,13 + 854: 44,12 + 855: 44,11 + 856: 54,11 + 857: 59,11 + 858: 55,16 + 859: 54,14 + 860: 54,16 + 861: 45,13 + 862: 41,13 + 863: 42,13 + 864: 42,16 + 865: 29,10 + 866: 21,6 + 867: 29,6 + 868: 14,0 + 869: 17,-4 + 870: 22,-2 + 871: 9,-6 + 872: 12,-10 + 873: 16,-8 + 874: 7,-12 + 875: 1,-10 + 876: 6,-20 + 877: -1,-15 + 878: -3,-21 + 879: 11,-19 + 880: 7,-23 + 881: 1,-23 + 882: -1,-30 + 883: 7,-31 + 884: -2,-32 + 885: 0,-42 + 886: -1,-36 + 887: -15,-41 + 888: -18,-36 + 889: -8,-43 + 890: -25,-39 + 891: -18,-44 + 892: -18,-35 + 893: -15,-38 + 894: -25,-31 + 895: -12,-29 + 896: -24,-28 + 897: -35,-22 + 898: -20,-20 + 899: -26,-27 + 900: -28,-20 + 901: -33,-8 + 902: -45,2 + 903: -54,2 + 904: -42,7 + 905: -45,21 + 906: -46,27 + 907: -38,33 + 908: -50,36 + 909: -38,46 + 910: -36,45 + 911: -36,44 + 912: -42,50 + 913: -44,51 + 914: -40,57 + 915: -39,57 + 916: -46,57 + 917: -41,60 + 918: -47,61 + 919: -44,65 + 920: -39,65 + 947: -59,-7 + 948: -61,-8 + 949: -58,-3 + 950: -59,-3 + 951: -59,-1 + 952: -59,0 + 953: -58,-1 + 954: -59,0 + 955: -60,0 + 956: -60,1 + 957: -59,1 + 963: -15,35 + 964: -15,38 + 965: -4,38 + 966: -5,38 + 1055: 40,-4 + 1056: 39,1 + 1057: 33,1 + 1060: 14,-4 + 1061: 11,-5 + 1065: 10,15 + 1066: 23,10 + 1073: 17,25 + 1094: -6,-6 + 1097: -7,-10 + 1104: -24,1 + 1108: -25,-5 + 1120: -12,17 + 1127: -7,10 + 1128: -9,9 + 1129: -8,9 + 1133: -22,5 + 1134: -18,6 + 1135: -18,5 + 1136: -21,6 + 1141: 9,-16 + 1142: 9,-14 + 1143: 21,-13 + 1144: 20,-14 + 1145: 28,-19 + 1146: 38,-24 + 1147: 40,-19 + 1148: 37,-16 + 1149: 40,-11 + 1150: 37,-4 + 1151: 37,0 + 1152: 33,1 + 1166: 7,-11 + 1167: 8,-12 + 1168: 8,-13 + 1169: 8,-11 + 1170: 2,-6 + 1171: 4,-6 + 1172: 1,-7 + 1173: 3,-6 + 1174: 1,-2 + 1175: 1,-1 + 1176: -1,3 + 1177: -4,1 + 1178: -9,0 + 1179: -12,0 + 1180: -16,0 + 1181: -17,-2 + 1182: -18,-3 + 1183: -18,-6 + 1184: -18,-10 + 1185: -18,-12 + 1186: -17,-14 + 1187: -22,-13 + 1188: -22,-13 + 1189: -22,-15 + 1190: -51,-15 + 1191: -53,-14 + 1192: -50,-15 + 1193: -53,-13 + 1194: -56,-12 + 1195: -57,-10 + 1196: -55,-9 + 1197: -55,-8 + 1198: -56,-8 + 1199: -55,-9 + 1231: -51,15 + 1232: -51,14 + 1233: -49,13 + 1234: -48,13 + 1235: -47,13 + 1236: -47,16 + 1237: -47,19 + 1238: -48,21 + 1239: -47,23 + 1240: -50,23 + 1241: -50,22 + 1242: -42,13 + 1243: -43,12 + 1244: -43,10 + 1245: -42,11 + 1246: -42,14 + 1247: -42,18 + 1248: -43,19 + 1249: -43,21 + 1250: -43,22 + 1251: -42,22 + 1252: -41,19 + 1253: -41,16 + 1254: -41,14 + 1255: -41,13 + 1256: -40,27 + 1257: -39,26 + 1258: -39,29 + 1259: -35,27 + 1260: -39,26 + 1261: -40,26 + 1262: -41,33 + 1263: -45,33 + 1264: -48,33 + 1265: -49,34 + 1266: -51,34 + 1267: -51,33 + 1268: -50,39 + 1269: -49,40 + 1270: -48,40 + 1271: -48,40 + 1272: -36,37 + 1273: -37,37 + 1274: -37,37 + 1275: -37,36 + 1276: -37,36 + 1277: -36,36 + 1278: -37,34 + 1279: -37,32 + 1280: -32,25 + 1281: -33,25 + 1282: -33,25 + 1298: -14,27 + 1299: -20,25 + 1300: -14,26 + 1301: -23,25 + 1302: -24,22 + 1303: -23,31 + 1304: -25,31 + 1305: -25,29 + 1307: -23,36 + 1308: -24,33 + 1309: -24,22 + 1310: -24,16 + 1311: -24,15 + 1312: -24,14 + 1313: -26,11 + 1314: -26,11 + 1315: -26,8 + 1320: -10,5 + 1321: -16,4 + 1322: -14,3 + 1323: -14,6 + 1324: -14,6 + 1325: -15,-1 + 1336: 30,-20 + 1337: 28,-20 + 1338: 28,-19 + 1339: 25,-8 + 1340: 25,-8 + 1341: 25,-6 + 1342: 24,-8 + 1343: 24,-6 + 1344: 24,-3 + 1345: 24,-3 + 1346: 22,7 + 1347: 14,7 + 1348: 13,8 + 1349: 11,8 + 1350: 12,10 + 1351: 12,10 + 1352: 10,10 + 1353: 10,12 + 1354: 8,11 + 1355: 7,9 + 1356: 6,7 + 1407: -3,-28 + 1408: -5,-28 + 1409: -5,-23 + 1410: -5,-27 + 1411: -3,-29 + 1412: -2,-28 + 1413: 0,-24 + 1414: -1,-23 + 1415: 1,-24 + 2068: 12,-23 + 2069: 9,-20 + 2086: 20,-28 + 2087: 17,-26 + 2088: 16,-31 + 2089: 12,-14 + 2090: 9,-14 + 2091: 4,-14 + 2092: 14,-22 + 2111: 11,-43 + 2309: 24,26 + 2311: 20,25 + 2314: 19,26 + 2342: 52,3 + 2343: 50,1 + 2344: 56,3 + 2350: 47,6 + 2483: -55,13 + 2484: -53,16 + 2488: -52,13 + 2503: -40,-18 + 2508: -33,-7 + 2513: -42,-1 + 2514: -41,0 + 2515: -32,-1 + 2516: -29,3 - node: cleanable: True angle: 1.5707963267948966 rad color: '#FFFFFFFF' id: DirtLight decals: - 68: -29,12 + 63: -29,12 - node: cleanable: True angle: 3.141592653589793 rad color: '#FFFFFFFF' id: DirtLight decals: - 1827: -17,26 + 1568: -17,26 - node: cleanable: True color: '#5D2C00D3' id: DirtMedium decals: - 1694: -35,7 - 1695: -38,5 - 1696: -42,5 - 1697: -41,10 - 1698: -44,13 - 1699: -51,11 + 1435: -35,7 + 1436: -38,5 + 1437: -42,5 + 1438: -41,10 + 1439: -44,13 + 1440: -51,11 - node: cleanable: True color: '#8354329E' id: DirtMedium decals: - 2092: 25,-15 + 1831: 25,-15 - node: cleanable: True color: '#835432FF' id: DirtMedium decals: - 2087: 27,-16 - 2089: 28,-17 + 1826: 27,-16 + 1828: 28,-17 - node: cleanable: True color: '#FF0000FF' id: DirtMedium decals: - 1216: -57,-10 + 985: -57,-10 - node: cleanable: True color: '#FFFFFFFF' id: DirtMedium decals: - 66: -29,9 - 484: 33,-15 - 485: 34,-16 - 526: 34,-16 - 758: 34,-12 - 776: 31,-11 - 777: 31,-10 - 778: 29,-11 - 779: 28,-10 - 780: 28,-12 - 807: 33,-4 - 808: 33,-4 - 809: 34,-5 - 810: 31,-7 - 811: 30,-7 - 812: 28,-7 - 813: 29,-5 - 814: 30,-3 - 815: 29,-5 - 816: 35,-6 - 817: 36,-6 - 941: 21,-16 - 1010: -18,-19 - 1011: -15,-13 - 1012: -18,-9 - 1013: -17,-3 - 1014: -19,0 - 1015: -5,5 - 1016: -1,25 - 1017: 1,26 - 1018: 2,26 - 1019: 5,29 - 1020: 6,29 - 1021: 9,30 - 1022: 14,30 - 1023: 18,28 - 1024: 20,28 - 1025: 23,28 - 1026: 26,28 - 1027: 29,28 - 1028: 30,27 - 1029: 31,25 - 1030: 31,24 - 1031: 32,22 - 1032: 34,20 - 1033: 33,18 - 1034: 34,18 - 1035: 36,17 - 1036: 37,16 - 1037: 38,15 - 1038: 40,15 - 1039: 40,14 - 1040: 40,13 - 1041: 41,10 - 1042: 40,9 - 1043: 42,7 - 1044: 41,7 - 1045: 41,7 - 1046: 41,6 - 1047: 40,6 - 1048: 40,6 - 1049: 41,6 - 1050: 41,4 - 1051: 41,4 - 1052: 39,5 - 1053: 39,6 - 1054: 39,7 - 1055: 39,7 - 1056: 39,9 - 1057: 39,8 - 1155: -56,-17 - 1156: -57,-17 - 1157: -57,-18 - 1188: -13,38 - 1189: -13,39 - 1192: -25,10 - 1193: -26,6 - 1194: -25,1 - 1195: -16,2 - 1196: -8,6 - 1197: -11,10 - 1198: -14,10 - 1199: -19,11 - 1200: -19,10 - 1201: -13,15 - 1202: -15,14 - 1203: -14,15 - 1204: -14,14 - 1205: -13,14 - 1267: -54,-5 - 1268: -54,-3 - 1269: -50,-3 - 1285: -55,-10 - 1286: -57,-5 - 1292: 38,-22 - 1293: 39,-17 - 1294: 38,-11 - 1295: 40,-9 - 1308: 23,19 - 1311: 25,19 - 1312: 22,21 - 1313: 20,26 - 1318: 13,21 - 1319: 10,21 - 1320: 12,14 - 1328: 6,-8 - 1329: 6,-6 - 1330: 6,-7 - 1331: -2,-1 - 1334: -6,-4 - 1350: -22,-5 - 1364: -10,10 - 1365: -8,12 - 1366: -7,10 - 1367: -7,10 - 1395: 22,15 - 1396: 22,18 - 1397: 22,12 - 1398: 17,16 - 1399: 13,16 - 1400: 10,12 - 1401: 8,9 - 1402: 13,19 - 1403: 12,22 - 1404: 13,25 - 1405: 9,25 - 1406: 10,25 - 1590: 40,-10 - 1712: 34,-15 - 1713: 33,-17 - 1714: 25,-5 - 1715: 26,-4 - 2327: -12,-23 - 2331: 12,-28 - 2413: -5,-48 - 2414: -4,-47 - 2415: 1,-46 - 2416: -1,-46 - 2417: -3,-48 - 2418: -3,-40 - 2419: 1,-43 - 2420: -3,-39 - 2421: -6,-40 - 2422: -7,-40 - 2423: -8,-40 - 2424: -6,-38 - 2425: -3,-39 - 2426: 1,-43 - 2427: 1,-39 - 2428: 0,-38 - 2429: -3,-42 - 2430: 2,-44 - 2431: -1,-47 - 2432: -3,-48 - 2433: 0,-50 - 2434: -3,-51 - 2435: -3,-51 - 2436: -4,-50 - 2437: -6,-50 - 2438: -8,-49 - 2439: -9,-48 - 2440: -8,-49 - 2441: -8,-51 - 2442: -8,-52 - 2443: -8,-52 - 2444: 0,-52 - 2445: 1,-51 - 2571: 23,25 - 2576: 22,25 - 2606: 48,5 - 2609: 47,2 - 2612: 57,4 + 61: -29,9 + 310: 33,-15 + 311: 34,-16 + 352: 34,-16 + 565: 34,-12 + 582: 31,-11 + 583: 31,-10 + 584: 29,-11 + 585: 28,-10 + 586: 28,-12 + 613: 33,-4 + 614: 33,-4 + 615: 34,-5 + 616: 31,-7 + 617: 30,-7 + 618: 28,-7 + 619: 29,-5 + 620: 30,-3 + 621: 29,-5 + 622: 35,-6 + 623: 36,-6 + 730: 21,-16 + 795: -18,-19 + 796: -15,-13 + 797: -18,-9 + 798: -17,-3 + 799: -19,0 + 800: -5,5 + 801: -1,25 + 802: 1,26 + 803: 2,26 + 804: 5,29 + 805: 6,29 + 806: 9,30 + 807: 14,30 + 808: 18,28 + 809: 20,28 + 810: 23,28 + 811: 26,28 + 812: 29,28 + 813: 30,27 + 814: 31,25 + 815: 31,24 + 816: 32,22 + 817: 34,20 + 818: 33,18 + 819: 34,18 + 820: 36,17 + 821: 37,16 + 822: 38,15 + 823: 40,15 + 824: 40,14 + 825: 40,13 + 826: 41,10 + 827: 40,9 + 828: 42,7 + 829: 41,7 + 830: 41,7 + 831: 41,6 + 832: 40,6 + 833: 40,6 + 834: 41,6 + 835: 41,4 + 836: 41,4 + 837: 39,5 + 838: 39,6 + 839: 39,7 + 840: 39,7 + 841: 39,9 + 842: 39,8 + 934: -56,-17 + 935: -57,-17 + 936: -57,-18 + 967: -13,38 + 968: -13,39 + 971: -25,10 + 972: -26,6 + 973: -25,1 + 974: -16,2 + 975: -8,6 + 976: -11,10 + 977: -14,10 + 978: -19,11 + 979: -19,10 + 980: -13,15 + 981: -15,14 + 982: -14,15 + 983: -14,14 + 984: -13,14 + 1044: -55,-10 + 1045: -57,-5 + 1051: 38,-22 + 1052: 39,-17 + 1053: 38,-11 + 1054: 40,-9 + 1067: 23,19 + 1070: 25,19 + 1071: 22,21 + 1072: 20,26 + 1077: 13,21 + 1078: 10,21 + 1079: 12,14 + 1087: 6,-8 + 1088: 6,-6 + 1089: 6,-7 + 1090: -2,-1 + 1093: -6,-4 + 1109: -22,-5 + 1123: -10,10 + 1124: -8,12 + 1125: -7,10 + 1126: -7,10 + 1153: 22,15 + 1154: 22,18 + 1155: 22,12 + 1156: 17,16 + 1157: 13,16 + 1158: 10,12 + 1159: 8,9 + 1160: 13,19 + 1161: 12,22 + 1162: 13,25 + 1163: 9,25 + 1164: 10,25 + 1332: 40,-10 + 1453: 34,-15 + 1454: 33,-17 + 1455: 25,-5 + 1456: 26,-4 + 2066: -12,-23 + 2070: 12,-28 + 2152: -5,-48 + 2153: -4,-47 + 2154: 1,-46 + 2155: -1,-46 + 2156: -3,-48 + 2157: -3,-40 + 2158: 1,-43 + 2159: -3,-39 + 2160: -6,-40 + 2161: -7,-40 + 2162: -8,-40 + 2163: -6,-38 + 2164: -3,-39 + 2165: 1,-43 + 2166: 1,-39 + 2167: 0,-38 + 2168: -3,-42 + 2169: 2,-44 + 2170: -1,-47 + 2171: -3,-48 + 2172: 0,-50 + 2173: -3,-51 + 2174: -3,-51 + 2175: -4,-50 + 2176: -6,-50 + 2177: -8,-49 + 2178: -9,-48 + 2179: -8,-49 + 2180: -8,-51 + 2181: -8,-52 + 2182: -8,-52 + 2183: 0,-52 + 2184: 1,-51 + 2310: 23,25 + 2315: 22,25 + 2345: 48,5 + 2348: 47,2 + 2351: 57,4 + 2499: -25,-9 + 2501: -43,-9 + 2504: -40,-15 + 2511: -42,-3 - node: color: '#FFFFFFFF' id: FlowersBROne decals: - 874: -28,24 - 875: -17,32 + 678: -28,24 + 679: -17,32 + 2532: -53.282486,10.030818 - node: cleanable: True color: '#FFFFFFFF' id: FlowersBROne decals: - 2109: -20,4 + 1848: -20,4 - node: color: '#FFFFFFFF' id: FlowersBRTwo decals: - 829: -2,-3 - 1218: -16,39 + 635: -2,-3 + 987: -16,39 + 2530: -53.629707,8.891929 + 2537: -53.706097,9.600263 - node: color: '#FFFFFFFF' id: Flowersbr1 decals: - 883: 15,2 - 884: 37,-11 - 885: 33,-19 + 687: 15,2 + 688: 37,-11 + 689: 33,-19 + 2476: -18,3 + - node: + color: '#FFFFFFFF' + id: Flowersbr2 + decals: + 2473: -18,4 + 2523: -54,10 + 2524: -52,9 - node: color: '#FFFFFFFF' id: Flowerspv1 decals: - 890: 34,-19 + 694: 34,-19 + 2528: -53,9 - node: color: '#FFFFFFFF' id: Flowerspv2 decals: - 831: 2,2 - 877: -18,27 - 889: 34,-19 - 1929: -15.033748,27.036722 + 637: 2,2 + 681: -18,27 + 693: 34,-19 + 1668: -15.033748,27.036722 + 2474: -18,4 + 2526: -53,10 + 2538: -52.99776,8.905818 - node: color: '#FFFFFFFF' id: Flowerspv3 decals: - 832: 2,3 - 891: 34,-19 - 892: 37,-13 + 638: 2,3 + 695: 34,-19 + 696: 37,-13 + 2531: -52.643597,8.926651 + 2533: -53.581097,10.00304 + 2534: -51.91443,10.00304 + 2535: -52.13665,9.496096 - node: color: '#FFFFFFFF' id: Flowersy1 decals: - 886: 34,-23 + 690: 34,-23 + 2525: -54,9 + 2529: -53.469986,9.489151 - node: color: '#FFFFFFFF' id: Flowersy2 decals: - 825: -2,-2 - 1928: -16.064997,26.932484 + 631: -2,-2 + 1667: -16.064997,26.932484 + 2527: -52,10 + 2536: -52.77554,10.100263 - node: color: '#FFFFFFFF' id: Flowersy3 decals: - 876: -17,27 - 887: 34,-23 - 888: 33,-23 + 680: -17,27 + 691: 34,-23 + 692: 33,-23 + 2475: -18,3 - node: cleanable: True color: '#FFFFFFFF' id: Flowersy3 decals: - 2110: -19,4 + 1849: -19,4 - node: color: '#52B4E996' id: FullTileOverlayGreyscale decals: - 596: 11,8 - 597: 10,8 - 598: 10,7 - 615: 23,6 - 616: 19,8 - 617: 20,8 - 618: 21,8 - 619: 23,8 - 620: 17,6 - 621: 17,8 - 622: 20,6 - 623: 19,6 - 624: 21,6 - 625: 20,7 - 632: 11,7 - 2550: 28,16 - 2551: 28,15 - 2552: 28,14 - 2553: 28,13 - 2554: 28,12 - 2555: 28,11 - 2556: 25,16 - 2557: 25,15 - 2558: 25,14 - 2559: 25,13 - 2560: 25,12 - 2561: 25,11 - 2562: 26,14 - 2563: 26,13 - 2564: 27,14 - 2565: 27,13 + 403: 11,8 + 404: 10,8 + 405: 10,7 + 422: 23,6 + 423: 19,8 + 424: 20,8 + 425: 21,8 + 426: 23,8 + 427: 17,6 + 428: 17,8 + 429: 20,6 + 430: 19,6 + 431: 21,6 + 432: 20,7 + 439: 11,7 + 2289: 28,16 + 2290: 28,15 + 2291: 28,14 + 2292: 28,13 + 2293: 28,12 + 2294: 28,11 + 2295: 25,16 + 2296: 25,15 + 2297: 25,14 + 2298: 25,13 + 2299: 25,12 + 2300: 25,11 + 2301: 26,14 + 2302: 26,13 + 2303: 27,14 + 2304: 27,13 - node: color: '#6B2833DD' id: FullTileOverlayGreyscale decals: - 2459: -25,40 + 2198: -25,40 - node: color: '#D381C996' id: FullTileOverlayGreyscale decals: - 919: -40,28 - 920: -40,27 - 921: -40,26 + 708: -40,28 + 709: -40,27 + 710: -40,26 - node: color: '#DE3A3A96' id: FullTileOverlayGreyscale decals: - 2462: -23,40 + 2201: -23,40 - node: color: '#EFB34196' id: FullTileOverlayGreyscale decals: - 1958: -26,-80 - 1959: -25,-80 - 1960: -25,-74 - 1961: -26,-74 - 2548: -55,44 - 2549: -55,42 + 1697: -26,-80 + 1698: -25,-80 + 1699: -25,-74 + 1700: -26,-74 + 2287: -55,44 + 2288: -55,42 - node: color: '#FFFFFFFF' id: Grassa2 decals: - 1238: -62.547764,-5.606035 + 1007: -62.547764,-5.606035 - node: cleanable: True color: '#FFFFFFFF' id: Grassa4 decals: - 2103: -19,3 - 2104: -21,4 - 2105: -22,3 + 1842: -19,3 + 1843: -21,4 + 1844: -22,3 - node: color: '#FFFFFFFF' id: Grassb4 decals: - 1230: -61.648212,-5.625451 - 1231: -60.616962,-5.625451 + 999: -61.648212,-5.625451 + 1000: -60.616962,-5.625451 - node: color: '#FFFFFFFF' id: Grassd1 decals: - 1224: -61.632587,-7.500451 - 1225: -59.273212,-9.375451 - 1229: -60.866962,-6.812951 + 993: -61.632587,-7.500451 + 994: -59.273212,-9.375451 + 998: -60.866962,-6.812951 - node: color: '#FFFFFFFF' id: Grassd2 decals: - 1247: -62.77488,-9.999852 + 1016: -62.77488,-9.999852 - node: cleanable: True color: '#FFFFFFFF' id: Grassd2 decals: - 2106: -21,3 + 1845: -21,3 - node: color: '#FFFFFFFF' id: Grassd3 decals: - 1232: -60.788837,-9.828576 - 1233: -61.304462,-10.078576 + 1001: -60.788837,-9.828576 + 1002: -61.304462,-10.078576 - node: color: '#FFFFFFFF' id: Grasse2 decals: - 1226: -61.663837,-9.953576 - 1227: -59.320087,-7.359826 - 1228: -59.523212,-6.828576 - 1239: -63.25089,-6.387285 - 1240: -63.266514,-5.68416 - 1241: -62.735264,-6.262285 - 1242: -63.28214,-7.387285 + 995: -61.663837,-9.953576 + 996: -59.320087,-7.359826 + 997: -59.523212,-6.828576 + 1008: -63.25089,-6.387285 + 1009: -63.266514,-5.68416 + 1010: -62.735264,-6.262285 + 1011: -63.28214,-7.387285 - node: color: '#FFFFFFFF' id: Grasse3 decals: - 1234: -58.820087,-10.078576 - 1235: -58.773212,-9.578576 - 1236: -58.429462,-9.406701 - 1237: -58.570087,-8.687951 + 1003: -58.820087,-10.078576 + 1004: -58.773212,-9.578576 + 1005: -58.429462,-9.406701 + 1006: -58.570087,-8.687951 - node: color: '#334E6DC8' id: HalfTileOverlayGreyscale decals: - 437: -7,27 - 438: -5,27 - 439: -6,27 - 440: -4,27 - 441: -3,27 - 442: -6,31 - 443: -5,31 - 1564: -4,31 + 263: -7,27 + 264: -5,27 + 265: -6,27 + 266: -4,27 + 267: -3,27 + 268: -6,31 + 269: -5,31 + 1306: -4,31 - node: color: '#52B4E996' id: HalfTileOverlayGreyscale decals: - 2143: 12,2 - 2144: 13,2 + 1882: 12,2 + 1883: 13,2 - node: color: '#9FED5896' id: HalfTileOverlayGreyscale decals: - 2119: -23,1 - 2120: -13,1 - 2126: -11,1 - 2127: -9,1 - 2128: -7,1 - 2138: -19,1 - 2139: -17,1 - 2140: -15,1 + 1858: -23,1 + 1859: -13,1 + 1865: -11,1 + 1866: -9,1 + 1867: -7,1 + 1877: -19,1 + 1878: -17,1 + 1879: -15,1 - node: color: '#A4610696' id: HalfTileOverlayGreyscale decals: - 2254: 13,-13 - 2276: 15,-25 - 2277: 16,-25 - 2278: 17,-25 - 2290: 5,-3 - 2291: 6,-3 - 2292: 7,-3 - 2293: 8,-3 + 1993: 13,-13 + 2015: 15,-25 + 2016: 16,-25 + 2017: 17,-25 + 2029: 5,-3 + 2030: 6,-3 + 2031: 7,-3 + 2032: 8,-3 - node: color: '#EFB34196' id: HalfTileOverlayGreyscale decals: - 2309: -14,-24 - 2310: -13,-24 - 2311: -12,-24 - 2312: -11,-24 + 2048: -14,-24 + 2049: -13,-24 + 2050: -12,-24 + 2051: -11,-24 - node: color: '#334E6DC8' id: HalfTileOverlayGreyscale180 decals: - 434: -6,29 - 435: -5,29 - 436: -4,29 + 260: -6,29 + 261: -5,29 + 262: -4,29 - node: color: '#A4610696' id: HalfTileOverlayGreyscale180 decals: - 2214: 14,-2 - 2215: 11,-2 - 2247: 6,-14 - 2248: 4,-14 - 2249: 3,-14 - 2251: 7,-14 - 2259: 13,-11 - 2270: 15,-33 - 2271: 16,-33 - 2272: 17,-33 - 2273: 19,-33 - 2274: 20,-33 - 2275: 21,-33 - 2280: 7,-8 - 2281: 6,-8 - 2282: 5,-8 - 2283: 4,-8 - 2284: 3,-8 - 2285: 2,-8 - 2289: 8,-8 - 2381: 5,-1 - 2382: 7,-1 - 2383: 9,-1 + 1953: 14,-2 + 1954: 11,-2 + 1986: 6,-14 + 1987: 4,-14 + 1988: 3,-14 + 1990: 7,-14 + 1998: 13,-11 + 2009: 15,-33 + 2010: 16,-33 + 2011: 17,-33 + 2012: 19,-33 + 2013: 20,-33 + 2014: 21,-33 + 2019: 7,-8 + 2020: 6,-8 + 2021: 5,-8 + 2022: 4,-8 + 2023: 3,-8 + 2024: 2,-8 + 2028: 8,-8 + 2120: 5,-1 + 2121: 7,-1 + 2122: 9,-1 - node: color: '#DE3A3A96' id: HalfTileOverlayGreyscale180 decals: - 175: -20,-1 - 180: -24,-1 - 181: -23,-1 - 182: -25,-1 + 81: -20,-1 + 83: -24,-1 + 84: -23,-1 + 85: -25,-1 - node: color: '#EFB34196' id: HalfTileOverlayGreyscale180 decals: - 274: -3,-29 - 275: -4,-29 - 276: -2,-29 - 277: 0,-29 - 278: -1,-29 - 279: 1,-29 - 280: 3,-29 - 281: 4,-29 - 282: 5,-29 - 1682: 2,-29 - 2298: -15,-20 - 2299: -14,-20 - 2300: -13,-20 - 2301: -12,-20 - 2313: -14,-23 - 2314: -13,-23 - 2315: -12,-23 - 2316: -11,-23 + 104: -3,-29 + 105: -4,-29 + 106: -2,-29 + 107: 0,-29 + 108: -1,-29 + 109: 1,-29 + 110: 3,-29 + 111: 4,-29 + 112: 5,-29 + 1423: 2,-29 + 2037: -15,-20 + 2038: -14,-20 + 2039: -13,-20 + 2040: -12,-20 + 2052: -14,-23 + 2053: -13,-23 + 2054: -12,-23 + 2055: -11,-23 - node: color: '#334E6DC8' id: HalfTileOverlayGreyscale270 decals: - 447: -21,35 - 1574: -21,33 - 1575: -21,34 - 2377: 23,-5 - 2378: 23,-4 + 273: -21,35 + 1316: -21,33 + 1317: -21,34 + 2116: 23,-5 + 2117: 23,-4 - node: color: '#6B2833DD' id: HalfTileOverlayGreyscale270 decals: - 2460: -24,40 + 2199: -24,40 - node: color: '#9FED5896' id: HalfTileOverlayGreyscale270 decals: - 2078: 24,-16 - 2079: 24,-15 - 2080: 24,-14 - 2081: 24,-13 - 2082: 24,-12 - 2129: -6,2 - 2130: -6,4 - 2131: -5,8 - 2132: -5,10 - 2133: -5,12 - 2134: -5,14 + 1817: 24,-16 + 1818: 24,-15 + 1819: 24,-14 + 1820: 24,-13 + 1821: 24,-12 + 1868: -6,2 + 1869: -6,4 + 1870: -5,8 + 1871: -5,10 + 1872: -5,12 + 1873: -5,14 - node: color: '#A4610696' id: HalfTileOverlayGreyscale270 decals: - 2287: 1,-7 - 2288: 1,-6 + 2026: 1,-7 + 2027: 1,-6 - node: color: '#D381C996' id: HalfTileOverlayGreyscale270 decals: - 455: -25,27 - 456: -25,28 - 462: -25,31 - 463: -25,30 - 464: -25,25 - 465: -25,24 - 1962: -18,-79 - 1963: -18,-78 - 1964: -18,-76 - 1965: -18,-75 + 281: -25,27 + 282: -25,28 + 288: -25,31 + 289: -25,30 + 290: -25,25 + 291: -25,24 + 1701: -18,-79 + 1702: -18,-78 + 1703: -18,-76 + 1704: -18,-75 - node: color: '#DE3A3A96' id: HalfTileOverlayGreyscale270 decals: - 166: -19,-10 - 167: -19,-9 - 168: -19,-8 - 172: -19,-6 - 173: -19,-2 - 186: -19,-3 + 76: -19,-10 + 77: -19,-9 + 78: -19,-8 + 79: -19,-6 + 80: -19,-2 + 86: -19,-3 - node: color: '#EFB34196' id: HalfTileOverlayGreyscale270 decals: - 270: -5,-25 - 271: -5,-26 - 272: -5,-27 - 273: -5,-28 - 1952: -30,-76 - 1953: -30,-75 - 1954: -30,-74 - 1955: -30,-78 - 1956: -30,-79 - 1957: -30,-80 - 2317: -15,-22 - 2318: -15,-25 + 100: -5,-25 + 101: -5,-26 + 102: -5,-27 + 103: -5,-28 + 1691: -30,-76 + 1692: -30,-75 + 1693: -30,-74 + 1694: -30,-78 + 1695: -30,-79 + 1696: -30,-80 + 2056: -15,-22 + 2057: -15,-25 - node: color: '#334E6DC8' id: HalfTileOverlayGreyscale90 decals: - 444: -20,34 - 445: -20,35 - 446: -20,33 - 448: -23,33 - 449: -23,34 - 450: -23,32 - 457: -23,35 - 458: -23,36 + 270: -20,34 + 271: -20,35 + 272: -20,33 + 274: -23,33 + 275: -23,34 + 276: -23,32 + 283: -23,35 + 284: -23,36 - node: color: '#9FED5896' id: HalfTileOverlayGreyscale90 decals: - 2121: -24,2 + 1860: -24,2 - node: color: '#A4610696' id: HalfTileOverlayGreyscale90 decals: - 2233: 12,-25 - 2234: 12,-24 - 2235: 12,-23 + 1972: 12,-25 + 1973: 12,-24 + 1974: 12,-23 - node: color: '#D381C996' id: HalfTileOverlayGreyscale90 decals: - 1966: -15,-75 - 1967: -15,-76 - 1968: -15,-78 - 1969: -15,-79 + 1705: -15,-75 + 1706: -15,-76 + 1707: -15,-78 + 1708: -15,-79 - node: color: '#DE3A3A96' id: HalfTileOverlayGreyscale90 decals: - 2461: -24,40 + 2200: -24,40 - node: color: '#EFB34196' id: HalfTileOverlayGreyscale90 decals: - 345: -7,-17 - 346: -7,-18 - 347: -7,-19 - 348: -7,-20 - 349: -7,-21 - 350: -7,-22 - 351: -7,-23 - 352: -7,-25 - 893: -7,-16 - 1944: -27,-78 - 1945: -27,-79 - 1946: -27,-80 - 1947: -27,-81 - 1948: -27,-76 - 1949: -27,-75 - 1950: -27,-74 - 1951: -27,-73 - 2302: -11,-19 - 2303: -11,-18 - 2304: -11,-17 - 2305: -11,-16 + 171: -7,-17 + 172: -7,-18 + 173: -7,-19 + 174: -7,-20 + 175: -7,-21 + 176: -7,-22 + 177: -7,-23 + 178: -7,-25 + 697: -7,-16 + 1683: -27,-78 + 1684: -27,-79 + 1685: -27,-80 + 1686: -27,-81 + 1687: -27,-76 + 1688: -27,-75 + 1689: -27,-74 + 1690: -27,-73 + 2041: -11,-19 + 2042: -11,-18 + 2043: -11,-17 + 2044: -11,-16 - node: color: '#FFFFFFFF' id: LoadingArea decals: - 2151: 22,-32 + 1890: 22,-32 - node: cleanable: True angle: -3.141592653589793 rad color: '#FFFFFFFF' id: LoadingAreaGreyscale decals: - 2180: 18,-31 + 1919: 18,-31 - node: angle: 3.141592653589793 rad color: '#FFFFFFFF' id: LoadingAreaGreyscale decals: - 79: 17,-1 + 74: 17,-1 + - node: + color: '#DE3A3A96' + id: MiniTileCheckerAOverlay + decals: + 2423: -41,-18 + 2424: -40,-18 + 2425: -40,-19 + 2426: -41,-19 + 2427: -36,-18 + 2428: -35,-18 + 2429: -35,-19 + 2430: -36,-19 + 2431: -33,-15 + 2432: -32,-15 + 2433: -32,-16 + 2434: -33,-16 + - node: + color: '#DE3A3A96' + id: MiniTileCheckerBOverlay + decals: + 2450: -29,-5 + 2451: -29,-6 + 2452: -29,-7 - node: color: '#EFB34196' id: MiniTileDiagonalCheckerAOverlay decals: - 2493: -7,-27 - 2494: -7,-28 - 2495: -7,-29 - 2496: -7,-30 - 2497: -6,-30 - 2498: -6,-31 - 2499: -6,-32 - 2500: -6,-33 - 2501: -6,-34 + 2232: -7,-27 + 2233: -7,-28 + 2234: -7,-29 + 2235: -7,-30 + 2236: -6,-30 + 2237: -6,-31 + 2238: -6,-32 + 2239: -6,-33 + 2240: -6,-34 + - node: + color: '#DE3A3A96' + id: MiniTileLineOverlayE + decals: + 2444: -28,-5 + 2445: -28,-6 + 2446: -28,-7 + - node: + color: '#DE3A3A96' + id: MiniTileLineOverlayW + decals: + 2447: -30,-7 + 2448: -30,-6 + 2449: -30,-5 - node: color: '#334E6DC8' id: MiniTileOverlay decals: - 2533: -5,41 - 2534: -4,41 - 2535: -2,42 + 2272: -5,41 + 2273: -4,41 + 2274: -2,42 - node: color: '#EFB34196' id: MiniTileWhiteCornerNw decals: - 265: -15,-16 + 95: -15,-16 - node: color: '#EFB34196' id: MiniTileWhiteInnerNw decals: - 268: -13,-16 - 269: -15,-18 + 98: -13,-16 + 99: -15,-18 - node: color: '#EFB34196' id: MiniTileWhiteLineN decals: - 267: -14,-16 + 97: -14,-16 - node: color: '#D381C996' id: MiniTileWhiteLineW decals: - 453: -25,21 - 454: -25,22 + 279: -25,21 + 280: -25,22 - node: color: '#EFB34196' id: MiniTileWhiteLineW decals: - 266: -15,-17 + 96: -15,-17 - node: color: '#EFB34196' id: PavementCheckerAOverlay decals: - 2528: -5,-19 - 2529: -4,-19 - 2530: -3,-19 - 2531: -2,-19 - 2532: -1,-19 + 2267: -5,-19 + 2268: -4,-19 + 2269: -3,-19 + 2270: -2,-19 + 2271: -1,-19 - node: color: '#334E6DC8' id: QuarterTileOverlayGreyscale decals: - 536: -50,39 - 537: -50,40 - 538: -50,41 - 539: -33,-13 - 540: -33,-14 - 541: -33,-15 - 542: -33,-15 - 543: -33,-16 - 562: -4,-32 - 563: -4,-34 + 362: -50,39 + 363: -50,40 + 364: -50,41 + 369: -4,-32 + 370: -4,-34 - node: color: '#52B4E996' id: QuarterTileOverlayGreyscale decals: - 739: 8,17 - 740: 8,18 - 741: 8,22 - 742: 8,21 - 743: 8,20 - 744: 8,19 + 546: 8,17 + 547: 8,18 + 548: 8,22 + 549: 8,21 + 550: 8,20 + 551: 8,19 - node: color: '#9FED5896' id: QuarterTileOverlayGreyscale decals: - 930: 17,-5 - 931: 17,-4 - 2125: -6,1 - 2136: -6,6 + 719: 17,-5 + 720: 17,-4 + 1864: -6,1 + 1875: -6,6 - node: color: '#9FED58FF' id: QuarterTileOverlayGreyscale decals: - 932: 17,-5 - 933: 17,-4 - 934: 17,-6 - 935: 17,-7 + 721: 17,-5 + 722: 17,-4 + 723: 17,-6 + 724: 17,-7 - node: color: '#A4610696' id: QuarterTileOverlayGreyscale decals: - 2255: 14,-13 + 1994: 14,-13 - node: color: '#DE3A3A96' id: QuarterTileOverlayGreyscale decals: - 2123: -19,-4 + 1862: -19,-4 - node: color: '#334E6DC8' id: QuarterTileOverlayGreyscale180 decals: - 451: -3,27 - 533: -47,40 - 534: -47,41 - 535: -47,39 - 544: -31,-16 - 545: -31,-13 - 554: -31,-15 - 555: -31,-14 - 564: -2,-34 - 565: -2,-32 + 277: -3,27 + 359: -47,40 + 360: -47,41 + 361: -47,39 + 371: -2,-34 + 372: -2,-32 - node: color: '#52B4E996' id: QuarterTileOverlayGreyscale180 decals: - 734: 10,18 - 735: 10,19 - 736: 10,20 - 737: 10,21 - 738: 10,22 + 541: 10,18 + 542: 10,19 + 543: 10,20 + 544: 10,21 + 545: 10,22 - node: color: '#9FED58FF' id: QuarterTileOverlayGreyscale180 decals: - 936: 21,-5 - 937: 21,-4 + 725: 21,-5 + 726: 21,-4 - node: color: '#A4610696' id: QuarterTileOverlayGreyscale180 decals: - 2237: 12,-27 - 2238: 12,-22 - 2250: 7,-12 - 2253: 8,-11 - 2257: 12,-11 - 2385: 15,-1 + 1976: 12,-27 + 1977: 12,-22 + 1989: 7,-12 + 1992: 8,-11 + 1996: 12,-11 + 2124: 15,-1 - node: color: '#334E6DC8' id: QuarterTileOverlayGreyscale270 decals: - 452: -7,27 - 745: 8,19 - 746: 8,20 - 747: 8,21 - 748: 8,22 - 749: 8,18 - 750: 8,17 - 2379: 23,-3 + 278: -7,27 + 552: 8,19 + 553: 8,20 + 554: 8,21 + 555: 8,22 + 556: 8,18 + 557: 8,17 + 2118: 23,-3 - node: color: '#334E6DFF' id: QuarterTileOverlayGreyscale270 decals: - 924: 17,-7 - 925: 17,-6 - 926: 17,-5 - 927: 17,-4 - - node: - color: '#9C0000FF' - id: QuarterTileOverlayGreyscale270 - decals: - 546: -33,-15 - 547: -33,-16 - 548: -33,-14 - 549: -33,-13 + 713: 17,-7 + 714: 17,-6 + 715: 17,-5 + 716: 17,-4 - node: color: '#9FED5896' id: QuarterTileOverlayGreyscale270 decals: - 2137: -6,5 + 1876: -6,5 - node: color: '#A4610696' id: QuarterTileOverlayGreyscale270 decals: - 2258: 14,-11 - 2384: 10,-1 + 1997: 14,-11 + 2123: 10,-1 - node: color: '#D381C996' id: QuarterTileOverlayGreyscale270 decals: - 527: -50,40 - 528: -50,41 - 529: -50,39 + 353: -50,40 + 354: -50,41 + 355: -50,39 - node: color: '#DE3A3A96' id: QuarterTileOverlayGreyscale270 decals: - 178: -19,-1 - 2124: -19,-5 + 82: -19,-1 + 1863: -19,-5 - node: color: '#EFB34196' id: QuarterTileOverlayGreyscale270 decals: - 560: -4,-32 - 561: -4,-34 + 367: -4,-32 + 368: -4,-34 - node: color: '#334E6DC8' id: QuarterTileOverlayGreyscale90 decals: - 459: -23,31 - 751: 10,18 - 752: 10,19 - 753: 10,20 - 754: 10,21 - 755: 10,22 + 285: -23,31 + 558: 10,18 + 559: 10,19 + 560: 10,20 + 561: 10,21 + 562: 10,22 - node: color: '#334E6DFF' id: QuarterTileOverlayGreyscale90 decals: - 928: 21,-5 - 929: 21,-4 - - node: - color: '#9C0000FF' - id: QuarterTileOverlayGreyscale90 - decals: - 550: -31,-14 - 551: -31,-13 - 552: -31,-15 - 553: -31,-16 + 717: 21,-5 + 718: 21,-4 - node: color: '#9FED5896' id: QuarterTileOverlayGreyscale90 decals: - 2122: -24,1 + 1861: -24,1 - node: color: '#A4610696' id: QuarterTileOverlayGreyscale90 decals: - 2236: 12,-26 - 2252: 7,-13 - 2256: 12,-13 + 1975: 12,-26 + 1991: 7,-13 + 1995: 12,-13 - node: color: '#D381C996' id: QuarterTileOverlayGreyscale90 decals: - 530: -47,41 - 531: -47,40 - 532: -47,39 + 356: -47,41 + 357: -47,40 + 358: -47,39 - node: color: '#EFB34196' id: QuarterTileOverlayGreyscale90 decals: - 558: -2,-32 - 559: -2,-34 + 365: -2,-32 + 366: -2,-34 - node: color: '#FFFFFFFF' id: Rock02 decals: - 1243: -61.96964,-10.30916 + 1012: -61.96964,-10.30916 - node: color: '#FFFFFFFF' id: Rock05 decals: - 1244: -62.90714,-5.93416 + 1013: -62.90714,-5.93416 - node: color: '#FFFFFFFF' id: Rust decals: - 1287: -59,-5 - 1288: -58,-5 + 1046: -59,-5 + 1047: -58,-5 - node: color: '#FFFFFFFF' id: SpaceStationSign1 decals: - 69: 31,-21 + 64: 31,-21 - node: color: '#FFFFFFFF' id: SpaceStationSign2 decals: - 70: 32,-21 + 65: 32,-21 - node: color: '#FFFFFFFF' id: SpaceStationSign3 decals: - 71: 33,-21 + 66: 33,-21 - node: color: '#FFFFFFFF' id: SpaceStationSign4 decals: - 72: 34,-21 + 67: 34,-21 - node: color: '#FFFFFFFF' id: SpaceStationSign5 decals: - 73: 35,-21 + 68: 35,-21 - node: color: '#FFFFFFFF' id: SpaceStationSign6 decals: - 75: 36,-21 + 70: 36,-21 - node: color: '#FFFFFFFF' id: SpaceStationSign7 decals: - 74: 37,-21 + 69: 37,-21 - node: color: '#FFFFFFFF' id: StandClear decals: - 227: -38,-11 - 228: -39,-11 - 1264: -52,-10 - 1265: -52,-9 - 2536: -5,39 - 2537: -4,39 + 1030: -52,-10 + 1031: -52,-9 + 2275: -5,39 + 2276: -4,39 + - node: + angle: 1.5707963267948966 rad + color: '#FFFFFFFF' + id: StandClearGreyscale + decals: + 2358: -44,-17 + 2359: -44,-18 + - node: + color: '#00FFFFFF' + id: ThinNorthOverlayTrimline + decals: + 2542: 33,-12 + - node: + color: '#FF0000FF' + id: ThinNorthOverlayTrimline + decals: + 2539: 35,-4 + - node: + color: '#00FFFFFF' + id: ThinSouthOverlayTrimline + decals: + 2541: 33,-12 + - node: + color: '#FF0000FF' + id: ThinSouthOverlayTrimline + decals: + 2540: 35,-4 - node: color: '#52B4E996' id: ThreeQuarterTileOverlayGreyscale decals: - 2141: 11,2 + 1880: 11,2 - node: color: '#9FED5896' id: ThreeQuarterTileOverlayGreyscale decals: - 2135: -6,7 + 1874: -6,7 - node: color: '#EFB34196' id: ThreeQuarterTileOverlayGreyscale decals: - 2308: -15,-24 + 2047: -15,-24 - node: color: '#A4610696' id: ThreeQuarterTileOverlayGreyscale180 decals: - 2213: 15,-2 - 2240: 12,-28 + 1952: 15,-2 + 1979: 12,-28 - node: color: '#EFB34196' id: ThreeQuarterTileOverlayGreyscale180 decals: - 2306: -11,-20 + 2045: -11,-20 - node: color: '#A4610696' id: ThreeQuarterTileOverlayGreyscale270 decals: - 2212: 10,-2 - 2286: 1,-8 + 1951: 10,-2 + 2025: 1,-8 - node: color: '#EFB34196' id: ThreeQuarterTileOverlayGreyscale270 decals: - 2307: -15,-23 + 2046: -15,-23 - node: color: '#52B4E996' id: ThreeQuarterTileOverlayGreyscale90 decals: - 2142: 14,2 + 1881: 14,2 - node: color: '#A4610696' id: ThreeQuarterTileOverlayGreyscale90 decals: - 2239: 12,-20 + 1978: 12,-20 - node: color: '#FFFFFFFF' id: WarnBox decals: - 47: -4,-25 - 48: -3,-25 - 2357: -13,-25 + 42: -4,-25 + 43: -3,-25 + 2096: -13,-25 - node: color: '#D381C9FF' id: WarnCornerGreyscaleNW decals: - 1980: -11,-75 - 1987: -12,-76 + 1719: -11,-75 + 1726: -12,-76 - node: color: '#D381C9FF' id: WarnCornerGreyscaleSW decals: - 1979: -11,-79 - 1988: -12,-78 + 1718: -11,-79 + 1727: -12,-78 - node: color: '#D381C9FF' id: WarnCornerSmallGreyscaleNE decals: - 1993: -10,-75 + 1732: -10,-75 - node: color: '#D381C9FF' id: WarnCornerSmallGreyscaleNW decals: - 1994: -10,-75 - 1995: -6,-75 + 1733: -10,-75 + 1734: -6,-75 - node: color: '#D381C9FF' id: WarnCornerSmallGreyscaleSE decals: - 1992: -10,-79 + 1731: -10,-79 - node: color: '#D381C9FF' id: WarnCornerSmallGreyscaleSW decals: - 1989: -11,-78 - 1990: -10,-79 - 1991: -6,-79 + 1728: -11,-78 + 1729: -10,-79 + 1730: -6,-79 - node: color: '#FFFFFFFF' id: WarnEndE decals: - 2320: -11,-22 + 2059: -11,-22 - node: color: '#D381C9FF' id: WarnEndGreyscaleN decals: - 1974: -6,-74 - 1975: -10,-74 + 1713: -6,-74 + 1714: -10,-74 - node: color: '#D381C9FF' id: WarnEndGreyscaleS decals: - 1976: -10,-80 - 1977: -6,-80 + 1715: -10,-80 + 1716: -6,-80 - node: cleanable: True color: '#FFFFFFFF' id: WarnEndN decals: - 2159: 15,-11 - 2175: 22,-33 - 2181: 18,-32 - 2359: 15,-6 + 1898: 15,-11 + 1914: 22,-33 + 1920: 18,-32 + 2098: 15,-6 - node: cleanable: True color: '#FFFFFFFF' id: WarnEndS decals: - 2160: 15,-9 - 2358: 15,-7 + 1899: 15,-9 + 2097: 15,-7 - node: color: '#FFFFFFFF' id: WarnEndW decals: - 2319: -13,-22 + 2058: -13,-22 + - node: + color: '#FF0000FF' + id: WarnFull + decals: + 2519: 26,-6 + 2520: 28,-6 - node: cleanable: True color: '#FFFFFFFF' id: WarnFull decals: - 2158: 15,-10 - 2161: 15,-13 - 2162: 15,-14 - 2163: 15,-15 - 2164: 14,-15 - 2165: 13,-15 - 2166: 12,-15 - 2167: 11,-18 - 2168: 11,-20 - 2169: 11,-21 - 2170: 11,-22 - 2171: 11,-23 - 2172: 11,-24 - 2173: 11,-25 - 2174: 11,-26 - 2176: 18,-35 - 2177: 22,-35 - 2182: 18,-33 + 1897: 15,-10 + 1900: 15,-13 + 1901: 15,-14 + 1902: 15,-15 + 1903: 14,-15 + 1904: 13,-15 + 1905: 12,-15 + 1906: 11,-18 + 1907: 11,-20 + 1908: 11,-21 + 1909: 11,-22 + 1910: 11,-23 + 1911: 11,-24 + 1912: 11,-25 + 1913: 11,-26 + 1915: 18,-35 + 1916: 22,-35 + 1921: 18,-33 - node: color: '#FFFFFFFF' id: WarnLineE decals: - 2189: -42,41 + 1928: -42,41 + 2360: -45,-17 + 2361: -45,-18 - node: color: '#D381C9FF' id: WarnLineGreyscaleE decals: - 1971: -6,-78 - 1972: -6,-77 - 1973: -6,-76 - 1978: -6,-79 - 1996: -6,-75 + 1710: -6,-78 + 1711: -6,-77 + 1712: -6,-76 + 1717: -6,-79 + 1735: -6,-75 - node: color: '#D381C9FF' id: WarnLineGreyscaleN decals: - 1981: -9,-75 - 1982: -8,-75 - 1983: -7,-75 + 1720: -9,-75 + 1721: -8,-75 + 1722: -7,-75 - node: color: '#D381C9FF' id: WarnLineGreyscaleS decals: - 1984: -9,-79 - 1985: -8,-79 - 1986: -7,-79 + 1723: -9,-79 + 1724: -8,-79 + 1725: -7,-79 - node: color: '#D381C9FF' id: WarnLineGreyscaleW decals: - 1970: -12,-77 + 1709: -12,-77 - node: color: '#FFFFFFFF' id: WarnLineN decals: - 2322: -12,-22 + 2061: -12,-22 + 2460: -42,-1 - node: color: '#FFFFFFFF' id: WarnLineS decals: - 2190: -43,41 + 1929: -43,41 + 2461: -60,14 + 2462: -60,13 + 2463: -60,12 + 2464: -60,22 + 2465: -60,21 + 2466: -60,20 - node: color: '#FFFFFFFF' id: WarnLineW decals: - 1255: 7,-40 - 1256: 6,-40 - 1257: 5,-40 - 2321: -12,-22 + 1024: 7,-40 + 1025: 6,-40 + 1026: 5,-40 + 2060: -12,-22 + 2459: -42,-3 - node: color: '#FFFFFFFF' id: WoodTrimThinCornerNw decals: - 731: 19,-6 + 538: 19,-6 - node: color: '#FFFFFFFF' id: WoodTrimThinCornerSw decals: - 38: -9,-10 - 40: -7,-8 + 33: -9,-10 + 35: -7,-8 - node: color: '#FFFFFFFF' id: WoodTrimThinEndE decals: - 42: -4,-8 + 37: -4,-8 - node: color: '#FFFFFFFF' id: WoodTrimThinEndN decals: - 39: -7,-5 + 34: -7,-5 - node: color: '#FFFFFFFF' id: WoodTrimThinInnerNe decals: - 45: -7,-8 - 2599: 28,14 + 40: -7,-8 + 2338: 28,14 - node: color: '#FFFFFFFF' id: WoodTrimThinInnerNw decals: - 2369: 9,-35 + 2108: 9,-35 - node: color: '#FFFFFFFF' id: WoodTrimThinInnerSw decals: - 2368: 9,-30 + 2107: 9,-30 - node: color: '#FFFFFFFF' id: WoodTrimThinLineE decals: - 46: -7,-7 - 51: 11,-30 - 52: 11,-31 - 53: 11,-32 - 54: 11,-33 - 386: -1,37 - 387: -1,38 - 388: -1,39 - 389: -1,40 - 567: -58,-4 - 568: -58,-3 - 569: -58,-2 - 570: -58,-2 - 571: -58,-1 - 572: -58,0 - 573: -58,1 - 574: -58,2 - 1245: -61.84464,-9.074785 - 1246: -62.988163,-9.100406 - 2360: 11,-35 - 2361: 11,-34 - 2597: 28,15 - 2598: 28,16 + 41: -7,-7 + 46: 11,-30 + 47: 11,-31 + 48: 11,-32 + 49: 11,-33 + 212: -1,37 + 213: -1,38 + 214: -1,39 + 215: -1,40 + 374: -58,-4 + 375: -58,-3 + 376: -58,-2 + 377: -58,-2 + 378: -58,-1 + 379: -58,0 + 380: -58,1 + 381: -58,2 + 1014: -61.84464,-9.074785 + 1015: -62.988163,-9.100406 + 2099: 11,-35 + 2100: 11,-34 + 2336: 28,15 + 2337: 28,16 - node: color: '#FFFFFFFF' id: WoodTrimThinLineN decals: - 43: -5,-8 - 44: -6,-8 - 732: 20,-6 + 38: -5,-8 + 39: -6,-8 + 539: 20,-6 - node: color: '#FFFFFFFF' id: WoodTrimThinLineS decals: - 35: -8,-10 - 36: -7,-10 - 37: -4,-10 - 1219: 21.001646,-5.1484656 + 30: -8,-10 + 31: -7,-10 + 32: -4,-10 + 988: 21.001646,-5.1484656 - node: cleanable: True color: '#FFFFFFFF' id: WoodTrimThinLineS decals: - 1340: -6,-10 - 1341: -5,-10 + 1099: -6,-10 + 1100: -5,-10 - node: color: '#FFFFFFFF' id: WoodTrimThinLineW decals: - 28: -9,-3 - 29: -9,-4 - 30: -9,-5 - 31: -9,-6 - 32: -9,-7 - 33: -9,-8 - 34: -9,-9 - 41: -7,-7 - 733: 19,-7 - 2364: 9,-34 - 2365: 9,-33 - 2366: 9,-32 - 2367: 9,-31 + 23: -9,-3 + 24: -9,-4 + 25: -9,-5 + 26: -9,-6 + 27: -9,-7 + 28: -9,-8 + 29: -9,-9 + 36: -7,-7 + 540: 19,-7 + 2103: 9,-34 + 2104: 9,-33 + 2105: 9,-32 + 2106: 9,-31 - node: color: '#FFFFFFFF' id: bushsnowa3 decals: - 836: 2,-3 - 837: -2,2 - 845: 37,-12 - 846: 37,-9 + 642: 2,-3 + 643: -2,2 + 651: 37,-12 + 652: 37,-9 + - node: + color: '#FFFFFFFF' + id: chevron + decals: + 2354: -32,-40 + - node: + angle: 1.5707963267948966 rad + color: '#FFFFFFFF' + id: chevron + decals: + 2355: -31,-39 + - node: + angle: 3.141592653589793 rad + color: '#FFFFFFFF' + id: chevron + decals: + 2356: -32,-38 + - node: + angle: 4.71238898038469 rad + color: '#FFFFFFFF' + id: chevron + decals: + 2357: -33,-39 + - node: + cleanable: True + color: '#FFFFFFFF' + id: clown + decals: + 2477: -31.213535,12.728952 + 2478: -31.088535,13.103952 + 2479: -30.79166,12.900827 + 2480: -30.72916,12.619577 - node: color: '#EFB34196' id: radiation decals: - 285: -14,-33 - 286: -14,-35 - 287: -17,-29 - 288: -19,-29 - 289: -14,-41 + 115: -14,-33 + 116: -14,-35 + 117: -17,-29 + 118: -19,-29 + 119: -14,-41 - node: cleanable: True color: '#FF0000FF' id: splatter decals: - 2600: 60.017178,3.4450765 + 2339: 60.017178,3.4450765 - type: GridAtmosphere version: 2 data: @@ -4543,18 +4498,17 @@ entities: 4,-3: 0: 61226 -4,0: - 0: 63231 + 0: 30463 -4,-1: 0: 65309 -5,0: - 0: 28927 + 0: 61695 -4,1: - 0: 65535 - -5,1: 0: 30719 + -5,1: + 0: 32767 -4,2: 2: 65520 - 0: 2 -5,2: 0: 32630 -4,3: @@ -4663,7 +4617,8 @@ entities: 0: 61713 1: 196 7,-1: - 0: 63743 + 0: 61440 + 3: 255 7,4: 0: 64399 8,0: @@ -4692,25 +4647,28 @@ entities: 6,-3: 0: 30583 6,-2: - 0: 63287 + 0: 30519 6,-5: 0: 62071 7,-4: - 0: 61567 + 0: 127 + 3: 61440 7,-3: - 0: 65535 + 3: 65535 7,-2: - 0: 65526 + 3: 65526 7,-5: 0: 29439 8,-4: - 0: 62703 + 0: 239 + 3: 61440 8,-3: - 0: 65407 + 3: 65407 8,-2: - 0: 65535 + 3: 65535 8,-1: - 0: 61951 + 3: 255 + 0: 61440 -5,4: 0: 56567 -4,5: @@ -4952,9 +4910,9 @@ entities: -8,-5: 0: 35769 -9,-5: - 0: 7088 + 0: 11184 -8,-4: - 0: 48123 + 0: 56541 -7,-8: 0: 61567 -7,-7: @@ -4967,13 +4925,13 @@ entities: 0: 39409 1: 4 -7,-4: - 0: 30583 + 0: 61166 -6,-7: 0: 65359 -6,-6: 0: 20479 -6,-5: - 0: 62207 + 0: 61695 -6,-8: 0: 61166 -6,-4: @@ -4983,15 +4941,15 @@ entities: -5,-9: 0: 65529 -9,-4: - 0: 48059 + 0: 62459 -8,-3: - 0: 65528 + 0: 53245 -9,-3: - 0: 65411 + 0: 20479 -8,-2: 0: 56793 -9,-2: - 0: 56796 + 0: 56797 -8,-1: 0: 47608 -9,-1: @@ -4999,7 +4957,7 @@ entities: -8,0: 0: 49075 -7,-3: - 0: 65303 + 0: 65008 -7,-2: 0: 56732 -7,-1: @@ -5007,7 +4965,7 @@ entities: -7,0: 0: 56796 -6,-3: - 0: 65327 + 0: 65423 -6,-2: 0: 65391 -6,-1: @@ -5081,15 +5039,15 @@ entities: -5,8: 0: 65020 -12,-4: - 0: 30583 + 0: 65295 -12,-5: - 0: 30704 + 0: 65520 -12,-3: - 0: 65394 + 0: 65392 -13,-3: 0: 65473 -12,-2: - 0: 47795 + 0: 12919 -13,-2: 0: 53468 -12,-1: @@ -5100,24 +5058,26 @@ entities: -12,0: 1: 45875 -11,-4: - 0: 63679 + 0: 64911 -11,-3: - 0: 65291 + 0: 32764 -11,-2: - 0: 65526 + 0: 63479 -11,-1: - 0: 65520 + 0: 61695 + -11,-5: + 0: 15282 -11,0: 0: 255 1: 61440 -10,-4: 0: 65535 -10,-3: - 0: 65535 + 0: 8191 -10,-2: - 0: 61412 + 0: 56575 -10,-1: - 0: 39312 + 0: 39057 -10,-5: 0: 21844 -10,0: @@ -5130,11 +5090,11 @@ entities: -12,2: 0: 32754 -13,2: - 0: 61160 + 0: 65528 -12,3: 0: 63351 -13,3: - 0: 61423 + 0: 61439 -12,4: 0: 30719 -11,1: @@ -5160,7 +5120,7 @@ entities: -12,5: 0: 65399 -13,5: - 0: 61423 + 0: 61439 -12,6: 0: 65520 -13,6: @@ -5208,8 +5168,6 @@ entities: 0: 61695 -11,-6: 0: 61695 - -11,-5: - 0: 2995 -11,-9: 0: 13107 -10,-8: @@ -5223,6 +5181,7 @@ entities: 1: 4 -9,-9: 0: 61937 + 1: 4 9,-6: 0: 65527 9,-5: @@ -5239,12 +5198,12 @@ entities: 10,-4: 0: 4353 1: 2184 - 9,-2: - 0: 61422 9,-1: 0: 65262 9,-3: 0: 61166 + 9,-2: + 0: 61166 9,0: 0: 33023 1: 12288 @@ -5343,31 +5302,39 @@ entities: -17,0: 1: 19554 -16,1: - 1: 4085 - -17,1: - 1: 3140 + 1: 245 -15,0: 0: 4095 -15,1: - 1: 4081 + 1: 8953 + -16,3: + 0: 2056 + -15,3: + 0: 3967 -15,-1: 0: 65518 + -15,2: + 1: 558 + -15,4: + 1: 1606 -14,0: 0: 255 1: 28672 -14,1: 1: 275 + 0: 19648 + 4: 32768 + -14,2: + 1: 1 0: 52416 + -14,3: + 0: 4095 -14,-1: 0: 61949 - -14,3: - 0: 3790 -14,4: - 1: 1092 + 0: 4095 -13,0: 0: 29047 - -14,2: - 1: 2176 -16,-4: 1: 5905 -16,-5: @@ -5375,15 +5342,10 @@ entities: -17,-4: 1: 22004 -16,-3: - 1: 49 + 1: 1 0: 65280 - -17,-3: - 1: 22005 -16,-2: 0: 4095 - 1: 12288 - -17,-2: - 1: 60079 -17,-1: 1: 11810 -15,-4: @@ -5416,7 +5378,7 @@ entities: -16,-6: 1: 62844 -17,-6: - 1: 33009 + 1: 241 -17,-5: 1: 19592 -16,-7: @@ -5439,24 +5401,34 @@ entities: -13,-9: 1: 4898 0: 32904 - -17,7: - 1: 52736 -16,7: 0: 57344 + 1: 192 + -17,7: + 1: 32768 -16,8: 0: 57582 + -16,5: + 0: 2056 + -15,5: + 0: 3967 -15,7: + 1: 240 0: 61440 -15,8: 0: 61166 + -15,6: + 1: 12 + -14,5: + 0: 4095 + -14,6: + 1: 4369 + 0: 52428 -14,7: + 1: 17 0: 61644 -14,8: 0: 65535 - -14,5: - 0: 3790 - -14,6: - 0: 52428 -13,8: 0: 61182 -8,-12: @@ -5468,17 +5440,17 @@ entities: -9,-12: 0: 65520 -8,-11: - 1: 6401 + 1: 5377 0: 240 -9,-11: 0: 4593 - 1: 4 + 1: 1028 -8,-10: 0: 819 - 1: 4288 + 1: 5316 -9,-10: 0: 6553 - 1: 1120 + 1: 1124 -7,-12: 0: 40944 1: 8192 @@ -5488,6 +5460,9 @@ entities: -7,-10: 0: 4369 1: 96 + -7,-13: + 1: 16384 + 0: 255 -6,-12: 0: 57590 -6,-11: @@ -5550,21 +5525,21 @@ entities: 1,-10: 0: 65534 1,-12: - 3: 14 - 4: 3584 - 1,-11: 5: 14 + 6: 3584 + 1,-11: + 7: 14 0: 3584 2,-10: 0: 61438 2,-12: 1: 544 0: 52416 - 3: 8 + 5: 8 2,-11: 0: 60654 2,-13: - 3: 52430 + 5: 52430 3,-12: 0: 240 1: 3854 @@ -5592,7 +5567,7 @@ entities: -12,10: 0: 47291 -13,10: - 0: 20957 + 0: 21981 -12,11: 0: 61227 -13,11: @@ -5629,12 +5604,12 @@ entities: 0: 34952 1: 8736 -17,8: - 1: 20068 + 1: 20168 -16,9: 0: 238 1: 61440 -17,9: - 1: 50254 + 1: 50382 -16,10: 1: 231 -17,10: @@ -5698,7 +5673,7 @@ entities: -4,11: 1: 28529 -4,12: - 1: 26358 + 1: 65526 -3,9: 0: 65535 -3,10: @@ -5786,7 +5761,7 @@ entities: 1: 12 0,-17: 0: 8738 - 1: 35037 + 1: 34909 1,-16: 1: 4096 1,-14: @@ -5795,12 +5770,12 @@ entities: 1: 273 0: 4096 1,-13: - 3: 14 - 6: 3584 + 5: 14 + 8: 3584 2,-14: 1: 208 0: 32 - 3: 57344 + 5: 57344 3,-14: 1: 8752 -4,-16: @@ -5808,7 +5783,7 @@ entities: 1: 17544 -4,-17: 0: 4337 - 1: 52736 + 1: 52224 -5,-16: 0: 52748 -4,-15: @@ -5816,7 +5791,7 @@ entities: 1: 9734 -5,-15: 0: 52428 - 1: 3 + 1: 12291 -4,-14: 0: 39321 1: 1570 @@ -5881,8 +5856,6 @@ entities: -7,-14: 1: 50 0: 61440 - -7,-13: - 0: 255 -7,-17: 1: 37691 0: 19524 @@ -5899,9 +5872,10 @@ entities: 1: 28194 -6,-14: 0: 2201 + 1: 96 -5,-17: 0: 49404 - 1: 4864 + 1: 4352 -12,-12: 0: 46079 -12,-13: @@ -5957,8 +5931,14 @@ entities: -9,-17: 1: 48027 0: 17412 + -17,-3: + 1: 21877 + -17,-2: + 1: 16935 + -17,1: + 1: 4 -17,-9: - 1: 4465 + 1: 4464 0: 14 -17,-7: 1: 4369 @@ -6025,11 +6005,11 @@ entities: -10,-20: 1: 13119 0: 52416 - -10,-21: - 1: 64716 -10,-19: 1: 65331 0: 204 + -10,-21: + 1: 60620 -10,-18: 1: 52428 -9,-20: @@ -6039,7 +6019,7 @@ entities: -9,-21: 0: 4369 0,-22: - 1: 53232 + 1: 20464 0: 12288 -1,-22: 1: 3831 @@ -6057,7 +6037,7 @@ entities: 1,-19: 1: 13107 -4,-23: - 1: 65280 + 1: 65024 -5,-23: 1: 65280 -4,-22: @@ -6232,16 +6212,18 @@ entities: 1: 4369 6,11: 1: 49 + -4,13: + 1: 65535 + -5,13: + 1: 240 + -4,14: + 1: 65535 -4,15: - 1: 63222 + 1: 65535 -4,16: 1: 28527 -5,15: 1: 61696 - -4,13: - 1: 26214 - -4,14: - 1: 26214 -3,15: 1: 63488 -3,16: @@ -6260,11 +6242,14 @@ entities: -7,14: 1: 34975 -6,13: - 1: 112 + 1: 240 -6,14: 1: 1 -5,16: 1: 31 + -12,12: + 1: 544 + 0: 34944 -12,14: 0: 4095 1: 4096 @@ -6277,8 +6262,6 @@ entities: -13,15: 0: 3822 1: 32784 - -12,12: - 0: 34944 -12,13: 1: 17472 -12,16: @@ -6361,14 +6344,14 @@ entities: 1: 15 0: 60928 -17,-12: - 1: 4447 + 1: 79 0: 60928 -16,-11: 0: 62702 1: 2560 -17,-11: 0: 62702 - 1: 273 + 1: 256 -16,-10: 0: 61156 1: 8 @@ -6395,13 +6378,17 @@ entities: 1: 17476 -13,-14: 1: 19592 + -18,-12: + 1: 34952 -18,-11: - 1: 34944 + 1: 34952 -18,-10: - 1: 136 + 1: 34952 -17,-10: - 1: 4371 + 1: 3 0: 61156 + -18,-9: + 1: 136 uniqueMixes: - volume: 2500 temperature: 293.15 @@ -6448,6 +6435,36 @@ entities: - 0 - 0 - 0 + - volume: 2500 + temperature: 293.15 + moles: + - 0 + - 103.92799 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + temperature: 293.14975 + moles: + - 20.078888 + - 75.53487 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 - volume: 2500 temperature: 293.15 moles: @@ -6753,9 +6770,9 @@ entities: - 10274 - 7444 - 7443 - - 7436 - - 7437 - 7442 + - 5843 + - 5841 - uid: 18 components: - type: Transform @@ -6890,6 +6907,7 @@ entities: - 7554 - 7553 - 7552 + - 19651 - uid: 26 components: - type: Transform @@ -6900,24 +6918,6 @@ entities: devices: - 17657 - 10331 - - uid: 27 - components: - - type: Transform - pos: -30.5,-7.5 - parent: 2 - - type: DeviceList - devices: - - 7463 - - 7462 - - 10505 - - 10301 - - 10502 - - 7439 - - 7438 - - 10504 - - 10365 - - 10527 - - 10377 - uid: 28 components: - type: Transform @@ -6962,27 +6962,8 @@ entities: devices: - 7489 - 7488 - - 7467 - 10259 - 10438 - - uid: 31 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -24.5,-10.5 - parent: 2 - - type: DeviceList - devices: - - 7463 - - 7462 - - 7366 - - 10501 - - 10391 - - 7464 - - 10362 - - 10487 - - 7391 - - 7394 - uid: 32 components: - type: Transform @@ -6994,9 +6975,6 @@ entities: - 7426 - 7479 - 7460 - - 7465 - - 7466 - - 7468 - 7473 - 7474 - 10446 @@ -7119,33 +7097,6 @@ entities: - 7518 - 10382 - 15969 - - uid: 41 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -33.5,-14.5 - parent: 2 - - type: DeviceList - devices: - - 10503 - - 10373 - - 10510 - - 10360 - - 10367 - - 10509 - - 10511 - - 10358 - - 10512 - - 10355 - - 10568 - - 10361 - - 7440 - - 7438 - - 7439 - - 7436 - - 7437 - - 7393 - - 7392 - uid: 42 components: - type: Transform @@ -7349,6 +7300,34 @@ entities: - 441 - 442 - 7364 + - uid: 960 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,-10.5 + parent: 2 + - type: DeviceList + devices: + - 4329 + - 12442 + - 12076 + - 7366 + - 7394 + - 7391 + - 7464 + - 10362 + - 10487 + - uid: 1222 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,-12.5 + parent: 2 + - type: DeviceList + devices: + - 9632 + - 5587 + - 12076 - uid: 6109 components: - type: Transform @@ -7385,6 +7364,59 @@ entities: - 6299 - 11311 - 11319 + - uid: 7604 + components: + - type: Transform + pos: -43.5,-14.5 + parent: 2 + - type: DeviceList + devices: + - 10508 + - 12210 + - 381 + - uid: 7614 + components: + - type: Transform + pos: -35.5,-8.5 + parent: 2 + - type: DeviceList + devices: + - 4329 + - 12442 + - 12091 + - 5588 + - 9620 + - 11975 + - 27 + - 10692 + - 5841 + - 5843 + - 10508 + - 10814 + - 11506 + - 11474 + - 503 + - 10355 + - 8946 + - 11798 + - 7096 + - 10510 + - 7118 + - 9637 + - 6466 + - 14330 + - 10699 + - 10702 + - uid: 7731 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -40.5,-5.5 + parent: 2 + - type: DeviceList + devices: + - 10692 + - 95 - uid: 9878 components: - type: Transform @@ -7489,10 +7521,6 @@ entities: - 7479 - 7474 - 7473 - - 7468 - - 7466 - - 7465 - - 7467 - 10438 - 10259 - 7489 @@ -7507,6 +7535,21 @@ entities: - 19410 - 19411 - 19412 + - 19651 +- proto: AirAlarmVox + entities: + - uid: 19641 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,-6.5 + parent: 2 + - type: DeviceList + devices: + - 19640 + - 17035 + - 17042 + - 5645 - proto: AirCanister entities: - uid: 55 @@ -7568,58 +7611,83 @@ entities: entities: - uid: 64 components: + - type: MetaData + name: Bathroom - type: Transform pos: -28.5,8.5 parent: 2 - uid: 68 components: + - type: MetaData + name: Bathroom - type: Transform pos: -28.5,13.5 parent: 2 - uid: 69 components: + - type: MetaData + name: Bathroom - type: Transform - rot: 1.5707963267948966 rad pos: 36.5,-15.5 parent: 2 - uid: 70 components: + - type: MetaData + name: Bathroom - type: Transform - rot: 1.5707963267948966 rad pos: 31.5,-15.5 parent: 2 - uid: 7667 components: + - type: MetaData + name: Dorms - type: Transform pos: -34.5,8.5 parent: 2 - uid: 14495 components: + - type: MetaData + name: Dorms - type: Transform pos: -37.5,12.5 parent: 2 -- proto: AirlockArmoryGlassLocked +- proto: AirlockArmoryLocked entities: - - uid: 71 + - uid: 14557 components: + - type: MetaData + name: Warden's Room - type: Transform - pos: -39.5,-5.5 + pos: -39.5,-8.5 parent: 2 - - uid: 72 + - uid: 14641 components: + - type: MetaData + name: T1 Armory - type: Transform - pos: -37.5,-7.5 + pos: -40.5,-6.5 + parent: 2 + - uid: 14642 + components: + - type: MetaData + name: T1 Armory + - type: Transform + pos: -43.5,-7.5 parent: 2 - proto: AirlockAtmosphericsGlass entities: - uid: 73 components: + - type: MetaData + name: Atmos/Salv Linkage - type: Transform rot: -1.5707963267948966 rad pos: 8.5,-38.5 parent: 2 - uid: 74 components: + - type: MetaData + name: Atmos/Salv Linkage - type: Transform rot: -1.5707963267948966 rad pos: 8.5,-37.5 @@ -7628,32 +7696,44 @@ entities: entities: - uid: 75 components: + - type: MetaData + name: Atmos - type: Transform pos: -6.5,-36.5 parent: 2 - uid: 76 components: + - type: MetaData + name: Atmos - type: Transform pos: -7.5,-36.5 parent: 2 - uid: 77 components: + - type: MetaData + name: Atmos/Salv Linkage - type: Transform pos: 3.5,-37.5 parent: 2 - uid: 78 components: + - type: MetaData + name: Atmos/Salv Linkage - type: Transform pos: 3.5,-38.5 parent: 2 - uid: 79 components: + - type: MetaData + name: Atmos - type: Transform rot: 1.5707963267948966 rad pos: -4.5,-38.5 parent: 2 - uid: 80 components: + - type: MetaData + name: Atmos - type: Transform rot: 1.5707963267948966 rad pos: -4.5,-39.5 @@ -7662,6 +7742,8 @@ entities: entities: - uid: 81 components: + - type: MetaData + name: Bartender's Bedroom - type: Transform pos: -11.5,-4.5 parent: 2 @@ -7669,6 +7751,8 @@ entities: entities: - uid: 19354 components: + - type: MetaData + name: Boxer's Bedroom - type: Transform pos: 58.5,4.5 parent: 2 @@ -7676,6 +7760,8 @@ entities: entities: - uid: 98 components: + - type: MetaData + name: Captain's Bedroom - type: Transform pos: -2.5,38.5 parent: 2 @@ -7683,11 +7769,15 @@ entities: entities: - uid: 99 components: + - type: MetaData + name: Logistics - type: Transform pos: 11.5,-2.5 parent: 2 - uid: 100 components: + - type: MetaData + name: Logistics - type: Transform pos: 14.5,-2.5 parent: 2 @@ -7695,57 +7785,79 @@ entities: entities: - uid: 101 components: + - type: MetaData + name: Break Room - type: Transform pos: 9.5,-6.5 parent: 2 - uid: 102 components: + - type: MetaData + name: Logistics - type: Transform pos: 9.5,-9.5 parent: 2 - uid: 104 components: + - type: MetaData + name: Logistics - type: Transform pos: 9.5,-18.5 parent: 2 - uid: 105 components: + - type: MetaData + name: Logistics - type: Transform pos: 10.5,-18.5 parent: 2 - uid: 106 components: + - type: MetaData + name: Loading Bay - type: Transform pos: 13.5,-25.5 parent: 2 - uid: 107 components: + - type: MetaData + name: Warehouse - type: Transform rot: 1.5707963267948966 rad pos: 8.5,-13.5 parent: 2 - uid: 108 components: + - type: MetaData + name: Loading Bay - type: Transform pos: 13.5,-26.5 parent: 2 - uid: 109 components: + - type: MetaData + name: Warehouse - type: Transform pos: 8.5,-12.5 parent: 2 - uid: 110 components: + - type: MetaData + name: Warehouse - type: Transform pos: 13.5,-11.5 parent: 2 - uid: 112 components: + - type: MetaData + name: Break Room - type: Transform pos: 5.5,-8.5 parent: 2 - uid: 6961 components: + - type: MetaData + name: Break Room - type: Transform pos: 6.5,-8.5 parent: 2 @@ -7753,6 +7865,8 @@ entities: entities: - uid: 12463 components: + - type: MetaData + name: Logistics Break Room - type: Transform pos: 2.5,-4.5 parent: 2 @@ -7760,11 +7874,15 @@ entities: entities: - uid: 113 components: + - type: MetaData + name: Crematory - type: Transform pos: -34.5,36.5 parent: 2 - uid: 114 components: + - type: MetaData + name: Chaplain's Bedroom - type: Transform pos: -32.5,33.5 parent: 2 @@ -7772,6 +7890,8 @@ entities: entities: - uid: 115 components: + - type: MetaData + name: Chem Lab - type: Transform pos: 13.5,12.5 parent: 2 @@ -7779,6 +7899,8 @@ entities: entities: - uid: 116 components: + - type: MetaData + name: Chem Lab - type: Transform pos: 18.5,14.5 parent: 2 @@ -7786,6 +7908,8 @@ entities: entities: - uid: 119 components: + - type: MetaData + name: Chief Engineer - type: Transform pos: -4.5,-31.5 parent: 2 @@ -7793,6 +7917,8 @@ entities: entities: - uid: 15944 components: + - type: MetaData + name: Chief Justice's Office - type: Transform pos: -31.5,45.5 parent: 2 @@ -7800,6 +7926,8 @@ entities: entities: - uid: 11632 components: + - type: MetaData + name: Chief Medical Officer's Office - type: Transform pos: 11.5,21.5 parent: 2 @@ -7807,11 +7935,15 @@ entities: entities: - uid: 388 components: + - type: MetaData + name: Chief Medical Officer's Bedroom - type: Transform pos: 11.5,25.5 parent: 2 - uid: 15754 components: + - type: MetaData + name: Chief Medical Officer's Bedroom - type: Transform pos: 8.5,23.5 parent: 2 @@ -7819,6 +7951,8 @@ entities: entities: - uid: 5886 components: + - type: MetaData + name: Clerk's Office - type: Transform pos: -27.5,45.5 parent: 2 @@ -7826,19 +7960,24 @@ entities: entities: - uid: 18354 components: + - type: MetaData + name: Giggle Town - type: Transform - rot: 3.141592653589793 rad pos: -30.5,12.5 parent: 2 - proto: AirlockCommandGlass entities: - uid: 121 components: + - type: MetaData + name: Court - type: Transform pos: -24.5,37.5 parent: 2 - uid: 122 components: + - type: MetaData + name: Court - type: Transform pos: -22.5,37.5 parent: 2 @@ -7846,36 +7985,50 @@ entities: entities: - uid: 124 components: + - type: MetaData + name: Command Deck - type: Transform pos: -21.5,33.5 parent: 2 - uid: 125 components: + - type: MetaData + name: Command Bar - type: Transform pos: -2.5,30.5 parent: 2 - uid: 126 components: + - type: MetaData + name: Command Deck - type: Transform pos: -21.5,35.5 parent: 2 - uid: 127 components: + - type: MetaData + name: Command Deck - type: Transform pos: -18.5,35.5 parent: 2 - uid: 128 components: + - type: MetaData + name: Command Deck - type: Transform pos: -18.5,33.5 parent: 2 - uid: 129 components: + - type: MetaData + name: Command Deck - type: Transform pos: -5.5,32.5 parent: 2 - uid: 130 components: + - type: MetaData + name: Command Deck - type: Transform pos: -3.5,32.5 parent: 2 @@ -7888,33 +8041,43 @@ entities: entities: - uid: 132 components: + - type: MetaData + name: Meeting Room - type: Transform pos: -13.5,35.5 parent: 2 - uid: 133 components: + - type: MetaData + name: Meeting Room - type: Transform pos: -6.5,35.5 parent: 2 - uid: 134 components: + - type: MetaData + name: Command Information Centre - type: Transform - rot: -1.5707963267948966 rad pos: -12.5,40.5 parent: 2 - uid: 135 components: + - type: MetaData + name: Command Information Centre - type: Transform - rot: -1.5707963267948966 rad pos: -7.5,40.5 parent: 2 - uid: 136 components: + - type: MetaData + name: Command Deck - type: Transform pos: -5.5,28.5 parent: 2 - uid: 137 components: + - type: MetaData + name: Command Deck - type: Transform pos: -3.5,28.5 parent: 2 @@ -7922,94 +8085,127 @@ entities: entities: - uid: 337 components: + - type: MetaData + name: Secure Medbay - type: Transform pos: -31.5,4.5 parent: 2 - uid: 17110 components: + - type: MetaData + name: Corpsman's Bedroom - type: Transform pos: -29.5,2.5 parent: 2 -- proto: AirlockDetectiveGlassLocked +- proto: AirlockDetectiveLocked entities: - - uid: 5944 + - uid: 14947 components: + - type: MetaData + name: Detective's Room - type: Transform - rot: 3.141592653589793 rad - pos: -46.5,-11.5 + pos: -33.5,-8.5 parent: 2 - proto: AirlockEngineeringGlassLocked entities: - uid: 117 components: + - type: MetaData + name: Tool Storage - type: Transform rot: 1.5707963267948966 rad pos: -9.5,-22.5 parent: 2 - uid: 118 components: + - type: MetaData + name: Tool Storage - type: Transform rot: 1.5707963267948966 rad pos: -9.5,-23.5 parent: 2 - uid: 140 components: + - type: MetaData + name: Engineering - type: Transform pos: -18.5,-29.5 parent: 2 - uid: 141 components: + - type: MetaData + name: Engineering - type: Transform pos: -9.5,-18.5 parent: 2 - uid: 144 components: + - type: MetaData + name: Engineering - type: Transform pos: -16.5,-29.5 parent: 2 - uid: 145 components: + - type: MetaData + name: Engineering - type: Transform rot: -1.5707963267948966 rad pos: -14.5,-33.5 parent: 2 - uid: 146 components: + - type: MetaData + name: Engine Room - type: Transform pos: -5.5,-23.5 parent: 2 - uid: 147 components: + - type: MetaData + name: Engineering Locker Room - type: Transform pos: -3.5,-20.5 parent: 2 - uid: 148 components: + - type: MetaData + name: Engineering Locker Room - type: Transform pos: -5.5,-18.5 parent: 2 - uid: 149 components: + - type: MetaData + name: Engineering - type: Transform pos: -7.5,-25.5 parent: 2 - uid: 150 components: + - type: MetaData + name: Board Storage - type: Transform pos: -9.5,-28.5 parent: 2 - uid: 151 components: + - type: MetaData + name: Board Storage - type: Transform pos: -11.5,-31.5 parent: 2 - uid: 152 components: + - type: MetaData + name: Engineering - type: Transform pos: -9.5,-33.5 parent: 2 - uid: 153 components: + - type: MetaData + name: Engineering Break Room - type: Transform pos: -14.5,-39.5 parent: 2 @@ -8017,67 +8213,86 @@ entities: entities: - uid: 143 components: + - type: MetaData + name: Engineering EVA Access - type: Transform pos: -21.5,-26.5 parent: 2 - uid: 154 components: + - type: MetaData + name: Arrivals Engineering Outpost - type: Transform pos: 25.5,-17.5 parent: 2 - uid: 155 components: + - type: MetaData + name: Engineering - type: Transform pos: -16.5,-26.5 parent: 2 - uid: 156 components: + - type: MetaData + name: Engineering - type: Transform pos: -18.5,-26.5 parent: 2 - uid: 157 components: + - type: MetaData + name: Engineering Break Room - type: Transform pos: -11.5,-35.5 parent: 2 - uid: 158 components: + - type: MetaData + name: Substation - type: Transform - rot: -1.5707963267948966 rad pos: -46.5,45.5 parent: 2 - uid: 159 components: + - type: MetaData + name: Substation - type: Transform - rot: -1.5707963267948966 rad pos: -31.5,-19.5 parent: 2 - uid: 160 components: + - type: MetaData + name: Substation - type: Transform - rot: 1.5707963267948966 rad pos: 0.5,-10.5 parent: 2 - uid: 161 components: + - type: MetaData + name: Substation - type: Transform - rot: 1.5707963267948966 rad pos: -14.5,30.5 parent: 2 - uid: 162 components: + - type: MetaData + name: Substation - type: Transform pos: -17.5,15.5 parent: 2 - uid: 163 components: + - type: MetaData + name: Substation - type: Transform pos: 28.5,26.5 parent: 2 - uid: 592 components: + - type: MetaData + name: West Solars - type: Transform - rot: -1.5707963267948966 rad pos: -49.5,-40.5 parent: 2 - uid: 13139 @@ -8089,11 +8304,15 @@ entities: entities: - uid: 123 components: + - type: MetaData + name: EVA - type: Transform pos: -19.5,-24.5 parent: 2 - uid: 142 components: + - type: MetaData + name: EVA - type: Transform pos: -19.5,-22.5 parent: 2 @@ -8101,6 +8320,8 @@ entities: entities: - uid: 307 components: + - type: MetaData + name: EVA - type: Transform pos: -21.5,-20.5 parent: 2 @@ -8111,9 +8332,6 @@ entities: - type: Transform pos: -31.5,-29.5 parent: 2 - - type: DeviceLinkSink - links: - - 165 - type: DeviceLinkSource linkedPorts: 165: @@ -8123,9 +8341,6 @@ entities: - type: Transform pos: -29.5,-27.5 parent: 2 - - type: DeviceLinkSink - links: - - 164 - type: DeviceLinkSource linkedPorts: 164: @@ -8135,9 +8350,6 @@ entities: - type: Transform pos: -23.5,-46.5 parent: 2 - - type: DeviceLinkSink - links: - - 167 - type: DeviceLinkSource linkedPorts: 167: @@ -8147,9 +8359,6 @@ entities: - type: Transform pos: -20.5,-46.5 parent: 2 - - type: DeviceLinkSink - links: - - 166 - type: DeviceLinkSource linkedPorts: 166: @@ -8159,10 +8368,6 @@ entities: - type: Transform pos: -17.5,-47.5 parent: 2 - - type: DeviceLinkSink - links: - - 169 - - 170 - type: DeviceLinkSource linkedPorts: 169: @@ -8174,10 +8379,6 @@ entities: - type: Transform pos: -17.5,-50.5 parent: 2 - - type: DeviceLinkSink - links: - - 168 - - 171 - type: DeviceLinkSource linkedPorts: 168: @@ -8189,10 +8390,6 @@ entities: - type: Transform pos: -15.5,-50.5 parent: 2 - - type: DeviceLinkSink - links: - - 168 - - 171 - type: DeviceLinkSource linkedPorts: 168: @@ -8204,10 +8401,6 @@ entities: - type: Transform pos: -15.5,-47.5 parent: 2 - - type: DeviceLinkSink - links: - - 169 - - 170 - type: DeviceLinkSource linkedPorts: 169: @@ -8216,11 +8409,6 @@ entities: - DoorStatus: DoorBolt - proto: AirlockExternalGlass entities: - - uid: 181 - components: - - type: Transform - pos: -51.5,12.5 - parent: 2 - uid: 184 components: - type: Transform @@ -8241,20 +8429,25 @@ entities: - type: Transform pos: 41.5,-11.5 parent: 2 - - uid: 1064 + - uid: 12579 components: - type: Transform - pos: -51.5,20.5 + pos: -56.5,20.5 parent: 2 - - uid: 6091 + - uid: 12612 components: - type: Transform - pos: -51.5,14.5 + pos: -56.5,22.5 parent: 2 - - uid: 7210 + - uid: 12637 + components: + - type: Transform + pos: -56.5,14.5 + parent: 2 + - uid: 12671 components: - type: Transform - pos: -51.5,22.5 + pos: -56.5,12.5 parent: 2 - proto: AirlockExternalGlassAtmosphericsLocked entities: @@ -8263,9 +8456,6 @@ entities: - type: Transform pos: -8.5,-50.5 parent: 2 - - type: DeviceLinkSink - links: - - 174 - type: DeviceLinkSource linkedPorts: 174: @@ -8275,9 +8465,6 @@ entities: - type: Transform pos: 1.5,-52.5 parent: 2 - - type: DeviceLinkSink - links: - - 176 - type: DeviceLinkSource linkedPorts: 176: @@ -8287,9 +8474,6 @@ entities: - type: Transform pos: -5.5,-51.5 parent: 2 - - type: DeviceLinkSink - links: - - 172 - type: DeviceLinkSource linkedPorts: 172: @@ -8299,9 +8483,6 @@ entities: - type: Transform pos: 3.5,-52.5 parent: 2 - - type: DeviceLinkSink - links: - - 176 - type: DeviceLinkSource linkedPorts: 176: @@ -8311,10 +8492,6 @@ entities: - type: Transform pos: 2.5,-54.5 parent: 2 - - type: DeviceLinkSink - links: - - 173 - - 175 - type: DeviceLinkSource linkedPorts: 173: @@ -8341,12 +8518,24 @@ entities: rot: -1.5707963267948966 rad pos: -54.5,43.5 parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 67: + - DoorStatus: DoorBolt - uid: 67 components: - type: Transform rot: -1.5707963267948966 rad pos: -54.5,45.5 parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 57: + - DoorStatus: DoorBolt - uid: 18989 components: - type: Transform @@ -8369,10 +8558,6 @@ entities: - type: Transform pos: 11.5,-41.5 parent: 2 - - type: DeviceLinkSink - links: - - 192 - - 202 - type: DeviceLinkSource linkedPorts: 202: @@ -8386,9 +8571,6 @@ entities: parent: 2 - type: DeviceLinkSink invokeCounter: 1 - links: - - 191 - - 201 - type: DeviceLinkSource linkedPorts: 201: @@ -8410,9 +8592,6 @@ entities: - type: Transform pos: -53.5,48.5 parent: 2 - - type: DeviceLinkSink - links: - - 196 - type: DeviceLinkSource linkedPorts: 196: @@ -8422,15 +8601,14 @@ entities: - type: Transform pos: -55.5,48.5 parent: 2 - - type: DeviceLinkSink - links: - - 195 - type: DeviceLinkSource linkedPorts: 195: - DoorStatus: DoorBolt - uid: 197 components: + - type: MetaData + name: North Solars - type: Transform rot: 3.141592653589793 rad pos: -42.5,48.5 @@ -8448,6 +8626,8 @@ entities: parent: 2 - uid: 200 components: + - type: MetaData + name: East Solars - type: Transform rot: 3.141592653589793 rad pos: 42.5,11.5 @@ -8457,10 +8637,6 @@ entities: - type: Transform pos: 10.5,-41.5 parent: 2 - - type: DeviceLinkSink - links: - - 202 - - 192 - type: DeviceLinkSource linkedPorts: 192: @@ -8474,9 +8650,6 @@ entities: parent: 2 - type: DeviceLinkSink invokeCounter: 1 - links: - - 191 - - 201 - type: DeviceLinkSource linkedPorts: 201: @@ -8497,29 +8670,29 @@ entities: parent: 2 - proto: AirlockExternalGlassShuttleEmergencyLocked entities: - - uid: 5648 + - uid: 12679 components: - type: Transform rot: -1.5707963267948966 rad - pos: -54.5,20.5 + pos: -60.5,14.5 parent: 2 - - uid: 5649 + - uid: 12705 components: - type: Transform rot: -1.5707963267948966 rad - pos: -54.5,22.5 + pos: -60.5,20.5 parent: 2 - - uid: 6089 + - uid: 12714 components: - type: Transform rot: -1.5707963267948966 rad - pos: -54.5,12.5 + pos: -60.5,22.5 parent: 2 - - uid: 15898 + - uid: 12919 components: - type: Transform rot: -1.5707963267948966 rad - pos: -54.5,14.5 + pos: -60.5,12.5 parent: 2 - proto: AirlockExternalGlassShuttleEscape entities: @@ -8587,32 +8760,33 @@ entities: entities: - uid: 220 components: + - type: MetaData + name: Bathroom And Rubber Ducky Storage - type: Transform - rot: -1.5707963267948966 rad pos: 0.5,41.5 parent: 2 - uid: 221 components: + - type: MetaData + name: Perma Bathroom - type: Transform - rot: -1.5707963267948966 rad pos: -53.5,-6.5 parent: 2 - proto: AirlockFreezerHydroponicsLocked entities: - uid: 290 components: + - type: MetaData + name: Freezer - type: Transform pos: -16.5,10.5 parent: 2 - proto: AirlockFreezerKitchenHydroLocked entities: - - uid: 222 - components: - - type: Transform - pos: -14.5,8.5 - parent: 2 - uid: 223 components: + - type: MetaData + name: Freezer - type: Transform pos: -14.5,16.5 parent: 2 @@ -8620,60 +8794,80 @@ entities: entities: - uid: 224 components: + - type: MetaData + name: Freezer - type: Transform - rot: 1.5707963267948966 rad pos: -11.5,15.5 parent: 2 - uid: 225 components: + - type: MetaData + name: Freezer - type: Transform - rot: 1.5707963267948966 rad pos: -11.5,10.5 parent: 2 - proto: AirlockGlass entities: - uid: 65 components: + - type: MetaData + name: Cryosleep - type: Transform pos: -33.5,17.5 parent: 2 - uid: 66 components: + - type: MetaData + name: Cryosleep - type: Transform pos: -31.5,17.5 parent: 2 - uid: 226 components: + - type: MetaData + name: Hallway - type: Transform pos: -26.5,5.5 parent: 2 - uid: 227 components: + - type: MetaData + name: Hallway - type: Transform pos: -38.5,6.5 parent: 2 - uid: 228 components: + - type: MetaData + name: Perma Garden - type: Transform pos: -57.5,-7.5 parent: 2 - uid: 229 components: + - type: MetaData + name: Laundry - type: Transform pos: -37.5,16.5 parent: 2 - uid: 230 components: + - type: MetaData + name: Hallway - type: Transform pos: -38.5,5.5 parent: 2 - uid: 231 components: + - type: MetaData + name: Hallway - type: Transform pos: -26.5,6.5 parent: 2 - uid: 233 components: + - type: MetaData + name: Evac - type: Transform pos: -43.5,15.5 parent: 2 @@ -8684,11 +8878,15 @@ entities: parent: 2 - uid: 235 components: + - type: MetaData + name: Hallway - type: Transform pos: -39.5,14.5 parent: 2 - uid: 236 components: + - type: MetaData + name: Hallway - type: Transform pos: -39.5,15.5 parent: 2 @@ -8699,277 +8897,331 @@ entities: parent: 2 - uid: 238 components: + - type: MetaData + name: Evac - type: Transform pos: -46.5,8.5 parent: 2 - uid: 239 components: + - type: MetaData + name: Evac - type: Transform pos: -48.5,8.5 parent: 2 - uid: 240 components: + - type: MetaData + name: Hallway - type: Transform pos: -26.5,15.5 parent: 2 - uid: 241 components: + - type: MetaData + name: Hallway - type: Transform pos: -26.5,14.5 parent: 2 - uid: 242 components: + - type: MetaData + name: Hallway - type: Transform pos: -24.5,18.5 parent: 2 - uid: 243 components: + - type: MetaData + name: Hallway - type: Transform pos: -23.5,18.5 parent: 2 - uid: 244 components: + - type: MetaData + name: Hallway - type: Transform pos: -11.5,25.5 parent: 2 - uid: 245 components: + - type: MetaData + name: Hallway - type: Transform pos: -11.5,26.5 parent: 2 - uid: 246 components: + - type: MetaData + name: Security Lobby - type: Transform pos: -19.5,-3.5 parent: 2 - uid: 247 components: + - type: MetaData + name: Security Lobby - type: Transform pos: -19.5,-4.5 parent: 2 - uid: 248 components: + - type: MetaData + name: Security Lobby - type: Transform pos: -24.5,-1.5 parent: 2 - uid: 249 components: + - type: MetaData + name: Hallway - type: Transform pos: -17.5,-6.5 parent: 2 - uid: 250 components: + - type: MetaData + name: Hallway - type: Transform pos: -16.5,-6.5 parent: 2 - uid: 251 components: + - type: MetaData + name: Bar - type: Transform pos: -8.5,-11.5 parent: 2 - uid: 252 components: + - type: MetaData + name: Bar - type: Transform rot: -1.5707963267948966 rad pos: -8.5,-1.5 parent: 2 - uid: 253 components: + - type: MetaData + name: Park - type: Transform pos: -2.5,1.5 parent: 2 - uid: 254 components: + - type: MetaData + name: Park - type: Transform pos: -2.5,-0.5 parent: 2 - uid: 255 components: + - type: MetaData + name: Hallway - type: Transform rot: 1.5707963267948966 rad pos: -4.5,15.5 parent: 2 - uid: 256 components: + - type: MetaData + name: Hallway - type: Transform rot: 1.5707963267948966 rad pos: -3.5,15.5 parent: 2 - uid: 257 components: + - type: MetaData + name: Park - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-0.5 parent: 2 - uid: 258 components: + - type: MetaData + name: Park - type: Transform rot: 1.5707963267948966 rad pos: 3.5,1.5 parent: 2 - uid: 259 components: + - type: MetaData + name: Hallway - type: Transform rot: 1.5707963267948966 rad pos: 16.5,0.5 parent: 2 - uid: 260 components: + - type: MetaData + name: Medical Lobby - type: Transform rot: 1.5707963267948966 rad pos: 13.5,3.5 parent: 2 - uid: 261 components: + - type: MetaData + name: Medical Lobby - type: Transform rot: 1.5707963267948966 rad pos: 12.5,3.5 parent: 2 - uid: 262 components: + - type: MetaData + name: Hallway - type: Transform rot: 1.5707963267948966 rad pos: 24.5,-6.5 parent: 2 - uid: 263 components: + - type: MetaData + name: Hallway - type: Transform rot: 1.5707963267948966 rad pos: 25.5,-6.5 parent: 2 - - uid: 264 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,-4.5 - parent: 2 - - uid: 265 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,-1.5 - parent: 2 - - uid: 266 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 32.5,-1.5 - parent: 2 - - uid: 267 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 36.5,-5.5 - parent: 2 - uid: 268 components: + - type: MetaData + name: Arrivals - type: Transform rot: 1.5707963267948966 rad pos: 38.5,-14.5 parent: 2 - uid: 269 components: + - type: MetaData + name: Arrivals - type: Transform rot: 1.5707963267948966 rad pos: 39.5,-14.5 parent: 2 - uid: 270 components: + - type: MetaData + name: Arrivals - type: Transform rot: 1.5707963267948966 rad pos: 29.5,-17.5 parent: 2 - uid: 274 components: + - type: MetaData + name: Engineering Lobby - type: Transform pos: -12.5,-14.5 parent: 2 - uid: 275 components: + - type: MetaData + name: Engineering Lobby - type: Transform pos: -11.5,-14.5 parent: 2 - uid: 276 components: + - type: MetaData + name: Engineering Lobby - type: Transform pos: -15.5,-17.5 parent: 2 - uid: 277 components: + - type: MetaData + name: Hallway - type: Transform pos: -16.5,-14.5 parent: 2 - uid: 278 components: + - type: MetaData + name: Engineering Lobby - type: Transform pos: -15.5,-18.5 parent: 2 - uid: 279 components: + - type: MetaData + name: Hallway - type: Transform rot: -1.5707963267948966 rad pos: -17.5,-14.5 parent: 2 - uid: 280 components: + - type: MetaData + name: Hallway - type: Transform pos: -11.5,0.5 parent: 2 - - uid: 281 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,2.5 - parent: 2 - - uid: 282 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,2.5 - parent: 2 - uid: 283 components: + - type: MetaData + name: Canteen - type: Transform rot: 1.5707963267948966 rad pos: -6.5,5.5 parent: 2 - uid: 284 components: + - type: MetaData + name: Canteen - type: Transform pos: -6.5,6.5 parent: 2 - uid: 285 components: + - type: MetaData + name: Hallway - type: Transform pos: -11.5,-0.5 parent: 2 - uid: 286 components: + - type: MetaData + name: Hallway - type: Transform pos: -20.5,0.5 parent: 2 - uid: 287 components: + - type: MetaData + name: Hallway - type: Transform pos: -20.5,-0.5 parent: 2 - uid: 423 components: + - type: MetaData + name: Tool Room - type: Transform pos: 23.5,-15.5 parent: 2 - uid: 427 components: + - type: MetaData + name: Tool Room - type: Transform pos: 23.5,-12.5 parent: 2 - uid: 4768 components: + - type: MetaData + name: Barbershop - type: Transform pos: -1.5,19.5 parent: 2 - uid: 19372 components: + - type: MetaData + name: Boxing Ring - type: Transform pos: 46.5,4.5 parent: 2 @@ -8977,20 +9229,42 @@ entities: entities: - uid: 288 components: + - type: MetaData + name: Head Of Personnel - type: Transform pos: 22.5,-4.5 parent: 2 -- proto: AirlockHeadOfSecurityGlassLocked +- proto: AirlockHeadOfSecurityLocked entities: - - uid: 289 + - uid: 14948 components: + - type: MetaData + name: Head Of Security's Bedtube - type: Transform - pos: -29.5,-14.5 + pos: -42.5,-12.5 + parent: 2 +- proto: AirlockHydroGlassLocked + entities: + - uid: 222 + components: + - type: MetaData + name: Hydroponics + - type: Transform + pos: -14.5,2.5 + parent: 2 + - uid: 281 + components: + - type: MetaData + name: Hydroponics + - type: Transform + pos: -13.5,2.5 parent: 2 - proto: AirlockHydroponicsLocked entities: - uid: 291 components: + - type: MetaData + name: Hydroponics Storage - type: Transform pos: -23.5,12.5 parent: 2 @@ -8998,20 +9272,25 @@ entities: entities: - uid: 292 components: + - type: MetaData + name: Janitorial - type: Transform - rot: 1.5707963267948966 rad pos: -2.5,11.5 parent: 2 - proto: AirlockKitchenGlassLocked entities: - uid: 293 components: + - type: MetaData + name: Kitchen - type: Transform rot: 1.5707963267948966 rad pos: -5.5,10.5 parent: 2 - uid: 17831 components: + - type: MetaData + name: Kitchen - type: Transform rot: 1.5707963267948966 rad pos: -5.5,18.5 @@ -9020,6 +9299,8 @@ entities: entities: - uid: 97 components: + - type: MetaData + name: Attorney's Office - type: Transform pos: -22.5,22.5 parent: 2 @@ -9027,6 +9308,8 @@ entities: entities: - uid: 295 components: + - type: MetaData + name: Mail Room - type: Transform pos: 6.5,-1.5 parent: 2 @@ -9040,13 +9323,11 @@ entities: - uid: 297 components: - type: Transform - rot: 1.5707963267948966 rad pos: 17.5,-18.5 parent: 2 - uid: 298 components: - type: Transform - rot: 1.5707963267948966 rad pos: 22.5,-9.5 parent: 2 - uid: 19355 @@ -9059,7 +9340,6 @@ entities: - uid: 299 components: - type: Transform - rot: 1.5707963267948966 rad pos: -2.5,-6.5 parent: 2 - proto: AirlockMaintCargoLocked @@ -9092,7 +9372,6 @@ entities: - uid: 306 components: - type: Transform - rot: 1.5707963267948966 rad pos: 16.5,-9.5 parent: 2 - proto: AirlockMaintChiefJusticeLocked @@ -9100,7 +9379,6 @@ entities: - uid: 13330 components: - type: Transform - rot: 1.5707963267948966 rad pos: -34.5,47.5 parent: 2 - proto: AirlockMaintChiefMedicalOfficerLocked @@ -9108,7 +9386,6 @@ entities: - uid: 16882 components: - type: Transform - rot: 1.5707963267948966 rad pos: 9.5,28.5 parent: 2 - proto: AirlockMaintCommandLocked @@ -9116,19 +9393,16 @@ entities: - uid: 308 components: - type: Transform - rot: 1.5707963267948966 rad pos: -6.5,30.5 parent: 2 - uid: 309 components: - type: Transform - rot: 1.5707963267948966 rad pos: 0.5,28.5 parent: 2 - uid: 310 components: - type: Transform - rot: 1.5707963267948966 rad pos: -20.5,32.5 parent: 2 - uid: 311 @@ -9145,18 +9419,16 @@ entities: parent: 2 - proto: AirlockMaintDetectiveLocked entities: - - uid: 5205 + - uid: 14314 components: - type: Transform - rot: 3.141592653589793 rad - pos: -44.5,-18.5 + pos: -32.5,-3.5 parent: 2 - proto: AirlockMaintEngiLocked entities: - uid: 312 components: - type: Transform - rot: 3.141592653589793 rad pos: -27.5,-23.5 parent: 2 - uid: 313 @@ -9167,19 +9439,16 @@ entities: - uid: 314 components: - type: Transform - rot: 3.141592653589793 rad pos: -23.5,-27.5 parent: 2 - uid: 315 components: - type: Transform - rot: 3.141592653589793 rad pos: 2.5,-21.5 parent: 2 - uid: 316 components: - type: Transform - rot: 3.141592653589793 rad pos: 0.5,-18.5 parent: 2 - uid: 16026 @@ -9190,7 +9459,6 @@ entities: - uid: 18701 components: - type: Transform - rot: 3.141592653589793 rad pos: -19.5,-47.5 parent: 2 - proto: AirlockMaintGlass @@ -9205,11 +9473,6 @@ entities: - type: Transform pos: 3.5,8.5 parent: 2 - - uid: 15248 - components: - - type: Transform - pos: -44.5,-20.5 - parent: 2 - uid: 18702 components: - type: Transform @@ -9237,7 +9500,6 @@ entities: - uid: 319 components: - type: Transform - rot: 1.5707963267948966 rad pos: 18.5,-7.5 parent: 2 - proto: AirlockMaintHydroLocked @@ -9290,37 +9552,31 @@ entities: - uid: 327 components: - type: Transform - rot: 3.141592653589793 rad pos: -47.5,46.5 parent: 2 - uid: 328 components: - type: Transform - rot: 1.5707963267948966 rad pos: -4.5,-13.5 parent: 2 - uid: 329 components: - type: Transform - rot: 1.5707963267948966 rad pos: -1.5,-4.5 parent: 2 - uid: 330 components: - type: Transform - rot: 1.5707963267948966 rad pos: -1.5,25.5 parent: 2 - uid: 331 components: - type: Transform - rot: 1.5707963267948966 rad pos: -19.5,28.5 parent: 2 - uid: 332 components: - type: Transform - rot: 1.5707963267948966 rad pos: -25.5,34.5 parent: 2 - uid: 333 @@ -9371,25 +9627,21 @@ entities: - uid: 346 components: - type: Transform - rot: -1.5707963267948966 rad pos: 6.5,2.5 parent: 2 - uid: 347 components: - type: Transform - rot: 1.5707963267948966 rad pos: 9.5,4.5 parent: 2 - uid: 348 components: - type: Transform - rot: 1.5707963267948966 rad pos: -1.5,7.5 parent: 2 - uid: 349 components: - type: Transform - rot: 1.5707963267948966 rad pos: 0.5,5.5 parent: 2 - uid: 360 @@ -9415,7 +9667,6 @@ entities: - uid: 9656 components: - type: Transform - rot: 3.141592653589793 rad pos: 41.5,18.5 parent: 2 - uid: 13358 @@ -9436,7 +9687,6 @@ entities: - uid: 14665 components: - type: Transform - rot: -1.5707963267948966 rad pos: -32.5,-22.5 parent: 2 - uid: 15855 @@ -9456,25 +9706,21 @@ entities: - uid: 350 components: - type: Transform - rot: -1.5707963267948966 rad pos: 30.5,19.5 parent: 2 - uid: 352 components: - type: Transform - rot: -1.5707963267948966 rad pos: 20.5,27.5 parent: 2 - uid: 353 components: - type: Transform - rot: -1.5707963267948966 rad pos: 13.5,27.5 parent: 2 - uid: 354 components: - type: Transform - rot: -1.5707963267948966 rad pos: 9.5,14.5 parent: 2 - uid: 355 @@ -9487,7 +9733,6 @@ entities: - uid: 19228 components: - type: Transform - rot: 3.141592653589793 rad pos: 31.5,17.5 parent: 2 - proto: AirlockMaintProsecutorLocked @@ -9495,7 +9740,6 @@ entities: - uid: 7492 components: - type: Transform - rot: 1.5707963267948966 rad pos: -39.5,22.5 parent: 2 - proto: AirlockMaintQuartermasterLocked @@ -9503,7 +9747,6 @@ entities: - uid: 15906 components: - type: Transform - rot: 3.141592653589793 rad pos: 6.5,-18.5 parent: 2 - proto: AirlockMaintReporterLocked @@ -9537,10 +9780,15 @@ entities: parent: 2 - proto: AirlockMaintSecLocked entities: - - uid: 362 + - uid: 364 components: - type: Transform - pos: -22.5,-17.5 + pos: -28.5,-3.5 + parent: 2 + - uid: 14255 + components: + - type: Transform + pos: -42.5,-19.5 parent: 2 - proto: AirlockMaintSecurityLawyerLocked entities: @@ -9549,41 +9797,31 @@ entities: - type: Transform pos: -28.5,-16.5 parent: 2 - - uid: 364 - components: - - type: Transform - pos: -28.5,-3.5 - parent: 2 - uid: 367 components: - type: Transform pos: -37.5,-17.5 parent: 2 - - uid: 12827 - components: - - type: Transform - pos: -32.5,-3.5 - parent: 2 - proto: AirlockMantisLocked entities: - uid: 368 components: - type: MetaData - name: mantis' office + name: Mantis's Office - type: Transform pos: -36.5,35.5 parent: 2 - uid: 369 components: - type: MetaData - name: mantis' office + name: Mantis's Office - type: Transform pos: -37.5,32.5 parent: 2 - uid: 370 components: - type: MetaData - name: mantis' office + name: Mantis's Office - type: Transform pos: -35.5,30.5 parent: 2 @@ -9591,21 +9829,29 @@ entities: entities: - uid: 372 components: + - type: MetaData + name: Medical Hallway - type: Transform pos: 12.5,17.5 parent: 2 - uid: 373 components: + - type: MetaData + name: Medical Hallway - type: Transform pos: 13.5,17.5 parent: 2 - uid: 374 components: + - type: MetaData + name: Medical Hallway - type: Transform pos: 20.5,15.5 parent: 2 - uid: 375 components: + - type: MetaData + name: Medical Hallway - type: Transform pos: 20.5,16.5 parent: 2 @@ -9613,28 +9859,38 @@ entities: entities: - uid: 376 components: + - type: MetaData + name: Medical Break Room - type: Transform pos: 9.5,11.5 parent: 2 - uid: 377 components: + - type: MetaData + name: Cryogenics - type: Transform pos: 17.5,17.5 parent: 2 - uid: 378 components: + - type: MetaData + name: Ward - type: Transform rot: 3.141592653589793 rad pos: 16.5,6.5 parent: 2 - uid: 379 components: + - type: MetaData + name: Ward - type: Transform rot: 3.141592653589793 rad pos: 16.5,7.5 parent: 2 - uid: 380 components: + - type: MetaData + name: Ward - type: Transform pos: 22.5,9.5 parent: 2 @@ -9642,31 +9898,43 @@ entities: entities: - uid: 382 components: + - type: MetaData + name: Morgue - type: Transform pos: 24.5,19.5 parent: 2 - uid: 383 components: + - type: MetaData + name: Cloning - type: Transform pos: 22.5,20.5 parent: 2 - uid: 384 components: + - type: MetaData + name: Morgue - type: Transform pos: 24.5,22.5 parent: 2 - uid: 385 components: + - type: MetaData + name: Medical Break Room - type: Transform pos: 9.5,7.5 parent: 2 - uid: 386 components: + - type: MetaData + name: Medical Hallway - type: Transform pos: 11.5,9.5 parent: 2 - uid: 387 components: + - type: MetaData + name: Surgical Bay - type: Transform pos: 14.5,25.5 parent: 2 @@ -9674,6 +9942,8 @@ entities: entities: - uid: 12957 components: + - type: MetaData + name: Mime's Room - type: Transform pos: -49.5,6.5 parent: 2 @@ -9681,6 +9951,8 @@ entities: entities: - uid: 431 components: + - type: MetaData + name: Musician's Bedroom - type: Transform pos: -11.5,-8.5 parent: 2 @@ -9688,6 +9960,8 @@ entities: entities: - uid: 14503 components: + - type: MetaData + name: Paramedic Office - type: Transform pos: 24.5,13.5 parent: 2 @@ -9695,6 +9969,8 @@ entities: entities: - uid: 432 components: + - type: MetaData + name: Morgue - type: Transform pos: 26.5,17.5 parent: 2 @@ -9702,6 +9978,8 @@ entities: entities: - uid: 12000 components: + - type: MetaData + name: Prosecutor's Office - type: Transform pos: -41.5,18.5 parent: 2 @@ -9709,6 +9987,8 @@ entities: entities: - uid: 12230 components: + - type: MetaData + name: Psych Office - type: Transform pos: 26.5,3.5 parent: 2 @@ -9716,11 +9996,15 @@ entities: entities: - uid: 650 components: + - type: MetaData + name: Psych Office - type: Transform pos: 27.5,7.5 parent: 2 - uid: 14260 components: + - type: MetaData + name: Psych Office - type: Transform pos: 24.5,6.5 parent: 2 @@ -9728,6 +10012,8 @@ entities: entities: - uid: 389 components: + - type: MetaData + name: Logistics Officer's Bedroom - type: Transform pos: 5.5,-14.5 parent: 2 @@ -9735,6 +10021,8 @@ entities: entities: - uid: 424 components: + - type: MetaData + name: News Room - type: Transform pos: -14.5,24.5 parent: 2 @@ -9742,6 +10030,8 @@ entities: entities: - uid: 390 components: + - type: MetaData + name: Mystagogue's Office - type: Transform pos: -47.5,38.5 parent: 2 @@ -9749,16 +10039,22 @@ entities: entities: - uid: 391 components: + - type: MetaData + name: Salvage - type: Transform pos: 10.5,-35.5 parent: 2 - uid: 392 components: + - type: MetaData + name: Salvage - type: Transform pos: 11.5,-35.5 parent: 2 - uid: 19214 components: + - type: MetaData + name: Salvage's Secret Base - type: Transform pos: 11.5,-47.5 parent: 2 @@ -9766,19 +10062,24 @@ entities: entities: - uid: 393 components: + - type: MetaData + name: Salvage - type: Transform - rot: 3.141592653589793 rad pos: 10.5,-28.5 parent: 2 - proto: AirlockScienceGlass entities: - uid: 394 components: + - type: MetaData + name: Chapel/Epistemics - type: Transform pos: -25.5,26.5 parent: 2 - uid: 395 components: + - type: MetaData + name: Chapel/Epistemics - type: Transform pos: -25.5,25.5 parent: 2 @@ -9786,11 +10087,15 @@ entities: entities: - uid: 396 components: + - type: MetaData + name: Epistemics - type: Transform pos: -43.5,33.5 parent: 2 - uid: 398 components: + - type: MetaData + name: Epistemics - type: Transform pos: -33.5,26.5 parent: 2 @@ -9801,11 +10106,15 @@ entities: parent: 2 - uid: 401 components: + - type: MetaData + name: Test Chambers - type: Transform pos: -51.5,33.5 parent: 2 - uid: 402 components: + - type: MetaData + name: Test Chambers - type: Transform pos: -51.5,36.5 parent: 2 @@ -9813,6 +10122,8 @@ entities: entities: - uid: 403 components: + - type: MetaData + name: Prober Room - type: Transform pos: -42.5,35.5 parent: 2 @@ -9823,214 +10134,259 @@ entities: parent: 2 - uid: 405 components: + - type: MetaData + name: Epi's Back Door - type: Transform pos: -46.5,31.5 parent: 2 - uid: 8105 components: + - type: MetaData + name: Toxins Lab - type: Transform - rot: 1.5707963267948966 rad pos: -53.5,38.5 parent: 2 - uid: 11184 components: + - type: MetaData + name: Test Chamber B - type: Transform - rot: 1.5707963267948966 rad pos: -59.5,31.5 parent: 2 - uid: 12998 components: + - type: MetaData + name: Test Chamber A - type: Transform - rot: 1.5707963267948966 rad pos: -59.5,37.5 parent: 2 - proto: AirlockSecurityGlass entities: - uid: 406 components: + - type: MetaData + name: Visitation - type: Transform pos: -54.5,-4.5 parent: 2 - uid: 407 components: + - type: MetaData + name: Visitation - type: Transform pos: -54.5,-2.5 parent: 2 - uid: 408 components: + - type: MetaData + name: Perma Cell - type: Transform pos: -49.5,-15.5 parent: 2 - uid: 409 components: + - type: MetaData + name: Perma Cell - type: Transform pos: -58.5,-15.5 parent: 2 - uid: 410 components: + - type: MetaData + name: Perma Cell - type: Transform pos: -55.5,-15.5 parent: 2 - uid: 411 components: + - type: MetaData + name: Perma Cell - type: Transform pos: -58.5,-13.5 parent: 2 - uid: 412 components: + - type: MetaData + name: Perma Cell - type: Transform pos: -52.5,-15.5 parent: 2 - uid: 413 components: + - type: MetaData + name: Perma Disposals - type: Transform pos: -51.5,2.5 parent: 2 - uid: 414 components: + - type: MetaData + name: Perma - type: Transform pos: -55.5,-5.5 parent: 2 - uid: 415 components: + - type: MetaData + name: Perma - type: Transform pos: -56.5,-5.5 parent: 2 - proto: AirlockSecurityGlassLocked entities: - - uid: 84 + - uid: 416 components: + - type: MetaData + name: Perma - type: Transform - pos: -41.5,-15.5 + pos: -50.5,-8.5 parent: 2 - - type: DeviceLinkSink - links: - - 753 - - uid: 90 + - uid: 417 components: + - type: MetaData + name: Perma - type: Transform - pos: -35.5,-16.5 + pos: -50.5,-9.5 parent: 2 - - type: DeviceLinkSink - links: - - 754 - - uid: 92 + - uid: 418 components: + - type: MetaData + name: Perma - type: Transform - pos: -39.5,-16.5 + pos: -53.5,-8.5 parent: 2 - - type: DeviceLinkSink - links: - - 752 - - uid: 93 + - uid: 419 components: + - type: MetaData + name: Perma - type: Transform - pos: -41.5,-12.5 + pos: -53.5,-9.5 parent: 2 - - type: DeviceLinkSink - links: - - 751 - - uid: 416 + - uid: 515 components: + - type: MetaData + name: Security Locker Room - type: Transform - pos: -50.5,-8.5 + pos: -20.5,-10.5 parent: 2 - - uid: 417 + - uid: 14701 components: + - type: MetaData + name: Cell - type: Transform - pos: -50.5,-9.5 + pos: -33.5,-14.5 parent: 2 - - uid: 418 + - uid: 14711 components: + - type: MetaData + name: Cell - type: Transform - pos: -53.5,-8.5 + pos: -34.5,-16.5 parent: 2 - - uid: 419 + - uid: 14737 components: + - type: MetaData + name: Cell - type: Transform - pos: -53.5,-9.5 + pos: -39.5,-16.5 parent: 2 -- proto: AirlockSecurityLawyerGlassLocked - entities: - - uid: 82 + - uid: 15098 components: + - type: MetaData + name: Brig - type: Transform - pos: -26.5,-9.5 + pos: -44.5,-8.5 parent: 2 - - uid: 83 + - uid: 15102 components: + - type: MetaData + name: Brig - type: Transform - pos: -46.5,-5.5 + pos: -44.5,-9.5 parent: 2 - - uid: 85 +- proto: AirlockSecurityLawyerGlassLocked + entities: + - uid: 83 components: + - type: MetaData + name: Visitation - type: Transform - pos: -44.5,-9.5 + pos: -46.5,-5.5 parent: 2 - uid: 86 components: + - type: MetaData + name: Security - type: Transform pos: -24.5,-6.5 parent: 2 - - uid: 87 + - uid: 14376 components: + - type: MetaData + name: Brig - type: Transform - pos: -26.5,-8.5 + pos: -29.5,-11.5 parent: 2 - - uid: 88 + - uid: 14379 components: + - type: MetaData + name: Brig - type: Transform - pos: -34.5,-8.5 + pos: -28.5,-11.5 parent: 2 - - uid: 89 + - uid: 14380 components: + - type: MetaData + name: Brig - type: Transform - pos: -34.5,-9.5 + pos: -26.5,-8.5 parent: 2 - - uid: 91 + - uid: 14383 components: + - type: MetaData + name: Brig - type: Transform - pos: -44.5,-8.5 + pos: -26.5,-10.5 parent: 2 - proto: AirlockSecurityLawyerLocked entities: - - uid: 95 - components: - - type: Transform - pos: -28.5,-7.5 - parent: 2 - uid: 96 components: + - type: MetaData + name: Security Side Door - type: Transform pos: -19.5,-8.5 parent: 2 - proto: AirlockSecurityLocked entities: - - uid: 420 + - uid: 14675 components: + - type: MetaData + name: Interrogation Chamber - type: Transform - pos: -22.5,-10.5 + pos: -28.5,-7.5 parent: 2 -- proto: AirlockServiceLocked - entities: - - uid: 426 + - uid: 14741 components: + - type: MetaData + name: Firing Range - type: Transform - rot: 1.5707963267948966 rad - pos: 34.5,-13.5 + pos: -41.5,-15.5 parent: 2 - proto: AirlockVirologyLocked entities: - uid: 1598 components: + - type: MetaData + name: Virology - type: Transform - rot: 3.141592653589793 rad pos: 34.5,6.5 parent: 2 - uid: 14628 components: + - type: MetaData + name: Virology - type: Transform - rot: 3.141592653589793 rad pos: 34.5,2.5 parent: 2 - proto: AirSensor @@ -10123,12 +10479,38 @@ entities: - type: DeviceNetwork deviceLists: - 6319 + - uid: 14330 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,-11.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7614 + - uid: 14362 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,-14.5 + parent: 2 - uid: 14604 components: - type: Transform rot: 1.5707963267948966 rad pos: 34.5,9.5 parent: 2 +- proto: AirSensorVox + entities: + - uid: 19640 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,-5.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 19641 - proto: AltarHeaven entities: - uid: 8495 @@ -10280,13 +10662,6 @@ entities: rot: 1.5707963267948966 rad pos: -34.5,0.5 parent: 2 - - uid: 469 - components: - - type: MetaData - name: APC (Sec, West) - - type: Transform - pos: -35.5,-10.5 - parent: 2 - uid: 470 components: - type: MetaData @@ -10418,14 +10793,6 @@ entities: rot: 1.5707963267948966 rad pos: -2.5,39.5 parent: 2 - - uid: 489 - components: - - type: MetaData - name: APC (Sec, East) - - type: Transform - rot: -1.5707963267948966 rad - pos: -26.5,-10.5 - parent: 2 - uid: 490 components: - type: MetaData @@ -10539,6 +10906,21 @@ entities: - type: Transform pos: 44.5,14.5 parent: 2 + - uid: 4240 + components: + - type: MetaData + name: APC (Security East) + - type: Transform + pos: -27.5,-7.5 + parent: 2 + - uid: 4241 + components: + - type: MetaData + name: APC (Security West) + - type: Transform + rot: 1.5707963267948966 rad + pos: -42.5,-11.5 + parent: 2 - uid: 5187 components: - type: MetaData @@ -10547,6 +10929,14 @@ entities: rot: -1.5707963267948966 rad pos: -40.5,50.5 parent: 2 + - uid: 7241 + components: + - type: MetaData + name: APC (Armory) + - type: Transform + rot: 1.5707963267948966 rad + pos: -44.5,-3.5 + parent: 2 - uid: 14069 components: - type: MetaData @@ -10602,14 +10992,6 @@ entities: - type: Transform pos: -48.5,38.5 parent: 2 - - uid: 503 - components: - - type: MetaData - name: APC (Sec, Armory) - - type: Transform - rot: -1.5707963267948966 rad - pos: -38.5,-1.5 - parent: 2 - uid: 504 components: - type: MetaData @@ -10626,8 +11008,6 @@ entities: parent: 2 - type: Apc hasAccess: True - lastExternalState: Good - lastChargeState: Full - uid: 506 components: - type: MetaData @@ -10673,13 +11053,6 @@ entities: - type: Transform pos: 0.5,-11.5 parent: 2 -- proto: AppleSeeds - entities: - - uid: 512 - components: - - type: Transform - pos: 32.64337,-12.701023 - parent: 2 - proto: ArtifactAnalyzerMachineCircuitboard entities: - uid: 513 @@ -10687,120 +11060,126 @@ entities: - type: Transform pos: -14.623301,-30.68674 parent: 2 -- proto: AtmosDeviceFanTiny +- proto: AsimovCircuitBoard entities: - - uid: 205 + - uid: 19642 components: - type: Transform - pos: -54.5,20.5 + pos: -17.470583,-83.37672 parent: 2 - - uid: 514 +- proto: AtmosDeviceFanDirectional + entities: + - uid: 519 components: - type: Transform - pos: -16.5,10.5 + pos: 21.5,-35.5 parent: 2 - - uid: 515 + - uid: 520 components: - type: Transform - pos: -14.5,8.5 + pos: 19.5,-35.5 parent: 2 - - uid: 516 + - uid: 522 components: - type: Transform - pos: -11.5,15.5 + rot: 3.141592653589793 rad + pos: 10.5,31.5 parent: 2 - - uid: 517 + - uid: 527 components: - type: Transform - pos: -11.5,10.5 + rot: 1.5707963267948966 rad + pos: 43.5,-19.5 parent: 2 - - uid: 518 + - uid: 528 components: - type: Transform - pos: -14.5,16.5 + rot: 1.5707963267948966 rad + pos: 43.5,-17.5 parent: 2 - - uid: 519 + - uid: 529 components: - type: Transform - pos: 19.5,-35.5 + rot: 1.5707963267948966 rad + pos: 43.5,-11.5 parent: 2 - - uid: 520 + - uid: 530 components: - type: Transform - pos: 21.5,-35.5 + rot: 1.5707963267948966 rad + pos: 43.5,-9.5 parent: 2 - - uid: 522 + - uid: 531 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,31.5 + pos: 30.5,-24.5 parent: 2 - - uid: 527 + - uid: 534 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 43.5,-19.5 + pos: 37.5,-24.5 parent: 2 - - uid: 528 + - uid: 596 components: - type: Transform rot: -1.5707963267948966 rad - pos: 43.5,-17.5 + pos: -60.5,22.5 parent: 2 - - uid: 529 + - uid: 4325 components: - type: Transform rot: -1.5707963267948966 rad - pos: 43.5,-11.5 + pos: -60.5,20.5 parent: 2 - - uid: 530 + - uid: 6088 components: - type: Transform rot: -1.5707963267948966 rad - pos: 43.5,-9.5 + pos: -60.5,12.5 parent: 2 - - uid: 531 + - uid: 6163 components: - type: Transform rot: -1.5707963267948966 rad - pos: 37.5,-24.5 + pos: -60.5,14.5 parent: 2 - - uid: 534 + - uid: 8988 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,-24.5 + rot: 3.141592653589793 rad + pos: -37.5,48.5 parent: 2 - - uid: 5984 + - uid: 8993 components: - type: Transform - pos: -54.5,12.5 + pos: -39.5,-52.5 parent: 2 - - uid: 11381 + - uid: 10391 components: - type: Transform - pos: -54.5,22.5 + pos: -45.5,-52.5 parent: 2 - - uid: 12112 +- proto: AtmosDeviceFanTiny + entities: + - uid: 514 components: - type: Transform - pos: -54.5,14.5 + pos: -16.5,10.5 parent: 2 - - uid: 13414 + - uid: 516 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -37.5,48.5 + pos: -11.5,15.5 parent: 2 - - uid: 19480 + - uid: 517 components: - type: Transform - pos: -39.5,-52.5 + pos: -11.5,10.5 parent: 2 - - uid: 19481 + - uid: 518 components: - type: Transform - pos: -45.5,-52.5 + pos: -14.5,16.5 parent: 2 - proto: AtmosFixBlockerMarker entities: @@ -10834,6 +11213,11 @@ entities: - type: Transform pos: 5.5,-51.5 parent: 2 + - uid: 7779 + components: + - type: Transform + pos: 34.5,-2.5 + parent: 2 - uid: 19427 components: - type: Transform @@ -11092,6 +11476,438 @@ entities: - type: Transform pos: 7.5,-49.5 parent: 2 +- proto: AtmosFixVoxMarker + entities: + - uid: 264 + components: + - type: Transform + pos: 33.5,-9.5 + parent: 2 + - uid: 265 + components: + - type: Transform + pos: 33.5,-11.5 + parent: 2 + - uid: 267 + components: + - type: Transform + pos: 31.5,-8.5 + parent: 2 + - uid: 426 + components: + - type: Transform + pos: 28.5,-2.5 + parent: 2 + - uid: 512 + components: + - type: Transform + pos: 34.5,-8.5 + parent: 2 + - uid: 1153 + components: + - type: Transform + pos: 34.5,-3.5 + parent: 2 + - uid: 1183 + components: + - type: Transform + pos: 32.5,-11.5 + parent: 2 + - uid: 1281 + components: + - type: Transform + pos: 34.5,-5.5 + parent: 2 + - uid: 1282 + components: + - type: Transform + pos: 35.5,-8.5 + parent: 2 + - uid: 1284 + components: + - type: Transform + pos: 32.5,-10.5 + parent: 2 + - uid: 1362 + components: + - type: Transform + pos: 35.5,-6.5 + parent: 2 + - uid: 4684 + components: + - type: Transform + pos: 29.5,-6.5 + parent: 2 + - uid: 5643 + components: + - type: Transform + pos: 29.5,-8.5 + parent: 2 + - uid: 6090 + components: + - type: Transform + pos: 35.5,-3.5 + parent: 2 + - uid: 6156 + components: + - type: Transform + pos: 32.5,-8.5 + parent: 2 + - uid: 7170 + components: + - type: Transform + pos: 32.5,-9.5 + parent: 2 + - uid: 7465 + components: + - type: Transform + pos: 34.5,-2.5 + parent: 2 + - uid: 7466 + components: + - type: Transform + pos: 33.5,-2.5 + parent: 2 + - uid: 7467 + components: + - type: Transform + pos: 29.5,-9.5 + parent: 2 + - uid: 7468 + components: + - type: Transform + pos: 34.5,-10.5 + parent: 2 + - uid: 7780 + components: + - type: Transform + pos: 33.5,-10.5 + parent: 2 + - uid: 7781 + components: + - type: Transform + pos: 28.5,-2.5 + parent: 2 + - uid: 7782 + components: + - type: Transform + pos: 28.5,-3.5 + parent: 2 + - uid: 8197 + components: + - type: Transform + pos: 35.5,-4.5 + parent: 2 + - uid: 8198 + components: + - type: Transform + pos: 33.5,-8.5 + parent: 2 + - uid: 8199 + components: + - type: Transform + pos: 33.5,-5.5 + parent: 2 + - uid: 8200 + components: + - type: Transform + pos: 28.5,-12.5 + parent: 2 + - uid: 8201 + components: + - type: Transform + pos: 29.5,-2.5 + parent: 2 + - uid: 8202 + components: + - type: Transform + pos: 28.5,-5.5 + parent: 2 + - uid: 8203 + components: + - type: Transform + pos: 35.5,-5.5 + parent: 2 + - uid: 8204 + components: + - type: Transform + pos: 33.5,-3.5 + parent: 2 + - uid: 8205 + components: + - type: Transform + pos: 33.5,-7.5 + parent: 2 + - uid: 8206 + components: + - type: Transform + pos: 33.5,-12.5 + parent: 2 + - uid: 8207 + components: + - type: Transform + pos: 29.5,-7.5 + parent: 2 + - uid: 8208 + components: + - type: Transform + pos: 29.5,-3.5 + parent: 2 + - uid: 8210 + components: + - type: Transform + pos: 33.5,-4.5 + parent: 2 + - uid: 8214 + components: + - type: Transform + pos: 34.5,-4.5 + parent: 2 + - uid: 8215 + components: + - type: Transform + pos: 34.5,-9.5 + parent: 2 + - uid: 8217 + components: + - type: Transform + pos: 32.5,-7.5 + parent: 2 + - uid: 8235 + components: + - type: Transform + pos: 31.5,-9.5 + parent: 2 + - uid: 8364 + components: + - type: Transform + pos: 28.5,-11.5 + parent: 2 + - uid: 9924 + components: + - type: Transform + pos: 30.5,-5.5 + parent: 2 + - uid: 9926 + components: + - type: Transform + pos: 32.5,-12.5 + parent: 2 + - uid: 10018 + components: + - type: Transform + pos: 34.5,-6.5 + parent: 2 + - uid: 10057 + components: + - type: Transform + pos: 29.5,-10.5 + parent: 2 + - uid: 10248 + components: + - type: Transform + pos: 32.5,-6.5 + parent: 2 + - uid: 10249 + components: + - type: Transform + pos: 34.5,-11.5 + parent: 2 + - uid: 10432 + components: + - type: Transform + pos: 29.5,-12.5 + parent: 2 + - uid: 10433 + components: + - type: Transform + pos: 35.5,-7.5 + parent: 2 + - uid: 10706 + components: + - type: Transform + pos: 29.5,-11.5 + parent: 2 + - uid: 11203 + components: + - type: Transform + pos: 32.5,-5.5 + parent: 2 + - uid: 11418 + components: + - type: Transform + pos: 34.5,-7.5 + parent: 2 + - uid: 11558 + components: + - type: Transform + pos: 31.5,-10.5 + parent: 2 + - uid: 11681 + components: + - type: Transform + pos: 31.5,-6.5 + parent: 2 + - uid: 11683 + components: + - type: Transform + pos: 35.5,-9.5 + parent: 2 + - uid: 11685 + components: + - type: Transform + pos: 31.5,-4.5 + parent: 2 + - uid: 11702 + components: + - type: Transform + pos: 30.5,-6.5 + parent: 2 + - uid: 11705 + components: + - type: Transform + pos: 30.5,-2.5 + parent: 2 + - uid: 11706 + components: + - type: Transform + pos: 28.5,-4.5 + parent: 2 + - uid: 11707 + components: + - type: Transform + pos: 29.5,-5.5 + parent: 2 + - uid: 11708 + components: + - type: Transform + pos: 32.5,-3.5 + parent: 2 + - uid: 11709 + components: + - type: Transform + pos: 35.5,-11.5 + parent: 2 + - uid: 11710 + components: + - type: Transform + pos: 31.5,-11.5 + parent: 2 + - uid: 11884 + components: + - type: Transform + pos: 30.5,-7.5 + parent: 2 + - uid: 11885 + components: + - type: Transform + pos: 31.5,-2.5 + parent: 2 + - uid: 12222 + components: + - type: Transform + pos: 30.5,-8.5 + parent: 2 + - uid: 12405 + components: + - type: Transform + pos: 31.5,-5.5 + parent: 2 + - uid: 12825 + components: + - type: Transform + pos: 30.5,-4.5 + parent: 2 + - uid: 12950 + components: + - type: Transform + pos: 30.5,-3.5 + parent: 2 + - uid: 13275 + components: + - type: Transform + pos: 32.5,-4.5 + parent: 2 + - uid: 13442 + components: + - type: Transform + pos: 32.5,-2.5 + parent: 2 + - uid: 13461 + components: + - type: Transform + pos: 31.5,-12.5 + parent: 2 + - uid: 13556 + components: + - type: Transform + pos: 30.5,-9.5 + parent: 2 + - uid: 13919 + components: + - type: Transform + pos: 30.5,-12.5 + parent: 2 + - uid: 13920 + components: + - type: Transform + pos: 30.5,-10.5 + parent: 2 + - uid: 13993 + components: + - type: Transform + pos: 31.5,-3.5 + parent: 2 + - uid: 14680 + components: + - type: Transform + pos: 30.5,-11.5 + parent: 2 + - uid: 15715 + components: + - type: Transform + pos: 28.5,-10.5 + parent: 2 + - uid: 15894 + components: + - type: Transform + pos: 28.5,-9.5 + parent: 2 + - uid: 15896 + components: + - type: Transform + pos: 28.5,-6.5 + parent: 2 + - uid: 15935 + components: + - type: Transform + pos: 29.5,-4.5 + parent: 2 + - uid: 16549 + components: + - type: Transform + pos: 33.5,-6.5 + parent: 2 + - uid: 16676 + components: + - type: Transform + pos: 35.5,-2.5 + parent: 2 + - uid: 16924 + components: + - type: Transform + pos: 34.5,-12.5 + parent: 2 + - uid: 19519 + components: + - type: Transform + pos: 35.5,-12.5 + parent: 2 + - uid: 19530 + components: + - type: Transform + pos: 28.5,-8.5 + parent: 2 - proto: Autolathe entities: - uid: 583 @@ -11228,6 +12044,12 @@ entities: rot: 1.5707963267948966 rad pos: 34.5,23.5 parent: 2 + - uid: 19599 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -49.5,42.5 + parent: 2 - proto: BarricadeDirectional entities: - uid: 615 @@ -11272,6 +12094,14 @@ entities: - type: Transform pos: -6.5,-1.5 parent: 2 +- proto: BarSignSpacebucks + entities: + - uid: 14048 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -56.5,17.5 + parent: 2 - proto: BarSignTheSingulo entities: - uid: 9645 @@ -11298,12 +12128,6 @@ entities: - type: Transform pos: -24.5,-78.5 parent: 2 - - uid: 596 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,-82.5 - parent: 2 - uid: 597 components: - type: Transform @@ -11424,26 +12248,6 @@ entities: - type: Transform pos: -12.5,-3.5 parent: 2 - - uid: 610 - components: - - type: Transform - pos: -43.5,-11.5 - parent: 2 - - uid: 611 - components: - - type: Transform - pos: -43.5,-14.5 - parent: 2 - - uid: 612 - components: - - type: Transform - pos: -40.5,-18.5 - parent: 2 - - uid: 613 - components: - - type: Transform - pos: -34.5,-18.5 - parent: 2 - uid: 614 components: - type: Transform @@ -11489,21 +12293,46 @@ entities: - type: Transform pos: -33.5,10.5 parent: 2 - - uid: 2580 + - uid: 908 components: - type: Transform - pos: -33.5,9.5 + pos: -45.5,-13.5 parent: 2 - - uid: 5969 + - uid: 1194 components: - type: Transform - pos: -36.5,-4.5 + pos: -31.5,-7.5 + parent: 2 + - uid: 1369 + components: + - type: Transform + pos: -35.5,-4.5 + parent: 2 + - uid: 2580 + components: + - type: Transform + pos: -33.5,9.5 parent: 2 - uid: 6595 components: - type: Transform pos: -38.5,10.5 parent: 2 + - uid: 6750 + components: + - type: Transform + pos: -34.5,-18.5 + parent: 2 + - uid: 7904 + components: + - type: Transform + pos: -39.5,-18.5 + parent: 2 + - uid: 8981 + components: + - type: Transform + pos: -31.5,-14.5 + parent: 2 - uid: 10754 components: - type: Transform @@ -11544,11 +12373,6 @@ entities: - type: Transform pos: -36.5,11.5 parent: 2 - - uid: 17012 - components: - - type: Transform - pos: -47.5,-17.5 - parent: 2 - uid: 19360 components: - type: Transform @@ -11619,10 +12443,10 @@ entities: parent: 2 - proto: BedsheetHOS entities: - - uid: 5841 + - uid: 910 components: - type: Transform - pos: -36.5,-4.5 + pos: -45.5,-13.5 parent: 2 - proto: BedsheetMedical entities: @@ -11675,28 +12499,6 @@ entities: - type: Transform pos: -50.5,5.5 parent: 2 -- proto: BedsheetOrange - entities: - - uid: 655 - components: - - type: Transform - pos: -43.5,-11.5 - parent: 2 - - uid: 656 - components: - - type: Transform - pos: -43.5,-14.5 - parent: 2 - - uid: 657 - components: - - type: Transform - pos: -40.5,-18.5 - parent: 2 - - uid: 658 - components: - - type: Transform - pos: -34.5,-18.5 - parent: 2 - proto: BedsheetQM entities: - uid: 661 @@ -11746,6 +12548,21 @@ entities: - type: Transform pos: -33.5,10.5 parent: 2 + - uid: 7439 + components: + - type: Transform + pos: -39.5,-18.5 + parent: 2 + - uid: 8968 + components: + - type: Transform + pos: -31.5,-14.5 + parent: 2 + - uid: 10649 + components: + - type: Transform + pos: -34.5,-18.5 + parent: 2 - uid: 10697 components: - type: Transform @@ -11781,16 +12598,23 @@ entities: - type: Transform pos: -33.5,11.5 parent: 2 - - uid: 16104 + - uid: 14249 components: - type: Transform - pos: -47.5,-17.5 + pos: -31.5,-7.5 parent: 2 - uid: 19361 components: - type: Transform pos: 60.5,5.5 parent: 2 +- proto: BedsheetUSA + entities: + - uid: 1373 + components: + - type: Transform + pos: -35.5,-4.5 + parent: 2 - proto: BenchPewLeft entities: - uid: 7328 @@ -11815,6 +12639,18 @@ entities: rot: 3.141592653589793 rad pos: 43.5,24.5 parent: 2 +- proto: BigBox + entities: + - uid: 19197 + components: + - type: Transform + pos: 3.4621768,27.520672 + parent: 2 + - uid: 19215 + components: + - type: Transform + pos: 12.495697,-12.507937 + parent: 2 - proto: BiomassReclaimer entities: - uid: 673 @@ -11829,51 +12665,41 @@ entities: - type: Transform pos: 18.5,-33.5 parent: 2 - - type: DeviceLinkSink - links: - - 13609 - uid: 676 components: - type: Transform pos: 18.5,-35.5 parent: 2 - - type: DeviceLinkSink - links: - - 13609 - uid: 677 components: - type: Transform pos: 22.5,-35.5 parent: 2 - - type: DeviceLinkSink - links: - - 13609 - uid: 678 components: - type: Transform pos: 22.5,-33.5 parent: 2 - - type: DeviceLinkSink - links: - - 13609 - uid: 679 components: - type: Transform - rot: 3.141592653589793 rad pos: -9.5,-48.5 parent: 2 - - type: DeviceLinkSink - links: - - 13593 - uid: 680 components: - type: Transform - rot: 3.141592653589793 rad pos: -9.5,-49.5 parent: 2 - - type: DeviceLinkSink - links: - - 13593 + - uid: 19547 + components: + - type: Transform + pos: -63.5,36.5 + parent: 2 + - uid: 19564 + components: + - type: Transform + pos: -63.5,32.5 + parent: 2 - proto: BlastDoorOpen entities: - uid: 671 @@ -11881,25 +12707,16 @@ entities: - type: Transform pos: 3.5,38.5 parent: 2 - - type: DeviceLinkSink - links: - - 12262 - uid: 681 components: - type: Transform pos: 3.5,39.5 parent: 2 - - type: DeviceLinkSink - links: - - 12262 - uid: 682 components: - type: Transform pos: 2.5,42.5 parent: 2 - - type: DeviceLinkSink - links: - - 12262 - proto: BoardGameSpawner entities: - uid: 698 @@ -12114,24 +12931,24 @@ entities: parent: 2 - proto: BoxBeaker entities: - - uid: 722 + - uid: 14194 components: - type: Transform - pos: -19.70403,7.0739126 + pos: -19.59238,6.634366 parent: 2 -- proto: BoxBeanbag +- proto: BoxBodyBag entities: - - uid: 723 + - uid: 724 components: - type: Transform - pos: -25.517311,-14.518888 + pos: 28.351997,18.416313 parent: 2 -- proto: BoxBodyBag +- proto: BoxEnvelope entities: - - uid: 724 + - uid: 19645 components: - type: Transform - pos: 28.351997,18.416313 + pos: 7.51787,-4.344958 parent: 2 - proto: BoxFlare entities: @@ -12160,24 +12977,19 @@ entities: rot: 3.141592653589793 rad pos: -41.962433,21.763376 parent: 2 -- proto: BoxingBell +- proto: BoxHandcuff entities: - - uid: 11158 + - uid: 1190 components: - type: Transform - pos: 47.5,1.5 + pos: -24.524612,-12.4012 parent: 2 -- proto: BoxLethalshot +- proto: BoxingBell entities: - - uid: 737 - components: - - type: Transform - pos: -43.540894,0.6267514 - parent: 2 - - uid: 738 + - uid: 11158 components: - type: Transform - pos: -40.613728,-4.5623055 + pos: 47.5,1.5 parent: 2 - proto: BoxLightMixed entities: @@ -12191,6 +13003,13 @@ entities: - type: Transform pos: -1.2286556,10.361396 parent: 2 +- proto: BoxMailCapsulePrimed + entities: + - uid: 19644 + components: + - type: Transform + pos: 4.521141,-2.3962164 + parent: 2 - proto: BoxMaintenanceLightbulb entities: - uid: 742 @@ -12217,20 +13036,6 @@ entities: - type: Transform pos: 8.360393,9.476925 parent: 2 -- proto: BoxShotgunIncendiary - entities: - - uid: 746 - components: - - type: Transform - pos: -43.32206,0.5062567 - parent: 2 -- proto: BoxShotgunSlug - entities: - - uid: 747 - components: - - type: Transform - pos: -40.363728,-4.3682694 - parent: 2 - proto: BoxSyringe entities: - uid: 642 @@ -12238,13 +13043,6 @@ entities: - type: Transform pos: -33.49611,1.6959283 parent: 2 -- proto: BoxZiptie - entities: - - uid: 749 - components: - - type: Transform - pos: -26.289627,-11.244784 - parent: 2 - proto: BrbSign entities: - uid: 750 @@ -12266,55 +13064,15 @@ entities: parent: 2 - proto: BrigTimer entities: - - uid: 751 - components: - - type: Transform - pos: -40.5,-10.5 - parent: 2 - - type: SignalTimer - label: CEL-1 - - type: DeviceLinkSource - linkedPorts: - 93: - - Start: Close - - Timer: AutoClose - - Timer: Open - - uid: 752 - components: - - type: Transform - pos: -38.5,-16.5 - parent: 2 - - type: SignalTimer - label: CEL-3 - - type: DeviceLinkSource - linkedPorts: - 92: - - Start: Close - - Timer: AutoClose - - Timer: Open - - uid: 753 - components: - - type: Transform - pos: -41.5,-13.5 - parent: 2 - - type: SignalTimer - label: CEL-2 - - type: DeviceLinkSource - linkedPorts: - 84: - - Start: Close - - Timer: AutoClose - - Timer: Open - - uid: 754 + - uid: 613 components: - type: Transform - pos: -36.5,-16.5 + rot: -1.5707963267948966 rad + pos: -33.5,-13.5 parent: 2 - - type: SignalTimer - label: CEL-4 - type: DeviceLinkSource linkedPorts: - 90: + 14701: - Start: Close - Timer: AutoClose - Timer: Open @@ -12348,6 +13106,29 @@ entities: rot: 3.141592653589793 rad pos: -57.5,-13.5 parent: 2 + - uid: 6400 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -36.5,-16.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 14711: + - Start: Close + - Timer: AutoClose + - Timer: Open + - uid: 16376 + components: + - type: Transform + pos: -38.5,-16.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 14737: + - Start: Close + - Timer: AutoClose + - Timer: Open - proto: Brutepack1 entities: - uid: 11719 @@ -12357,21 +13138,11 @@ entities: parent: 2 - proto: Bucket entities: - - uid: 760 - components: - - type: Transform - pos: -17.40326,4.298378 - parent: 2 - uid: 761 components: - type: Transform pos: 1.2489537,10.331755 parent: 2 - - uid: 762 - components: - - type: Transform - pos: 33.375,-12.461527 - parent: 2 - uid: 763 components: - type: Transform @@ -12382,11 +13153,29 @@ entities: - type: Transform pos: 1.4052037,10.873797 parent: 2 + - uid: 7573 + components: + - type: Transform + pos: -13.219965,6.9201417 + parent: 2 - uid: 17486 components: - type: Transform pos: -7.1436305,-20.893435 parent: 2 +- proto: ButtonFrameCautionSecurity + entities: + - uid: 19606 + components: + - type: Transform + pos: -58.5,38.5 + parent: 2 + - uid: 19607 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -58.5,30.5 + parent: 2 - proto: ButtonFrameExit entities: - uid: 11698 @@ -12397,6 +13186,11 @@ entities: parent: 2 - proto: CableApcExtension entities: + - uid: 179 + components: + - type: Transform + pos: -39.5,-16.5 + parent: 2 - uid: 212 components: - type: Transform @@ -12460,7 +13254,7 @@ entities: - uid: 766 components: - type: Transform - pos: -17.5,4.5 + pos: -16.5,4.5 parent: 2 - uid: 767 components: @@ -12987,11 +13781,6 @@ entities: - type: Transform pos: 21.5,-31.5 parent: 2 - - uid: 873 - components: - - type: Transform - pos: 5.5,-28.5 - parent: 2 - uid: 874 components: - type: Transform @@ -13287,11 +14076,6 @@ entities: - type: Transform pos: -37.5,25.5 parent: 2 - - uid: 942 - components: - - type: Transform - pos: -41.5,-2.5 - parent: 2 - uid: 943 components: - type: Transform @@ -13357,36 +14141,6 @@ entities: - type: Transform pos: -9.5,-28.5 parent: 2 - - uid: 959 - components: - - type: Transform - pos: -38.5,-1.5 - parent: 2 - - uid: 960 - components: - - type: Transform - pos: -39.5,-1.5 - parent: 2 - - uid: 961 - components: - - type: Transform - pos: -41.5,-1.5 - parent: 2 - - uid: 962 - components: - - type: Transform - pos: -41.5,-0.5 - parent: 2 - - uid: 963 - components: - - type: Transform - pos: -41.5,0.5 - parent: 2 - - uid: 964 - components: - - type: Transform - pos: -40.5,-1.5 - parent: 2 - uid: 965 components: - type: Transform @@ -14222,26 +14976,6 @@ entities: - type: Transform pos: -39.5,7.5 parent: 2 - - uid: 1151 - components: - - type: Transform - pos: -41.5,-3.5 - parent: 2 - - uid: 1152 - components: - - type: Transform - pos: -41.5,-4.5 - parent: 2 - - uid: 1153 - components: - - type: Transform - pos: -41.5,-5.5 - parent: 2 - - uid: 1154 - components: - - type: Transform - pos: -42.5,-5.5 - parent: 2 - uid: 1156 components: - type: Transform @@ -14347,161 +15081,6 @@ entities: - type: Transform pos: -29.5,6.5 parent: 2 - - uid: 1180 - components: - - type: Transform - pos: -43.5,-5.5 - parent: 2 - - uid: 1181 - components: - - type: Transform - pos: -44.5,-5.5 - parent: 2 - - uid: 1182 - components: - - type: Transform - pos: -40.5,-5.5 - parent: 2 - - uid: 1183 - components: - - type: Transform - pos: -39.5,-5.5 - parent: 2 - - uid: 1184 - components: - - type: Transform - pos: -38.5,-5.5 - parent: 2 - - uid: 1185 - components: - - type: Transform - pos: -37.5,-5.5 - parent: 2 - - uid: 1186 - components: - - type: Transform - pos: -36.5,-5.5 - parent: 2 - - uid: 1187 - components: - - type: Transform - pos: -35.5,-10.5 - parent: 2 - - uid: 1188 - components: - - type: Transform - pos: -36.5,-10.5 - parent: 2 - - uid: 1189 - components: - - type: Transform - pos: -37.5,-10.5 - parent: 2 - - uid: 1190 - components: - - type: Transform - pos: -38.5,-10.5 - parent: 2 - - uid: 1191 - components: - - type: Transform - pos: -39.5,-10.5 - parent: 2 - - uid: 1192 - components: - - type: Transform - pos: -39.5,-11.5 - parent: 2 - - uid: 1193 - components: - - type: Transform - pos: -39.5,-12.5 - parent: 2 - - uid: 1194 - components: - - type: Transform - pos: -39.5,-13.5 - parent: 2 - - uid: 1195 - components: - - type: Transform - pos: -39.5,-14.5 - parent: 2 - - uid: 1196 - components: - - type: Transform - pos: -39.5,-15.5 - parent: 2 - - uid: 1197 - components: - - type: Transform - pos: -35.5,-11.5 - parent: 2 - - uid: 1198 - components: - - type: Transform - pos: -35.5,-12.5 - parent: 2 - - uid: 1199 - components: - - type: Transform - pos: -35.5,-13.5 - parent: 2 - - uid: 1200 - components: - - type: Transform - pos: -35.5,-14.5 - parent: 2 - - uid: 1201 - components: - - type: Transform - pos: -26.5,-10.5 - parent: 2 - - uid: 1202 - components: - - type: Transform - pos: -27.5,-10.5 - parent: 2 - - uid: 1203 - components: - - type: Transform - pos: -28.5,-10.5 - parent: 2 - - uid: 1204 - components: - - type: Transform - pos: -28.5,-9.5 - parent: 2 - - uid: 1205 - components: - - type: Transform - pos: -28.5,-8.5 - parent: 2 - - uid: 1206 - components: - - type: Transform - pos: -28.5,-7.5 - parent: 2 - - uid: 1207 - components: - - type: Transform - pos: -28.5,-6.5 - parent: 2 - - uid: 1208 - components: - - type: Transform - pos: -28.5,-5.5 - parent: 2 - - uid: 1209 - components: - - type: Transform - pos: -27.5,-8.5 - parent: 2 - - uid: 1210 - components: - - type: Transform - pos: -26.5,-8.5 - parent: 2 - uid: 1211 components: - type: Transform @@ -14552,41 +15131,6 @@ entities: - type: Transform pos: -22.5,-3.5 parent: 2 - - uid: 1221 - components: - - type: Transform - pos: -29.5,-8.5 - parent: 2 - - uid: 1222 - components: - - type: Transform - pos: -30.5,-8.5 - parent: 2 - - uid: 1223 - components: - - type: Transform - pos: -31.5,-8.5 - parent: 2 - - uid: 1224 - components: - - type: Transform - pos: -32.5,-8.5 - parent: 2 - - uid: 1225 - components: - - type: Transform - pos: -32.5,-7.5 - parent: 2 - - uid: 1226 - components: - - type: Transform - pos: -32.5,-6.5 - parent: 2 - - uid: 1227 - components: - - type: Transform - pos: -32.5,-5.5 - parent: 2 - uid: 1228 components: - type: Transform @@ -14652,26 +15196,6 @@ entities: - type: Transform pos: -8.5,-20.5 parent: 2 - - uid: 1241 - components: - - type: Transform - pos: -28.5,-11.5 - parent: 2 - - uid: 1242 - components: - - type: Transform - pos: -28.5,-12.5 - parent: 2 - - uid: 1243 - components: - - type: Transform - pos: -28.5,-13.5 - parent: 2 - - uid: 1244 - components: - - type: Transform - pos: -28.5,-14.5 - parent: 2 - uid: 1245 components: - type: Transform @@ -14772,20 +15296,10 @@ entities: - type: Transform pos: -33.5,-20.5 parent: 2 - - uid: 1265 - components: - - type: Transform - pos: -38.5,-15.5 - parent: 2 - - uid: 1266 - components: - - type: Transform - pos: -37.5,-15.5 - parent: 2 - uid: 1267 components: - type: Transform - pos: -37.5,-16.5 + pos: -41.5,-5.5 parent: 2 - uid: 1268 components: @@ -14850,27 +15364,7 @@ entities: - uid: 1280 components: - type: Transform - pos: -43.5,-19.5 - parent: 2 - - uid: 1281 - components: - - type: Transform - pos: -43.5,-18.5 - parent: 2 - - uid: 1282 - components: - - type: Transform - pos: -44.5,-18.5 - parent: 2 - - uid: 1283 - components: - - type: Transform - pos: -45.5,-18.5 - parent: 2 - - uid: 1284 - components: - - type: Transform - pos: -46.5,-18.5 + pos: -42.5,-5.5 parent: 2 - uid: 1285 components: @@ -15257,90 +15751,35 @@ entities: - type: Transform pos: -49.5,-15.5 parent: 2 - - uid: 1362 - components: - - type: Transform - pos: -29.5,-14.5 - parent: 2 - - uid: 1363 - components: - - type: Transform - pos: -30.5,-14.5 - parent: 2 - uid: 1364 components: - type: Transform - pos: -31.5,-14.5 + pos: -41.5,-6.5 parent: 2 - uid: 1365 components: - type: Transform - pos: -39.5,-9.5 + pos: -40.5,-6.5 parent: 2 - uid: 1366 components: - type: Transform - pos: -35.5,-9.5 + pos: -39.5,-6.5 parent: 2 - uid: 1367 components: - type: Transform - pos: -40.5,-9.5 + pos: -38.5,-6.5 parent: 2 - uid: 1368 components: - type: Transform - pos: -41.5,-9.5 - parent: 2 - - uid: 1369 - components: - - type: Transform - pos: -42.5,-9.5 - parent: 2 - - uid: 1370 - components: - - type: Transform - pos: -22.5,-9.5 - parent: 2 - - uid: 1371 - components: - - type: Transform - pos: -22.5,-10.5 - parent: 2 - - uid: 1372 - components: - - type: Transform - pos: -22.5,-11.5 - parent: 2 - - uid: 1373 - components: - - type: Transform - pos: -22.5,-12.5 - parent: 2 - - uid: 1374 - components: - - type: Transform - pos: -22.5,-13.5 - parent: 2 - - uid: 1375 - components: - - type: Transform - pos: -22.5,-14.5 - parent: 2 - - uid: 1376 - components: - - type: Transform - pos: -22.5,-15.5 + pos: -37.5,-6.5 parent: 2 - uid: 1377 components: - type: Transform - pos: -21.5,-14.5 - parent: 2 - - uid: 1378 - components: - - type: Transform - pos: -21.5,-15.5 + pos: -36.5,-6.5 parent: 2 - uid: 1379 components: @@ -21945,7 +22384,7 @@ entities: - uid: 2758 components: - type: Transform - pos: -17.5,3.5 + pos: -16.5,3.5 parent: 2 - uid: 2759 components: @@ -22427,31 +22866,6 @@ entities: - type: Transform pos: -32.5,-18.5 parent: 2 - - uid: 2858 - components: - - type: Transform - pos: -40.5,-15.5 - parent: 2 - - uid: 2859 - components: - - type: Transform - pos: -41.5,-15.5 - parent: 2 - - uid: 2860 - components: - - type: Transform - pos: -39.5,-16.5 - parent: 2 - - uid: 2861 - components: - - type: Transform - pos: -40.5,-12.5 - parent: 2 - - uid: 2862 - components: - - type: Transform - pos: -41.5,-12.5 - parent: 2 - uid: 2863 components: - type: Transform @@ -23202,6 +23616,21 @@ entities: - type: Transform pos: 1.5,-44.5 parent: 2 + - uid: 4328 + components: + - type: Transform + pos: -41.5,-15.5 + parent: 2 + - uid: 4330 + components: + - type: Transform + pos: -42.5,-11.5 + parent: 2 + - uid: 4331 + components: + - type: Transform + pos: -37.5,-16.5 + parent: 2 - uid: 4390 components: - type: Transform @@ -23222,6 +23651,11 @@ entities: - type: Transform pos: 44.5,14.5 parent: 2 + - uid: 5063 + components: + - type: Transform + pos: -42.5,-17.5 + parent: 2 - uid: 5106 components: - type: Transform @@ -23287,11 +23721,26 @@ entities: - type: Transform pos: 44.5,6.5 parent: 2 + - uid: 5593 + components: + - type: Transform + pos: -41.5,-11.5 + parent: 2 + - uid: 5649 + components: + - type: Transform + pos: -39.5,-11.5 + parent: 2 - uid: 5692 components: - type: Transform pos: 21.5,-46.5 parent: 2 + - uid: 5739 + components: + - type: Transform + pos: -33.5,-7.5 + parent: 2 - uid: 5764 components: - type: Transform @@ -23307,6 +23756,26 @@ entities: - type: Transform pos: 36.5,11.5 parent: 2 + - uid: 5817 + components: + - type: Transform + pos: -33.5,-9.5 + parent: 2 + - uid: 5818 + components: + - type: Transform + pos: -33.5,-10.5 + parent: 2 + - uid: 5820 + components: + - type: Transform + pos: -33.5,-11.5 + parent: 2 + - uid: 5821 + components: + - type: Transform + pos: -34.5,-11.5 + parent: 2 - uid: 5927 components: - type: Transform @@ -23322,6 +23791,16 @@ entities: - type: Transform pos: -49.5,26.5 parent: 2 + - uid: 5970 + components: + - type: Transform + pos: -33.5,-8.5 + parent: 2 + - uid: 5974 + components: + - type: Transform + pos: -41.5,-9.5 + parent: 2 - uid: 6024 components: - type: Transform @@ -23352,6 +23831,16 @@ entities: - type: Transform pos: 0.5,-32.5 parent: 2 + - uid: 6089 + components: + - type: Transform + pos: -24.5,-14.5 + parent: 2 + - uid: 6093 + components: + - type: Transform + pos: -41.5,-0.5 + parent: 2 - uid: 6097 components: - type: Transform @@ -23382,6 +23871,11 @@ entities: - type: Transform pos: 33.5,4.5 parent: 2 + - uid: 6289 + components: + - type: Transform + pos: -20.5,-9.5 + parent: 2 - uid: 6313 components: - type: Transform @@ -23397,6 +23891,16 @@ entities: - type: Transform pos: 34.5,10.5 parent: 2 + - uid: 6427 + components: + - type: Transform + pos: -21.5,-9.5 + parent: 2 + - uid: 6428 + components: + - type: Transform + pos: -27.5,-7.5 + parent: 2 - uid: 6462 components: - type: Transform @@ -23422,6 +23926,36 @@ entities: - type: Transform pos: 34.5,7.5 parent: 2 + - uid: 6737 + components: + - type: Transform + pos: -21.5,-14.5 + parent: 2 + - uid: 6739 + components: + - type: Transform + pos: -27.5,-8.5 + parent: 2 + - uid: 6747 + components: + - type: Transform + pos: -20.5,-10.5 + parent: 2 + - uid: 6748 + components: + - type: Transform + pos: -20.5,-11.5 + parent: 2 + - uid: 6749 + components: + - type: Transform + pos: -23.5,-14.5 + parent: 2 + - uid: 6751 + components: + - type: Transform + pos: -26.5,-8.5 + parent: 2 - uid: 7105 components: - type: Transform @@ -23432,6 +23966,36 @@ entities: - type: Transform pos: 49.5,7.5 parent: 2 + - uid: 7311 + components: + - type: Transform + pos: -41.5,-3.5 + parent: 2 + - uid: 7323 + components: + - type: Transform + pos: -41.5,0.5 + parent: 2 + - uid: 7392 + components: + - type: Transform + pos: -21.5,-11.5 + parent: 2 + - uid: 7393 + components: + - type: Transform + pos: -21.5,-12.5 + parent: 2 + - uid: 7436 + components: + - type: Transform + pos: -25.5,-14.5 + parent: 2 + - uid: 7437 + components: + - type: Transform + pos: -21.5,-13.5 + parent: 2 - uid: 7543 components: - type: Transform @@ -23477,6 +24041,51 @@ entities: - type: Transform pos: -43.5,15.5 parent: 2 + - uid: 7856 + components: + - type: Transform + pos: -28.5,-9.5 + parent: 2 + - uid: 7861 + components: + - type: Transform + pos: -28.5,-14.5 + parent: 2 + - uid: 7894 + components: + - type: Transform + pos: -28.5,-12.5 + parent: 2 + - uid: 7939 + components: + - type: Transform + pos: -28.5,-13.5 + parent: 2 + - uid: 7940 + components: + - type: Transform + pos: -43.5,-3.5 + parent: 2 + - uid: 7941 + components: + - type: Transform + pos: -41.5,-4.5 + parent: 2 + - uid: 7951 + components: + - type: Transform + pos: -44.5,-3.5 + parent: 2 + - uid: 7999 + components: + - type: Transform + pos: -28.5,-11.5 + parent: 2 + - uid: 8000 + components: + - type: Transform + pos: -41.5,-2.5 + parent: 2 - uid: 8042 components: - type: Transform @@ -23507,11 +24116,46 @@ entities: - type: Transform pos: -58.5,31.5 parent: 2 + - uid: 8158 + components: + - type: Transform + pos: -41.5,-1.5 + parent: 2 + - uid: 8166 + components: + - type: Transform + pos: -42.5,-3.5 + parent: 2 - uid: 8391 components: - type: Transform pos: 51.5,4.5 parent: 2 + - uid: 8952 + components: + - type: Transform + pos: -28.5,-10.5 + parent: 2 + - uid: 8964 + components: + - type: Transform + pos: -22.5,-14.5 + parent: 2 + - uid: 8967 + components: + - type: Transform + pos: -28.5,-8.5 + parent: 2 + - uid: 8989 + components: + - type: Transform + pos: -35.5,-14.5 + parent: 2 + - uid: 8990 + components: + - type: Transform + pos: -35.5,-13.5 + parent: 2 - uid: 9249 components: - type: Transform @@ -23522,16 +24166,66 @@ entities: - type: Transform pos: -45.5,5.5 parent: 2 + - uid: 9573 + components: + - type: Transform + pos: -28.5,-5.5 + parent: 2 + - uid: 9578 + components: + - type: Transform + pos: -40.5,-11.5 + parent: 2 + - uid: 9608 + components: + - type: Transform + pos: -32.5,-6.5 + parent: 2 + - uid: 9652 + components: + - type: Transform + pos: -27.5,-5.5 + parent: 2 - uid: 9886 components: - type: Transform pos: -16.5,-64.5 parent: 2 + - uid: 10033 + components: + - type: Transform + pos: -46.5,-16.5 + parent: 2 - uid: 10171 components: - type: Transform pos: -54.5,39.5 parent: 2 + - uid: 10301 + components: + - type: Transform + pos: -39.5,-15.5 + parent: 2 + - uid: 10373 + components: + - type: Transform + pos: -34.5,-14.5 + parent: 2 + - uid: 10377 + components: + - type: Transform + pos: -35.5,-15.5 + parent: 2 + - uid: 10502 + components: + - type: Transform + pos: -46.5,-17.5 + parent: 2 + - uid: 10506 + components: + - type: Transform + pos: -35.5,-12.5 + parent: 2 - uid: 10593 components: - type: Transform @@ -23567,31 +24261,96 @@ entities: - type: Transform pos: 40.5,18.5 parent: 2 + - uid: 11381 + components: + - type: Transform + pos: -41.5,-10.5 + parent: 2 + - uid: 11383 + components: + - type: Transform + pos: -32.5,-5.5 + parent: 2 + - uid: 11384 + components: + - type: Transform + pos: -27.5,-6.5 + parent: 2 + - uid: 11386 + components: + - type: Transform + pos: -46.5,-18.5 + parent: 2 - uid: 11405 components: - type: Transform pos: 1.5,-43.5 parent: 2 + - uid: 11436 + components: + - type: Transform + pos: -32.5,-7.5 + parent: 2 - uid: 11518 components: - type: Transform pos: -4.5,41.5 parent: 2 + - uid: 11628 + components: + - type: Transform + pos: -42.5,-16.5 + parent: 2 + - uid: 11637 + components: + - type: Transform + pos: -42.5,-15.5 + parent: 2 - uid: 11768 components: - type: Transform pos: 1.5,-39.5 parent: 2 + - uid: 11796 + components: + - type: Transform + pos: -38.5,-11.5 + parent: 2 + - uid: 11799 + components: + - type: Transform + pos: -35.5,-11.5 + parent: 2 - uid: 11851 components: - type: Transform pos: 51.5,9.5 parent: 2 + - uid: 11907 + components: + - type: Transform + pos: -37.5,-11.5 + parent: 2 - uid: 11910 components: - type: Transform pos: 46.5,7.5 parent: 2 + - uid: 11951 + components: + - type: Transform + pos: -36.5,-11.5 + parent: 2 + - uid: 11992 + components: + - type: Transform + pos: -37.5,-15.5 + parent: 2 + - uid: 12005 + components: + - type: Transform + pos: -38.5,-15.5 + parent: 2 - uid: 12052 components: - type: Transform @@ -23602,6 +24361,11 @@ entities: - type: Transform pos: 2.5,-33.5 parent: 2 + - uid: 12075 + components: + - type: Transform + pos: -39.5,-17.5 + parent: 2 - uid: 12148 components: - type: Transform @@ -23612,11 +24376,36 @@ entities: - type: Transform pos: 40.5,17.5 parent: 2 + - uid: 12206 + components: + - type: Transform + pos: -40.5,-15.5 + parent: 2 - uid: 12281 components: - type: Transform pos: -56.5,32.5 parent: 2 + - uid: 12385 + components: + - type: Transform + pos: -35.5,-17.5 + parent: 2 + - uid: 12386 + components: + - type: Transform + pos: -35.5,-16.5 + parent: 2 + - uid: 12501 + components: + - type: Transform + pos: -36.5,-15.5 + parent: 2 + - uid: 12502 + components: + - type: Transform + pos: -33.5,-14.5 + parent: 2 - uid: 12577 components: - type: Transform @@ -23652,6 +24441,46 @@ entities: - type: Transform pos: 33.5,10.5 parent: 2 + - uid: 13183 + components: + - type: Transform + pos: -54.5,21.5 + parent: 2 + - uid: 13185 + components: + - type: Transform + pos: -55.5,21.5 + parent: 2 + - uid: 13200 + components: + - type: Transform + pos: -55.5,22.5 + parent: 2 + - uid: 13201 + components: + - type: Transform + pos: -56.5,22.5 + parent: 2 + - uid: 13202 + components: + - type: Transform + pos: -57.5,22.5 + parent: 2 + - uid: 13203 + components: + - type: Transform + pos: -58.5,22.5 + parent: 2 + - uid: 13210 + components: + - type: Transform + pos: -59.5,22.5 + parent: 2 + - uid: 13216 + components: + - type: Transform + pos: -59.5,12.5 + parent: 2 - uid: 13288 components: - type: Transform @@ -23677,6 +24506,11 @@ entities: - type: Transform pos: -56.5,36.5 parent: 2 + - uid: 13327 + components: + - type: Transform + pos: -58.5,12.5 + parent: 2 - uid: 13348 components: - type: Transform @@ -23687,6 +24521,11 @@ entities: - type: Transform pos: 40.5,22.5 parent: 2 + - uid: 13352 + components: + - type: Transform + pos: -57.5,12.5 + parent: 2 - uid: 13353 components: - type: Transform @@ -23727,11 +24566,61 @@ entities: - type: Transform pos: -51.5,28.5 parent: 2 + - uid: 13482 + components: + - type: Transform + pos: -56.5,12.5 + parent: 2 + - uid: 13483 + components: + - type: Transform + pos: -55.5,12.5 + parent: 2 + - uid: 13531 + components: + - type: Transform + pos: -55.5,13.5 + parent: 2 - uid: 13538 components: - type: Transform pos: -55.5,36.5 parent: 2 + - uid: 13552 + components: + - type: Transform + pos: -54.5,13.5 + parent: 2 + - uid: 13553 + components: + - type: Transform + pos: -55.5,17.5 + parent: 2 + - uid: 13559 + components: + - type: Transform + pos: -54.5,17.5 + parent: 2 + - uid: 13560 + components: + - type: Transform + pos: -53.5,17.5 + parent: 2 + - uid: 13561 + components: + - type: Transform + pos: -52.5,17.5 + parent: 2 + - uid: 13610 + components: + - type: Transform + pos: -51.5,17.5 + parent: 2 + - uid: 13613 + components: + - type: Transform + pos: -50.5,17.5 + parent: 2 - uid: 13639 components: - type: Transform @@ -23852,6 +24741,11 @@ entities: - type: Transform pos: 44.5,7.5 parent: 2 + - uid: 16513 + components: + - type: Transform + pos: -16.5,5.5 + parent: 2 - uid: 16663 components: - type: Transform @@ -26926,21 +27820,6 @@ entities: - type: Transform pos: -32.5,-17.5 parent: 2 - - uid: 3361 - components: - - type: Transform - pos: -28.5,-11.5 - parent: 2 - - uid: 3362 - components: - - type: Transform - pos: -28.5,-10.5 - parent: 2 - - uid: 3363 - components: - - type: Transform - pos: -28.5,-9.5 - parent: 2 - uid: 3364 components: - type: Transform @@ -26951,26 +27830,6 @@ entities: - type: Transform pos: -28.5,-15.5 parent: 2 - - uid: 3366 - components: - - type: Transform - pos: -28.5,-14.5 - parent: 2 - - uid: 3367 - components: - - type: Transform - pos: -28.5,-13.5 - parent: 2 - - uid: 3368 - components: - - type: Transform - pos: -28.5,-12.5 - parent: 2 - - uid: 3369 - components: - - type: Transform - pos: -29.5,-9.5 - parent: 2 - uid: 3370 components: - type: Transform @@ -26986,26 +27845,6 @@ entities: - type: Transform pos: -28.5,-19.5 parent: 2 - - uid: 3373 - components: - - type: Transform - pos: -30.5,-9.5 - parent: 2 - - uid: 3374 - components: - - type: Transform - pos: -31.5,-9.5 - parent: 2 - - uid: 3375 - components: - - type: Transform - pos: -32.5,-9.5 - parent: 2 - - uid: 3376 - components: - - type: Transform - pos: -32.5,-8.5 - parent: 2 - uid: 3377 components: - type: Transform @@ -27086,31 +27925,6 @@ entities: - type: Transform pos: -32.5,-2.5 parent: 2 - - uid: 3393 - components: - - type: Transform - pos: -32.5,-3.5 - parent: 2 - - uid: 3394 - components: - - type: Transform - pos: -32.5,-4.5 - parent: 2 - - uid: 3395 - components: - - type: Transform - pos: -32.5,-5.5 - parent: 2 - - uid: 3396 - components: - - type: Transform - pos: -32.5,-6.5 - parent: 2 - - uid: 3397 - components: - - type: Transform - pos: -32.5,-7.5 - parent: 2 - uid: 3398 components: - type: Transform @@ -28871,21 +29685,76 @@ entities: - type: Transform pos: -51.5,-40.5 parent: 2 - - uid: 5501 + - uid: 6051 components: - type: Transform - pos: -50.5,-39.5 + pos: -28.5,-3.5 parent: 2 - uid: 6263 components: - type: Transform pos: -13.5,-82.5 parent: 2 + - uid: 9579 + components: + - type: Transform + pos: -28.5,-14.5 + parent: 2 + - uid: 9580 + components: + - type: Transform + pos: -28.5,-13.5 + parent: 2 + - uid: 9589 + components: + - type: Transform + pos: -28.5,-11.5 + parent: 2 + - uid: 9602 + components: + - type: Transform + pos: -28.5,-12.5 + parent: 2 - uid: 9756 components: - type: Transform pos: -17.5,-77.5 parent: 2 + - uid: 10527 + components: + - type: Transform + pos: -28.5,-9.5 + parent: 2 + - uid: 10568 + components: + - type: Transform + pos: -28.5,-7.5 + parent: 2 + - uid: 10592 + components: + - type: Transform + pos: -28.5,-5.5 + parent: 2 + - uid: 10646 + components: + - type: Transform + pos: -28.5,-10.5 + parent: 2 + - uid: 10648 + components: + - type: Transform + pos: -28.5,-8.5 + parent: 2 + - uid: 10654 + components: + - type: Transform + pos: -28.5,-6.5 + parent: 2 + - uid: 10664 + components: + - type: Transform + pos: -28.5,-4.5 + parent: 2 - uid: 10771 components: - type: Transform @@ -28926,6 +29795,11 @@ entities: - type: Transform pos: -40.5,-37.5 parent: 2 + - uid: 11914 + components: + - type: Transform + pos: -51.5,-39.5 + parent: 2 - uid: 11958 components: - type: Transform @@ -28966,6 +29840,11 @@ entities: - type: Transform pos: -26.5,-50.5 parent: 2 + - uid: 14759 + components: + - type: Transform + pos: -33.5,-9.5 + parent: 2 - uid: 15329 components: - type: Transform @@ -28996,6 +29875,131 @@ entities: - type: Transform pos: -39.5,-37.5 parent: 2 + - uid: 16377 + components: + - type: Transform + pos: -31.5,-9.5 + parent: 2 + - uid: 16382 + components: + - type: Transform + pos: -32.5,-9.5 + parent: 2 + - uid: 16385 + components: + - type: Transform + pos: -30.5,-9.5 + parent: 2 + - uid: 16396 + components: + - type: Transform + pos: -29.5,-9.5 + parent: 2 + - uid: 16895 + components: + - type: Transform + pos: -34.5,-9.5 + parent: 2 + - uid: 16896 + components: + - type: Transform + pos: -35.5,-9.5 + parent: 2 + - uid: 16898 + components: + - type: Transform + pos: -36.5,-9.5 + parent: 2 + - uid: 16899 + components: + - type: Transform + pos: -37.5,-9.5 + parent: 2 + - uid: 16931 + components: + - type: Transform + pos: -38.5,-9.5 + parent: 2 + - uid: 16932 + components: + - type: Transform + pos: -39.5,-9.5 + parent: 2 + - uid: 16938 + components: + - type: Transform + pos: -40.5,-9.5 + parent: 2 + - uid: 16939 + components: + - type: Transform + pos: -41.5,-9.5 + parent: 2 + - uid: 16940 + components: + - type: Transform + pos: -41.5,-9.5 + parent: 2 + - uid: 16974 + components: + - type: Transform + pos: -41.5,-8.5 + parent: 2 + - uid: 16975 + components: + - type: Transform + pos: -41.5,-7.5 + parent: 2 + - uid: 16984 + components: + - type: Transform + pos: -41.5,-6.5 + parent: 2 + - uid: 17012 + components: + - type: Transform + pos: -41.5,-5.5 + parent: 2 + - uid: 17098 + components: + - type: Transform + pos: -41.5,-4.5 + parent: 2 + - uid: 17100 + components: + - type: Transform + pos: -41.5,-3.5 + parent: 2 + - uid: 17101 + components: + - type: Transform + pos: -41.5,-2.5 + parent: 2 + - uid: 17102 + components: + - type: Transform + pos: -41.5,-1.5 + parent: 2 + - uid: 17103 + components: + - type: Transform + pos: -41.5,-0.5 + parent: 2 + - uid: 17111 + components: + - type: Transform + pos: -41.5,0.5 + parent: 2 + - uid: 17357 + components: + - type: Transform + pos: -41.5,1.5 + parent: 2 + - uid: 17417 + components: + - type: Transform + pos: -41.5,2.5 + parent: 2 - uid: 17435 components: - type: Transform @@ -29011,6 +30015,51 @@ entities: - type: Transform pos: -13.5,-71.5 parent: 2 + - uid: 17440 + components: + - type: Transform + pos: -42.5,2.5 + parent: 2 + - uid: 17474 + components: + - type: Transform + pos: -40.5,2.5 + parent: 2 + - uid: 17479 + components: + - type: Transform + pos: -40.5,3.5 + parent: 2 + - uid: 17483 + components: + - type: Transform + pos: -42.5,3.5 + parent: 2 + - uid: 17815 + components: + - type: Transform + pos: -43.5,4.5 + parent: 2 + - uid: 17818 + components: + - type: Transform + pos: -42.5,4.5 + parent: 2 + - uid: 17822 + components: + - type: Transform + pos: -41.5,4.5 + parent: 2 + - uid: 17823 + components: + - type: Transform + pos: -40.5,4.5 + parent: 2 + - uid: 17826 + components: + - type: Transform + pos: -39.5,4.5 + parent: 2 - uid: 18130 components: - type: Transform @@ -29191,16 +30240,6 @@ entities: - type: Transform pos: 79.5,10.5 parent: 2 - - uid: 18627 - components: - - type: Transform - pos: -32.5,-48.5 - parent: 2 - - uid: 18628 - components: - - type: Transform - pos: -33.5,-48.5 - parent: 2 - uid: 18629 components: - type: Transform @@ -29211,16 +30250,6 @@ entities: - type: Transform pos: -34.5,-49.5 parent: 2 - - uid: 18631 - components: - - type: Transform - pos: -31.5,-48.5 - parent: 2 - - uid: 18632 - components: - - type: Transform - pos: -30.5,-48.5 - parent: 2 - uid: 18633 components: - type: Transform @@ -29241,6 +30270,21 @@ entities: - type: Transform pos: -30.5,-46.5 parent: 2 + - uid: 18772 + components: + - type: Transform + pos: -50.5,-39.5 + parent: 2 + - uid: 18773 + components: + - type: Transform + pos: -49.5,-39.5 + parent: 2 + - uid: 18973 + components: + - type: Transform + pos: -48.5,-39.5 + parent: 2 - uid: 18991 components: - type: Transform @@ -29401,11 +30445,6 @@ entities: - type: Transform pos: -56.5,-45.5 parent: 2 - - uid: 19023 - components: - - type: Transform - pos: -50.5,-40.5 - parent: 2 - uid: 19024 components: - type: Transform @@ -29922,6 +30961,11 @@ entities: - type: Transform pos: 34.5,0.5 parent: 2 + - uid: 282 + components: + - type: Transform + pos: -32.5,-5.5 + parent: 2 - uid: 501 components: - type: Transform @@ -29937,6 +30981,16 @@ entities: - type: Transform pos: 35.5,7.5 parent: 2 + - uid: 722 + components: + - type: Transform + pos: -32.5,-3.5 + parent: 2 + - uid: 873 + components: + - type: Transform + pos: -32.5,-4.5 + parent: 2 - uid: 912 components: - type: Transform @@ -29957,6 +31011,11 @@ entities: - type: Transform pos: -1.5,-32.5 parent: 2 + - uid: 942 + components: + - type: Transform + pos: 6.5,-8.5 + parent: 2 - uid: 1588 components: - type: Transform @@ -32097,85 +33156,50 @@ entities: - type: Transform pos: -32.5,-2.5 parent: 2 - - uid: 4235 - components: - - type: Transform - pos: -32.5,-3.5 - parent: 2 - - uid: 4236 - components: - - type: Transform - pos: -32.5,-4.5 - parent: 2 - - uid: 4237 - components: - - type: Transform - pos: -32.5,-5.5 - parent: 2 - - uid: 4238 - components: - - type: Transform - pos: -32.5,-6.5 - parent: 2 - - uid: 4239 - components: - - type: Transform - pos: -32.5,-7.5 - parent: 2 - - uid: 4240 - components: - - type: Transform - pos: -32.5,-8.5 - parent: 2 - - uid: 4241 - components: - - type: Transform - pos: -32.5,-9.5 - parent: 2 - uid: 4242 components: - type: Transform - pos: -31.5,-9.5 + pos: -46.5,-16.5 parent: 2 - uid: 4243 components: - type: Transform - pos: -30.5,-9.5 + pos: -42.5,-16.5 parent: 2 - uid: 4244 components: - type: Transform - pos: -29.5,-9.5 + pos: -42.5,-15.5 parent: 2 - uid: 4245 components: - type: Transform - pos: -28.5,-9.5 + pos: -42.5,-18.5 parent: 2 - uid: 4246 components: - type: Transform - pos: -28.5,-10.5 + pos: -46.5,-17.5 parent: 2 - uid: 4247 components: - type: Transform - pos: -28.5,-11.5 + pos: -43.5,-17.5 parent: 2 - uid: 4248 components: - type: Transform - pos: -28.5,-12.5 + pos: -45.5,-17.5 parent: 2 - uid: 4249 components: - type: Transform - pos: -28.5,-13.5 + pos: -42.5,-17.5 parent: 2 - uid: 4250 components: - type: Transform - pos: -28.5,-14.5 + pos: -42.5,-19.5 parent: 2 - uid: 4251 components: @@ -32302,41 +33326,6 @@ entities: - type: Transform pos: -43.5,-20.5 parent: 2 - - uid: 4276 - components: - - type: Transform - pos: -43.5,-19.5 - parent: 2 - - uid: 4277 - components: - - type: Transform - pos: -43.5,-18.5 - parent: 2 - - uid: 4278 - components: - - type: Transform - pos: -44.5,-18.5 - parent: 2 - - uid: 4279 - components: - - type: Transform - pos: -45.5,-18.5 - parent: 2 - - uid: 4280 - components: - - type: Transform - pos: -46.5,-18.5 - parent: 2 - - uid: 4281 - components: - - type: Transform - pos: -46.5,-17.5 - parent: 2 - - uid: 4282 - components: - - type: Transform - pos: -46.5,-16.5 - parent: 2 - uid: 4283 components: - type: Transform @@ -32412,175 +33401,10 @@ entities: - type: Transform pos: -52.5,-7.5 parent: 2 - - uid: 4298 - components: - - type: Transform - pos: -45.5,-8.5 - parent: 2 - - uid: 4299 - components: - - type: Transform - pos: -44.5,-8.5 - parent: 2 - - uid: 4300 - components: - - type: Transform - pos: -43.5,-8.5 - parent: 2 - - uid: 4301 - components: - - type: Transform - pos: -42.5,-8.5 - parent: 2 - - uid: 4302 - components: - - type: Transform - pos: -41.5,-8.5 - parent: 2 - - uid: 4303 - components: - - type: Transform - pos: -40.5,-8.5 - parent: 2 - - uid: 4304 - components: - - type: Transform - pos: -39.5,-8.5 - parent: 2 - - uid: 4305 - components: - - type: Transform - pos: -38.5,-8.5 - parent: 2 - uid: 4306 components: - type: Transform - pos: -37.5,-8.5 - parent: 2 - - uid: 4307 - components: - - type: Transform - pos: -37.5,-9.5 - parent: 2 - - uid: 4308 - components: - - type: Transform - pos: -37.5,-10.5 - parent: 2 - - uid: 4309 - components: - - type: Transform - pos: -37.5,-11.5 - parent: 2 - - uid: 4310 - components: - - type: Transform - pos: -36.5,-11.5 - parent: 2 - - uid: 4311 - components: - - type: Transform - pos: -35.5,-11.5 - parent: 2 - - uid: 4312 - components: - - type: Transform - pos: -35.5,-10.5 - parent: 2 - - uid: 4313 - components: - - type: Transform - pos: -36.5,-8.5 - parent: 2 - - uid: 4314 - components: - - type: Transform - pos: -35.5,-8.5 - parent: 2 - - uid: 4315 - components: - - type: Transform - pos: -34.5,-8.5 - parent: 2 - - uid: 4316 - components: - - type: Transform - pos: -37.5,-7.5 - parent: 2 - - uid: 4317 - components: - - type: Transform - pos: -37.5,-6.5 - parent: 2 - - uid: 4318 - components: - - type: Transform - pos: -37.5,-5.5 - parent: 2 - - uid: 4319 - components: - - type: Transform - pos: -38.5,-5.5 - parent: 2 - - uid: 4320 - components: - - type: Transform - pos: -39.5,-5.5 - parent: 2 - - uid: 4321 - components: - - type: Transform - pos: -40.5,-5.5 - parent: 2 - - uid: 4322 - components: - - type: Transform - pos: -41.5,-5.5 - parent: 2 - - uid: 4323 - components: - - type: Transform - pos: -41.5,-4.5 - parent: 2 - - uid: 4324 - components: - - type: Transform - pos: -41.5,-3.5 - parent: 2 - - uid: 4325 - components: - - type: Transform - pos: -41.5,-2.5 - parent: 2 - - uid: 4326 - components: - - type: Transform - pos: -41.5,-1.5 - parent: 2 - - uid: 4327 - components: - - type: Transform - pos: -40.5,-1.5 - parent: 2 - - uid: 4328 - components: - - type: Transform - pos: -39.5,-1.5 - parent: 2 - - uid: 4329 - components: - - type: Transform - pos: -38.5,-1.5 - parent: 2 - - uid: 4330 - components: - - type: Transform - pos: -27.5,-10.5 - parent: 2 - - uid: 4331 - components: - - type: Transform - pos: -26.5,-10.5 + pos: -44.5,-17.5 parent: 2 - uid: 4332 components: @@ -33862,11 +34686,6 @@ entities: - type: Transform pos: -63.5,5.5 parent: 2 - - uid: 4592 - components: - - type: Transform - pos: -63.5,6.5 - parent: 2 - uid: 4594 components: - type: Transform @@ -33877,61 +34696,26 @@ entities: - type: Transform pos: -62.5,5.5 parent: 2 - - uid: 4596 - components: - - type: Transform - pos: -62.5,6.5 - parent: 2 - uid: 4597 components: - type: Transform pos: -61.5,5.5 parent: 2 - - uid: 4598 - components: - - type: Transform - pos: -61.5,6.5 - parent: 2 - uid: 4599 components: - type: Transform pos: -60.5,5.5 parent: 2 - - uid: 4600 - components: - - type: Transform - pos: -60.5,6.5 - parent: 2 - uid: 4601 components: - type: Transform pos: -59.5,5.5 parent: 2 - - uid: 4602 - components: - - type: Transform - pos: -59.5,6.5 - parent: 2 - - uid: 4603 - components: - - type: Transform - pos: -58.5,5.5 - parent: 2 - - uid: 4604 - components: - - type: Transform - pos: -58.5,6.5 - parent: 2 - uid: 4605 components: - type: Transform pos: -57.5,5.5 parent: 2 - - uid: 4606 - components: - - type: Transform - pos: -57.5,6.5 - parent: 2 - uid: 4607 components: - type: Transform @@ -34742,11 +35526,6 @@ entities: - type: Transform pos: -67.5,-9.5 parent: 2 - - uid: 4804 - components: - - type: Transform - pos: -33.5,-8.5 - parent: 2 - uid: 4805 components: - type: Transform @@ -35572,11 +36351,6 @@ entities: - type: Transform pos: -12.5,39.5 parent: 2 - - uid: 4970 - components: - - type: Transform - pos: 6.5,-8.5 - parent: 2 - uid: 4971 components: - type: Transform @@ -35752,6 +36526,11 @@ entities: - type: Transform pos: 40.5,10.5 parent: 2 + - uid: 5984 + components: + - type: Transform + pos: -28.5,-11.5 + parent: 2 - uid: 6005 components: - type: Transform @@ -35762,16 +36541,146 @@ entities: - type: Transform pos: 35.5,17.5 parent: 2 + - uid: 6091 + components: + - type: Transform + pos: -42.5,-3.5 + parent: 2 + - uid: 6142 + components: + - type: Transform + pos: -41.5,-10.5 + parent: 2 + - uid: 6175 + components: + - type: Transform + pos: -27.5,-7.5 + parent: 2 + - uid: 6735 + components: + - type: Transform + pos: -41.5,-6.5 + parent: 2 + - uid: 6736 + components: + - type: Transform + pos: -41.5,-5.5 + parent: 2 + - uid: 6738 + components: + - type: Transform + pos: -44.5,-3.5 + parent: 2 + - uid: 6987 + components: + - type: Transform + pos: -41.5,-3.5 + parent: 2 + - uid: 7052 + components: + - type: Transform + pos: -41.5,-4.5 + parent: 2 - uid: 7065 components: - type: Transform pos: 34.5,5.5 parent: 2 + - uid: 7081 + components: + - type: Transform + pos: -43.5,-3.5 + parent: 2 + - uid: 7242 + components: + - type: Transform + pos: -41.5,-9.5 + parent: 2 + - uid: 7326 + components: + - type: Transform + pos: -27.5,-8.5 + parent: 2 + - uid: 7337 + components: + - type: Transform + pos: -41.5,-8.5 + parent: 2 + - uid: 7347 + components: + - type: Transform + pos: -28.5,-10.5 + parent: 2 + - uid: 7348 + components: + - type: Transform + pos: -28.5,-8.5 + parent: 2 + - uid: 7438 + components: + - type: Transform + pos: -41.5,-7.5 + parent: 2 - uid: 8390 components: - type: Transform pos: 33.5,-0.5 parent: 2 + - uid: 8945 + components: + - type: Transform + pos: -41.5,-15.5 + parent: 2 + - uid: 8947 + components: + - type: Transform + pos: -41.5,-13.5 + parent: 2 + - uid: 8948 + components: + - type: Transform + pos: -41.5,-12.5 + parent: 2 + - uid: 8949 + components: + - type: Transform + pos: -41.5,-11.5 + parent: 2 + - uid: 8950 + components: + - type: Transform + pos: -42.5,-11.5 + parent: 2 + - uid: 8951 + components: + - type: Transform + pos: -28.5,-13.5 + parent: 2 + - uid: 8953 + components: + - type: Transform + pos: -28.5,-14.5 + parent: 2 + - uid: 8954 + components: + - type: Transform + pos: -28.5,-12.5 + parent: 2 + - uid: 8963 + components: + - type: Transform + pos: -40.5,-13.5 + parent: 2 + - uid: 8966 + components: + - type: Transform + pos: -40.5,-15.5 + parent: 2 + - uid: 8982 + components: + - type: Transform + pos: -40.5,-14.5 + parent: 2 - uid: 10760 components: - type: Transform @@ -35882,11 +36791,61 @@ entities: - type: Transform pos: 47.5,4.5 parent: 2 + - uid: 14258 + components: + - type: Transform + pos: -32.5,-6.5 + parent: 2 + - uid: 14259 + components: + - type: Transform + pos: -32.5,-7.5 + parent: 2 - uid: 14266 components: - type: Transform pos: 40.5,6.5 parent: 2 + - uid: 14280 + components: + - type: Transform + pos: -33.5,-7.5 + parent: 2 + - uid: 14281 + components: + - type: Transform + pos: -33.5,-8.5 + parent: 2 + - uid: 14282 + components: + - type: Transform + pos: -33.5,-9.5 + parent: 2 + - uid: 14283 + components: + - type: Transform + pos: -32.5,-9.5 + parent: 2 + - uid: 14288 + components: + - type: Transform + pos: -31.5,-9.5 + parent: 2 + - uid: 14289 + components: + - type: Transform + pos: -30.5,-9.5 + parent: 2 + - uid: 14290 + components: + - type: Transform + pos: -28.5,-9.5 + parent: 2 + - uid: 14294 + components: + - type: Transform + pos: -29.5,-9.5 + parent: 2 - uid: 14433 components: - type: Transform @@ -36357,6 +37316,36 @@ entities: - type: Transform pos: -56.5,4.5 parent: 2 + - uid: 19477 + components: + - type: Transform + pos: -58.5,10.5 + parent: 2 + - uid: 19585 + components: + - type: Transform + pos: -58.5,9.5 + parent: 2 + - uid: 19586 + components: + - type: Transform + pos: -58.5,8.5 + parent: 2 + - uid: 19587 + components: + - type: Transform + pos: -58.5,7.5 + parent: 2 + - uid: 19588 + components: + - type: Transform + pos: -58.5,6.5 + parent: 2 + - uid: 19589 + components: + - type: Transform + pos: -58.5,5.5 + parent: 2 - proto: CableMVStack entities: - uid: 4996 @@ -36442,6 +37431,12 @@ entities: - type: Transform pos: -44.5,51.5 parent: 2 + - uid: 5941 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -51.5,-39.5 + parent: 2 - proto: CannabisSeeds entities: - uid: 5010 @@ -36585,20 +37580,60 @@ entities: - type: Transform pos: -53.5,-0.5 parent: 2 - - uid: 6142 + - uid: 15103 components: - type: Transform - pos: -46.5,-14.5 + pos: -37.5,-5.5 parent: 2 - - uid: 12210 + - uid: 15104 components: - type: Transform - pos: -46.5,-13.5 + pos: -43.5,-12.5 parent: 2 - - uid: 14557 + - uid: 15120 components: - type: Transform - pos: -46.5,-12.5 + pos: -36.5,-5.5 + parent: 2 + - uid: 15248 + components: + - type: Transform + pos: -35.5,-5.5 + parent: 2 + - uid: 15403 + components: + - type: Transform + pos: -33.5,-4.5 + parent: 2 + - uid: 15782 + components: + - type: Transform + pos: -33.5,-5.5 + parent: 2 + - uid: 15802 + components: + - type: Transform + pos: -32.5,-4.5 + parent: 2 + - uid: 15895 + components: + - type: Transform + pos: -32.5,-5.5 + parent: 2 + - uid: 15898 + components: + - type: Transform + pos: -31.5,-4.5 + parent: 2 + - uid: 15993 + components: + - type: Transform + pos: -31.5,-5.5 + parent: 2 + - uid: 15994 + components: + - type: Transform + pos: -44.5,-12.5 parent: 2 - uid: 17687 components: @@ -36642,16 +37677,6 @@ entities: - type: Transform pos: -10.5,-10.5 parent: 2 - - uid: 5038 - components: - - type: Transform - pos: -19.5,22.5 - parent: 2 - - uid: 5039 - components: - - type: Transform - pos: -19.5,21.5 - parent: 2 - uid: 5040 components: - type: Transform @@ -36746,41 +37771,6 @@ entities: - type: Transform pos: -35.5,34.5 parent: 2 - - uid: 5058 - components: - - type: Transform - pos: -33.5,-13.5 - parent: 2 - - uid: 5059 - components: - - type: Transform - pos: -30.5,-12.5 - parent: 2 - - uid: 5060 - components: - - type: Transform - pos: -32.5,-12.5 - parent: 2 - - uid: 5061 - components: - - type: Transform - pos: -32.5,-13.5 - parent: 2 - - uid: 5062 - components: - - type: Transform - pos: -31.5,-12.5 - parent: 2 - - uid: 5063 - components: - - type: Transform - pos: -30.5,-13.5 - parent: 2 - - uid: 5064 - components: - - type: Transform - pos: -31.5,-13.5 - parent: 2 - uid: 17668 components: - type: Transform @@ -37194,37 +38184,8 @@ entities: - type: Transform pos: -19.5,19.5 parent: 2 -- proto: CarrotSeeds - entities: - - uid: 5117 - components: - - type: Transform - pos: 32.31128,-12.466648 - parent: 2 -- proto: CartridgeRocket - entities: - - uid: 5118 - components: - - type: Transform - pos: -41.510567,1.3497348 - parent: 2 - proto: Catwalk entities: - - uid: 180 - components: - - type: Transform - pos: -53.5,20.5 - parent: 2 - - uid: 908 - components: - - type: Transform - pos: -52.5,20.5 - parent: 2 - - uid: 910 - components: - - type: Transform - pos: -52.5,14.5 - parent: 2 - uid: 918 components: - type: Transform @@ -37261,16 +38222,6 @@ entities: rot: 1.5707963267948966 rad pos: -58.5,34.5 parent: 2 - - uid: 1065 - components: - - type: Transform - pos: -52.5,22.5 - parent: 2 - - uid: 1066 - components: - - type: Transform - pos: -53.5,22.5 - parent: 2 - uid: 5119 components: - type: Transform @@ -39029,6 +39980,12 @@ entities: rot: 1.5707963267948966 rad pos: -18.5,-34.5 parent: 2 + - uid: 5501 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -51.5,-39.5 + parent: 2 - uid: 5508 components: - type: Transform @@ -39433,16 +40390,6 @@ entities: - type: Transform pos: 3.5,-20.5 parent: 2 - - uid: 5587 - components: - - type: Transform - pos: -41.5,-20.5 - parent: 2 - - uid: 5588 - components: - - type: Transform - pos: -40.5,-20.5 - parent: 2 - uid: 5589 components: - type: Transform @@ -39510,16 +40457,6 @@ entities: - type: Transform pos: -25.5,-18.5 parent: 2 - - uid: 5603 - components: - - type: Transform - pos: -43.5,-20.5 - parent: 2 - - uid: 5604 - components: - - type: Transform - pos: -42.5,-20.5 - parent: 2 - uid: 5605 components: - type: Transform @@ -39545,36 +40482,16 @@ entities: - type: Transform pos: -28.5,-20.5 parent: 2 - - uid: 5610 - components: - - type: Transform - pos: -39.5,-20.5 - parent: 2 - - uid: 5612 - components: - - type: Transform - pos: -43.5,-19.5 - parent: 2 - uid: 5613 components: - type: Transform pos: -21.5,-18.5 parent: 2 - - uid: 5614 - components: - - type: Transform - pos: -37.5,-20.5 - parent: 2 - uid: 5615 components: - type: Transform pos: -28.5,-17.5 parent: 2 - - uid: 5616 - components: - - type: Transform - pos: -38.5,-20.5 - parent: 2 - uid: 5617 components: - type: Transform @@ -39705,11 +40622,6 @@ entities: - type: Transform pos: 2.5,-38.5 parent: 2 - - uid: 5644 - components: - - type: Transform - pos: -53.5,14.5 - parent: 2 - uid: 5650 components: - type: Transform @@ -40374,12 +41286,22 @@ entities: rot: 1.5707963267948966 rad pos: 74.5,11.5 parent: 2 + - uid: 13302 + components: + - type: Transform + pos: -40.5,-20.5 + parent: 2 - uid: 13426 components: - type: Transform rot: 1.5707963267948966 rad pos: 63.5,14.5 parent: 2 + - uid: 14253 + components: + - type: Transform + pos: -38.5,-20.5 + parent: 2 - uid: 14337 components: - type: Transform @@ -40392,15 +41314,35 @@ entities: rot: 1.5707963267948966 rad pos: 76.5,11.5 parent: 2 - - uid: 15993 + - uid: 16425 components: - type: Transform - pos: -52.5,12.5 + pos: -39.5,-20.5 parent: 2 - - uid: 15996 + - uid: 16811 components: - type: Transform - pos: -53.5,12.5 + pos: -37.5,-20.5 + parent: 2 + - uid: 16812 + components: + - type: Transform + pos: -41.5,-20.5 + parent: 2 + - uid: 16835 + components: + - type: Transform + pos: -42.5,-20.5 + parent: 2 + - uid: 16836 + components: + - type: Transform + pos: -43.5,-20.5 + parent: 2 + - uid: 16837 + components: + - type: Transform + pos: -45.5,-20.5 parent: 2 - uid: 17432 components: @@ -40886,12 +41828,6 @@ entities: - type: Transform pos: -45.5,-51.5 parent: 2 - - uid: 18773 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -45.5,-20.5 - parent: 2 - uid: 18855 components: - type: Transform @@ -41003,6 +41939,12 @@ entities: - type: Transform pos: -36.5,-27.5 parent: 2 + - uid: 18977 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -50.5,-40.5 + parent: 2 - uid: 19076 components: - type: Transform @@ -41084,11 +42026,6 @@ entities: - type: Transform pos: -51.5,-40.5 parent: 2 - - uid: 19197 - components: - - type: Transform - pos: -50.5,-40.5 - parent: 2 - uid: 19198 components: - type: Transform @@ -41344,6 +42281,46 @@ entities: rot: -1.5707963267948966 rad pos: -47.5,-7.5 parent: 2 + - uid: 19566 + components: + - type: Transform + pos: 34.5,-11.5 + parent: 2 + - uid: 19569 + components: + - type: Transform + pos: 34.5,-12.5 + parent: 2 + - uid: 19580 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,14.5 + parent: 2 + - uid: 19581 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,14.5 + parent: 2 + - uid: 19582 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,14.5 + parent: 2 + - uid: 19583 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,14.5 + parent: 2 + - uid: 19584 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,14.5 + parent: 2 - proto: CellRechargerCircuitboard entities: - uid: 5730 @@ -41404,16 +42381,16 @@ entities: - type: Transform pos: 52.5,6.5 parent: 2 - - uid: 5411 + - uid: 4299 components: - type: Transform - pos: 50.5,6.5 + rot: 1.5707963267948966 rad + pos: -29.5,-6.5 parent: 2 - - uid: 5731 + - uid: 5411 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,4.5 + pos: 50.5,6.5 parent: 2 - uid: 5732 components: @@ -41421,24 +42398,6 @@ entities: rot: 1.5707963267948966 rad pos: 37.5,-6.5 parent: 2 - - uid: 5733 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,4.5 - parent: 2 - - uid: 5734 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,3.5 - parent: 2 - - uid: 5735 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,3.5 - parent: 2 - uid: 5736 components: - type: Transform @@ -41447,19 +42406,8 @@ entities: - uid: 5737 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,4.5 - parent: 2 - - uid: 5738 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,3.5 - parent: 2 - - uid: 5739 - components: - - type: Transform - pos: -29.5,-4.5 + rot: 1.5707963267948966 rad + pos: -10.5,3.5 parent: 2 - uid: 5740 components: @@ -41861,6 +42809,18 @@ entities: rot: 1.5707963267948966 rad pos: -50.5,0.5 parent: 2 + - uid: 6394 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -29.5,-4.5 + parent: 2 + - uid: 7629 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,4.5 + parent: 2 - uid: 11622 components: - type: Transform @@ -41878,6 +42838,18 @@ entities: rot: 3.141592653589793 rad pos: -11.5,-19.5 parent: 2 + - uid: 12174 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,3.5 + parent: 2 + - uid: 12176 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,4.5 + parent: 2 - uid: 12188 components: - type: Transform @@ -41963,6 +42935,39 @@ entities: rot: 1.5707963267948966 rad pos: -27.5,50.5 parent: 2 + - uid: 17827 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -53.5,20.5 + parent: 2 + - uid: 17828 + components: + - type: Transform + pos: -52.5,14.5 + parent: 2 + - uid: 17829 + components: + - type: Transform + pos: -53.5,14.5 + parent: 2 + - uid: 17843 + components: + - type: Transform + pos: -51.5,14.5 + parent: 2 + - uid: 17847 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -52.5,20.5 + parent: 2 + - uid: 17848 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -51.5,20.5 + parent: 2 - uid: 18070 components: - type: Transform @@ -42049,52 +43054,39 @@ entities: parent: 2 - proto: ChairFolding entities: - - uid: 5415 + - uid: 4277 components: - type: Transform - pos: -34.5,16.5 + pos: -22.470085,-13.447996 parent: 2 - - uid: 5714 + - uid: 5415 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.370385,-7.3388186 + pos: -34.5,16.5 parent: 2 - - uid: 5816 + - uid: 5614 components: - type: Transform rot: 3.141592653589793 rad - pos: 2.415972,-10.23035 + pos: -22.470085,-15.17251 parent: 2 - - uid: 5817 + - uid: 5714 components: - type: Transform rot: -1.5707963267948966 rad - pos: -35.747646,-13.674477 + pos: 4.370385,-7.3388186 parent: 2 - - uid: 5818 + - uid: 5816 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -21.5,-15.5 + rot: 3.141592653589793 rad + pos: 2.415972,-10.23035 parent: 2 - uid: 5819 components: - type: Transform pos: -13.583773,-4.5641017 parent: 2 - - uid: 5820 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -35.67909,-12.40797 - parent: 2 - - uid: 5821 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -37.36659,-13.455574 - parent: 2 - uid: 5824 components: - type: Transform @@ -42202,6 +43194,16 @@ entities: - type: Transform pos: 49.5,7.5 parent: 2 + - uid: 15060 + components: + - type: Transform + pos: -35.5,-9.5 + parent: 2 + - uid: 15096 + components: + - type: Transform + pos: -34.5,-9.5 + parent: 2 - proto: ChairOfficeDark entities: - uid: 648 @@ -42210,11 +43212,35 @@ entities: rot: 1.5707963267948966 rad pos: 26.707928,5.5862207 parent: 2 + - uid: 655 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -27.457016,-6.3216305 + parent: 2 - uid: 734 components: - type: Transform pos: -41.915558,22.529001 parent: 2 + - uid: 961 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -46.514507,-13.406225 + parent: 2 + - uid: 1209 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.720634,-4.825199 + parent: 2 + - uid: 1375 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -36.38367,-7.4546447 + parent: 2 - uid: 1555 components: - type: Transform @@ -42239,23 +43265,11 @@ entities: rot: 1.5707963267948966 rad pos: 15.60216,-33.817013 parent: 2 - - uid: 5843 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -27.595509,-5.7275686 - parent: 2 - uid: 5844 components: - type: Transform pos: -19.652205,22.521683 parent: 2 - - uid: 5847 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -29.142384,-6.126006 - parent: 2 - uid: 5848 components: - type: Transform @@ -42273,12 +43287,6 @@ entities: - type: Transform pos: 6.9758797,-15.414829 parent: 2 - - uid: 5851 - components: - - type: Transform - rot: 1.2265667478230338 rad - pos: -36.25269,-6.3051906 - parent: 2 - uid: 5852 components: - type: Transform @@ -42334,12 +43342,6 @@ entities: - type: Transform pos: 11.5,7.5 parent: 2 - - uid: 5863 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -22.365059,-7.3702555 - parent: 2 - uid: 5864 components: - type: Transform @@ -42423,16 +43425,15 @@ entities: rot: 1.5707963267948966 rad pos: -53.354736,27.237135 parent: 2 - - uid: 6144 + - uid: 6153 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -46.67467,-13.762894 + pos: -13.985664,20.54191 parent: 2 - - uid: 6153 + - uid: 6310 components: - type: Transform - pos: -13.985664,20.54191 + pos: -27.46517,-4.4625797 parent: 2 - uid: 11894 components: @@ -42446,11 +43447,17 @@ entities: rot: 3.141592653589793 rad pos: -0.5,-22.5 parent: 2 - - uid: 14151 + - uid: 12965 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -31.5,-12.5 + rot: 3.141592653589793 rad + pos: -50.4906,7.789112 + parent: 2 + - uid: 14412 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.962765,-7.4144673 parent: 2 - uid: 17093 components: @@ -42739,12 +43746,6 @@ entities: rot: 3.141592653589793 rad pos: -20.5,40.5 parent: 2 - - uid: 11517 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -32.5,-14.5 - parent: 2 - uid: 17992 components: - type: Transform @@ -42781,13 +43782,6 @@ entities: - type: Transform pos: 17.5,11.5 parent: 2 -- proto: ChemicalPayload - entities: - - uid: 5941 - components: - - type: Transform - pos: 9.617371,21.476503 - parent: 2 - proto: ChemistryHotplate entities: - uid: 6048 @@ -42840,13 +43834,6 @@ entities: - type: Transform pos: -30.28796,-23.594376 parent: 2 -- proto: CigarettePax - entities: - - uid: 13995 - components: - - type: Transform - pos: -14.223696,63.94977 - parent: 2 - proto: CigaretteSpent entities: - uid: 5947 @@ -42988,13 +43975,6 @@ entities: - type: Transform pos: -33.656166,13.587164 parent: 2 -- proto: CigPackMixed - entities: - - uid: 6169 - components: - - type: Transform - pos: -47.690296,-14.387894 - parent: 2 - proto: CigPackRed entities: - uid: 5965 @@ -43041,7 +44021,6 @@ entities: - uid: 11285 components: - type: Transform - rot: 1.5707963267948966 rad pos: 45.5,28.5 parent: 2 - proto: ClockworkGrilleBroken @@ -43078,27 +44057,22 @@ entities: parent: 2 - proto: ClosetBombFilled entities: - - uid: 5970 - components: - - type: Transform - pos: -20.5,-13.5 - parent: 2 - uid: 5971 components: - type: Transform pos: -49.5,37.5 parent: 2 - - uid: 5974 + - uid: 8170 components: - type: Transform - pos: -44.5,-5.5 + pos: -43.5,-4.5 parent: 2 - proto: ClosetEmergencyFilledRandom entities: - - uid: 525 + - uid: 90 components: - type: Transform - pos: -52.5,21.5 + pos: -57.5,21.5 parent: 2 - uid: 5975 components: @@ -43190,15 +44164,10 @@ entities: - type: Transform pos: 9.5,-39.5 parent: 2 - - uid: 11386 - components: - - type: Transform - pos: -51.5,18.5 - parent: 2 - - uid: 15994 + - uid: 12952 components: - type: Transform - pos: -52.5,13.5 + pos: -57.5,13.5 parent: 2 - uid: 18720 components: @@ -43210,8 +44179,18 @@ entities: - type: Transform pos: -41.5,-51.5 parent: 2 + - uid: 19570 + components: + - type: Transform + pos: 26.5,-3.5 + parent: 2 - proto: ClosetEmergencyN2FilledRandom entities: + - uid: 266 + components: + - type: Transform + pos: 37.5,-3.5 + parent: 2 - uid: 6046 components: - type: Transform @@ -43279,11 +44258,6 @@ entities: - type: Transform pos: -30.5,-25.5 parent: 2 - - uid: 12501 - components: - - type: Transform - pos: -51.5,16.5 - parent: 2 - uid: 18591 components: - type: Transform @@ -43342,11 +44316,6 @@ entities: - type: Transform pos: -25.5,-17.5 parent: 2 - - uid: 6016 - components: - - type: Transform - pos: -42.5,-17.5 - parent: 2 - uid: 6019 components: - type: Transform @@ -43469,10 +44438,10 @@ entities: - type: Transform pos: -48.5,-35.5 parent: 2 - - uid: 19477 + - uid: 19596 components: - type: Transform - pos: -36.5,-26.5 + pos: -34.5,-27.5 parent: 2 - proto: ClosetSteelBase entities: @@ -43505,11 +44474,6 @@ entities: parent: 2 - proto: ClosetToolFilled entities: - - uid: 6029 - components: - - type: Transform - pos: -20.5,-12.5 - parent: 2 - uid: 6030 components: - type: Transform @@ -43643,18 +44607,6 @@ entities: priority: 0 component: ClothingSpeedModifier title: null -- proto: ClothingBeltBandolier - entities: - - uid: 6043 - components: - - type: Transform - pos: -44.28039,-6.7017746 - parent: 2 - - uid: 6044 - components: - - type: Transform - pos: -44.72831,-6.409906 - parent: 2 - proto: ClothingBeltCeremonial entities: - uid: 11173 @@ -43769,13 +44721,6 @@ entities: - type: Transform pos: -63.287838,-6.2306004 parent: 2 -- proto: ClothingHeadHatBeret - entities: - - uid: 6076 - components: - - type: Transform - pos: -40.526157,1.7040938 - parent: 2 - proto: ClothingHeadHatBeretCap entities: - uid: 13000 @@ -43802,13 +44747,6 @@ entities: - type: Transform pos: -44.58555,-41.69361 parent: 2 -- proto: ClothingHeadHatBeretFrench - entities: - - uid: 6051 - components: - - type: Transform - pos: -42.544205,1.7163243 - parent: 2 - proto: ClothingHeadHatBeretHoS entities: - uid: 6062 @@ -43864,6 +44802,83 @@ entities: - type: Transform pos: -34.621883,32.745262 parent: 2 +- proto: ClothingHeadHatFlowerWreath + entities: + - uid: 19541 + components: + - type: Transform + pos: -53.080883,9.652346 + parent: 2 + - uid: 19543 + components: + - type: Transform + pos: -53.065258,9.777346 + parent: 2 + - uid: 19611 + components: + - type: Transform + pos: -53.049633,9.558596 + parent: 2 + - uid: 19612 + components: + - type: Transform + pos: -52.987133,9.480471 + parent: 2 + - uid: 19613 + components: + - type: Transform + pos: -52.862133,9.464846 + parent: 2 + - uid: 19614 + components: + - type: Transform + pos: -52.752758,9.464846 + parent: 2 + - uid: 19615 + components: + - type: Transform + pos: -52.596508,9.464846 + parent: 2 + - uid: 19616 + components: + - type: Transform + pos: -52.440258,9.464846 + parent: 2 + - uid: 19617 + components: + - type: Transform + pos: -52.362133,9.449221 + parent: 2 + - uid: 19618 + components: + - type: Transform + pos: -52.190258,9.449221 + parent: 2 + - uid: 19619 + components: + - type: Transform + pos: -52.112133,9.449221 + parent: 2 + - uid: 19620 + components: + - type: Transform + pos: -52.049633,9.464846 + parent: 2 + - uid: 19621 + components: + - type: Transform + pos: -51.987133,9.558596 + parent: 2 + - uid: 19622 + components: + - type: Transform + pos: -51.955883,9.683596 + parent: 2 + - uid: 19623 + components: + - type: Transform + pos: -51.955883,9.808596 + parent: 2 - proto: ClothingHeadHatHopcap entities: - uid: 6068 @@ -43927,13 +44942,6 @@ entities: - type: Transform pos: -43.43672,-24.058466 parent: 2 -- proto: ClothingMaskFox - entities: - - uid: 17836 - components: - - type: Transform - pos: -13.969369,64.02431 - parent: 2 - proto: ClothingMaskGas entities: - uid: 17997 @@ -43955,6 +44963,15 @@ entities: - type: Transform pos: 9.051177,-32.178223 parent: 2 +- proto: ClothingNeckScarfStripedZebra + entities: + - uid: 13631 + components: + - type: Transform + parent: 13414 + - type: Physics + canCollide: False + - type: InsideEntityStorage - proto: ClothingOuterCoatGentle entities: - uid: 17859 @@ -44433,17 +45450,23 @@ entities: parent: 2 - proto: ComputerCriminalRecords entities: + - uid: 1208 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -33.5,-5.5 + parent: 2 - uid: 6145 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,41.5 parent: 2 - - uid: 17483 + - uid: 14389 components: - type: Transform rot: 1.5707963267948966 rad - pos: -23.5,-8.5 + pos: -23.5,-7.5 parent: 2 - proto: ComputerId entities: @@ -44464,12 +45487,6 @@ entities: rot: 1.5707963267948966 rad pos: -49.5,41.5 parent: 2 - - uid: 6149 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -32.5,-12.5 - parent: 2 - uid: 6150 components: - type: Transform @@ -44488,6 +45505,12 @@ entities: rot: -1.5707963267948966 rad pos: 7.5,-17.5 parent: 2 + - uid: 10715 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -47.5,-12.5 + parent: 2 - proto: ComputerMassMedia entities: - uid: 19407 @@ -44559,14 +45582,6 @@ entities: rot: -1.5707963267948966 rad pos: 16.5,-34.5 parent: 2 -- proto: ComputerShuttleSalvage - entities: - - uid: 6163 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,-34.5 - parent: 2 - proto: ComputerSolarControl entities: - uid: 6164 @@ -44605,6 +45620,12 @@ entities: parent: 2 - proto: ComputerStationRecords entities: + - uid: 1207 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -33.5,-4.5 + parent: 2 - uid: 6170 components: - type: Transform @@ -44623,37 +45644,25 @@ entities: rot: -1.5707963267948966 rad pos: -34.5,33.5 parent: 2 - - uid: 6174 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,-7.5 - parent: 2 - - uid: 6279 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -47.5,-12.5 - parent: 2 - proto: ComputerSurveillanceCameraMonitor entities: - - uid: 6171 + - uid: 6176 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,-7.5 + rot: 1.5707963267948966 rad + pos: -11.5,42.5 parent: 2 - - uid: 6175 + - uid: 13652 components: - type: Transform rot: -1.5707963267948966 rad pos: -35.5,-6.5 parent: 2 - - uid: 6176 + - uid: 14384 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,42.5 + rot: -1.5707963267948966 rad + pos: -20.5,-7.5 parent: 2 - proto: ComputerSurveillanceWirelessCameraMonitor entities: @@ -44700,11 +45709,6 @@ entities: - type: Transform pos: -27.5,-42.5 parent: 2 - - uid: 6185 - components: - - type: Transform - pos: -27.5,-38.5 - parent: 2 - proto: ConveyorBelt entities: - uid: 6186 @@ -44712,291 +45716,189 @@ entities: - type: Transform pos: 15.5,-13.5 parent: 2 - - type: DeviceLinkSink - links: - - 14707 - uid: 6187 components: - type: Transform pos: 15.5,-14.5 parent: 2 - - type: DeviceLinkSink - links: - - 14707 - uid: 6188 components: - type: Transform pos: 15.5,-12.5 parent: 2 - - type: DeviceLinkSink - links: - - 14707 - uid: 6189 components: - type: Transform pos: 15.5,-11.5 parent: 2 - - type: DeviceLinkSink - links: - - 14707 - uid: 6190 components: - type: Transform pos: 15.5,-8.5 parent: 2 - - type: DeviceLinkSink - links: - - 14703 - uid: 6191 components: - type: Transform pos: 15.5,-7.5 parent: 2 - - type: DeviceLinkSink - links: - - 14703 - uid: 6192 components: - type: Transform pos: 15.5,-6.5 parent: 2 - - type: DeviceLinkSink - links: - - 14703 - uid: 6193 components: - type: Transform pos: 15.5,-5.5 parent: 2 - - type: DeviceLinkSink - links: - - 14703 - uid: 6194 components: - type: Transform pos: 15.5,-10.5 parent: 2 - - type: DeviceLinkSink - links: - - 14707 - uid: 6195 components: - type: Transform rot: 3.141592653589793 rad pos: 18.5,-31.5 parent: 2 - - type: DeviceLinkSink - links: - - 13609 - uid: 6196 components: - type: Transform rot: -1.5707963267948966 rad pos: 14.5,-14.5 parent: 2 - - type: DeviceLinkSink - links: - - 14707 - uid: 6197 components: - type: Transform rot: 1.5707963267948966 rad pos: 18.5,-22.5 parent: 2 - - type: DeviceLinkSink - links: - - 14706 - uid: 6198 components: - type: Transform rot: 1.5707963267948966 rad pos: 17.5,-22.5 parent: 2 - - type: DeviceLinkSink - links: - - 14706 - uid: 6199 components: - type: Transform rot: 1.5707963267948966 rad pos: 16.5,-22.5 parent: 2 - - type: DeviceLinkSink - links: - - 14706 - uid: 6200 components: - type: Transform rot: -1.5707963267948966 rad pos: -50.5,3.5 parent: 2 - - type: DeviceLinkSink - links: - - 14705 - uid: 6201 components: - type: Transform pos: 11.5,-25.5 parent: 2 - - type: DeviceLinkSink - links: - - 14704 - uid: 6202 components: - type: Transform rot: 3.141592653589793 rad pos: 18.5,-35.5 parent: 2 - - type: DeviceLinkSink - links: - - 13609 - uid: 6203 components: - type: Transform pos: 11.5,-22.5 parent: 2 - - type: DeviceLinkSink - links: - - 14704 - uid: 6204 components: - type: Transform pos: 11.5,-23.5 parent: 2 - - type: DeviceLinkSink - links: - - 14704 - uid: 6205 components: - type: Transform pos: 22.5,-33.5 parent: 2 - - type: DeviceLinkSink - links: - - 13609 - uid: 6206 components: - type: Transform rot: 3.141592653589793 rad pos: 18.5,-32.5 parent: 2 - - type: DeviceLinkSink - links: - - 13609 - uid: 6207 components: - type: Transform pos: 22.5,-34.5 parent: 2 - - type: DeviceLinkSink - links: - - 13609 - uid: 6208 components: - type: Transform pos: 11.5,-17.5 parent: 2 - - type: DeviceLinkSink - links: - - 14704 - uid: 6209 components: - type: Transform pos: 22.5,-35.5 parent: 2 - - type: DeviceLinkSink - links: - - 13609 - uid: 6210 components: - type: Transform pos: 11.5,-18.5 parent: 2 - - type: DeviceLinkSink - links: - - 14704 - uid: 6211 components: - type: Transform pos: 11.5,-19.5 parent: 2 - - type: DeviceLinkSink - links: - - 14704 - uid: 6212 components: - type: Transform pos: 11.5,-20.5 parent: 2 - - type: DeviceLinkSink - links: - - 14704 - uid: 6213 components: - type: Transform pos: 11.5,-21.5 parent: 2 - - type: DeviceLinkSink - links: - - 14704 - uid: 6214 components: - type: Transform rot: 3.141592653589793 rad pos: 18.5,-33.5 parent: 2 - - type: DeviceLinkSink - links: - - 13609 - uid: 6215 components: - type: Transform pos: 11.5,-24.5 parent: 2 - - type: DeviceLinkSink - links: - - 14704 - uid: 6216 components: - type: Transform pos: 22.5,-32.5 parent: 2 - - type: DeviceLinkSink - links: - - 13609 - uid: 6217 components: - type: Transform rot: 3.141592653589793 rad pos: 18.5,-34.5 parent: 2 - - type: DeviceLinkSink - links: - - 13609 - uid: 6218 components: - type: Transform rot: -1.5707963267948966 rad pos: 12.5,-14.5 parent: 2 - - type: DeviceLinkSink - links: - - 14707 - uid: 6219 components: - type: Transform rot: -1.5707963267948966 rad pos: 13.5,-14.5 parent: 2 - - type: DeviceLinkSink - links: - - 14707 -- proto: CornSeeds +- proto: CorporateCircuitBoard entities: - - uid: 6220 + - uid: 13995 components: - type: Transform - pos: 32.565235,-12.427586 + pos: -17.595583,-83.22394 parent: 2 - proto: CounterWoodFrame entities: @@ -45309,6 +46211,11 @@ entities: - type: Transform pos: -57.5,0.5 parent: 2 + - uid: 5117 + components: + - type: Transform + pos: 32.5,-12.5 + parent: 2 - proto: CrateFreezer entities: - uid: 6260 @@ -45358,13 +46265,6 @@ entities: - type: Transform pos: 14.5,-22.5 parent: 2 -- proto: CrateHydroponics - entities: - - uid: 6264 - components: - - type: Transform - pos: -17.5,7.5 - parent: 2 - proto: CrateHydroSecure entities: - uid: 6265 @@ -45442,19 +46342,12 @@ entities: - type: Transform pos: -40.5,37.5 parent: 2 -- proto: CrateSecurityNonlethal - entities: - - uid: 6274 - components: - - type: Transform - pos: -25.5,-12.5 - parent: 2 - proto: CrateSecurityRiot entities: - - uid: 6275 + - uid: 8972 components: - type: Transform - pos: -43.5,-6.5 + pos: -39.5,-2.5 parent: 2 - proto: CrateServiceBoozeDispenser entities: @@ -45513,9 +46406,6 @@ entities: - type: Transform pos: -25.5,-78.5 parent: 2 - - type: SingletonDeviceNetServer - active: False - available: False - proto: CriminalRecordsComputerCircuitboard entities: - uid: 6280 @@ -45681,6 +46571,21 @@ entities: parent: 2 - proto: CurtainsRedOpen entities: + - uid: 6290 + components: + - type: Transform + pos: -37.5,-8.5 + parent: 2 + - uid: 8959 + components: + - type: Transform + pos: -38.5,-8.5 + parent: 2 + - uid: 8979 + components: + - type: Transform + pos: -36.5,-8.5 + parent: 2 - uid: 11193 components: - type: Transform @@ -45758,13 +46663,6 @@ entities: - type: Transform pos: -41.983334,41.682137 parent: 2 -- proto: d6Dice - entities: - - uid: 6285 - components: - - type: Transform - pos: -36.346603,-12.981798 - parent: 2 - proto: DefaultStationBeaconAICore entities: - uid: 7137 @@ -45788,10 +46686,10 @@ entities: parent: 2 - proto: DefaultStationBeaconArmory entities: - - uid: 11506 + - uid: 4321 components: - type: Transform - pos: -41.5,-0.5 + pos: -41.5,-2.5 parent: 2 - proto: DefaultStationBeaconArrivals entities: @@ -45842,13 +46740,6 @@ entities: - type: Transform pos: -9.5,41.5 parent: 2 -- proto: DefaultStationBeaconBrig - entities: - - uid: 16896 - components: - - type: Transform - pos: -38.5,-14.5 - parent: 2 - proto: DefaultStationBeaconCaptainsQuarters entities: - uid: 10620 @@ -45949,10 +46840,10 @@ entities: parent: 2 - proto: DefaultStationBeaconDetectiveRoom entities: - - uid: 421 + - uid: 1204 components: - type: Transform - pos: -46.5,-14.5 + pos: -32.5,-5.5 parent: 2 - proto: DefaultStationBeaconDisposals entities: @@ -46018,13 +46909,6 @@ entities: - type: Transform pos: 19.5,-4.5 parent: 2 -- proto: DefaultStationBeaconHOSRoom - entities: - - uid: 16385 - components: - - type: Transform - pos: -30.5,-12.5 - parent: 2 - proto: DefaultStationBeaconJanitorsCloset entities: - uid: 10624 @@ -46137,10 +47021,10 @@ entities: parent: 2 - proto: DefaultStationBeaconSecurity entities: - - uid: 16361 + - uid: 14970 components: - type: Transform - pos: -22.5,-8.5 + pos: -37.5,-14.5 parent: 2 - proto: DefaultStationBeaconSingularity entities: @@ -46191,10 +47075,10 @@ entities: parent: 2 - proto: DefaultStationBeaconWardensOffice entities: - - uid: 11510 + - uid: 7441 components: - type: Transform - pos: -37.5,-6.5 + pos: -36.5,-6.5 parent: 2 - proto: DefibrillatorCabinetFilled entities: @@ -46215,23 +47099,6 @@ entities: rot: 3.141592653589793 rad pos: -28.5,0.5 parent: 2 -- proto: DeployableBarrier - entities: - - uid: 6289 - components: - - type: Transform - pos: -31.5,-6.5 - parent: 2 - - uid: 6290 - components: - - type: Transform - pos: -31.5,-4.5 - parent: 2 - - uid: 6291 - components: - - type: Transform - pos: -31.5,-5.5 - parent: 2 - proto: DeskBell entities: - uid: 6292 @@ -46360,12 +47227,6 @@ entities: rot: -1.5707963267948966 rad pos: -56.5,-14.5 parent: 2 - - uid: 6310 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -45.5,-8.5 - parent: 2 - uid: 6311 components: - type: Transform @@ -46452,12 +47313,6 @@ entities: rot: 1.5707963267948966 rad pos: 11.5,0.5 parent: 2 - - uid: 6331 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,-10.5 - parent: 2 - uid: 6332 components: - type: Transform @@ -46705,12 +47560,6 @@ entities: parent: 2 - proto: DisposalJunction entities: - - uid: 6156 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,-6.5 - parent: 2 - uid: 6369 components: - type: Transform @@ -46868,17 +47717,17 @@ entities: parent: 2 - proto: DisposalJunctionFlipped entities: - - uid: 6393 + - uid: 5644 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,-0.5 + rot: 3.141592653589793 rad + pos: -23.5,-9.5 parent: 2 - - uid: 6394 + - uid: 6393 components: - type: Transform rot: 1.5707963267948966 rad - pos: -38.5,-8.5 + pos: 0.5,-0.5 parent: 2 - uid: 6395 components: @@ -46898,22 +47747,11 @@ entities: rot: -1.5707963267948966 rad pos: -10.5,-18.5 parent: 2 - - uid: 6398 - components: - - type: Transform - pos: 25.5,-4.5 - parent: 2 - uid: 6399 components: - type: Transform pos: -5.5,38.5 parent: 2 - - uid: 6400 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -33.5,-8.5 - parent: 2 - uid: 6401 components: - type: Transform @@ -46980,8 +47818,26 @@ entities: - type: Transform pos: -50.5,22.5 parent: 2 + - uid: 16965 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-6.5 + parent: 2 - proto: DisposalPipe entities: + - uid: 489 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -30.5,-9.5 + parent: 2 + - uid: 610 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -36.5,-9.5 + parent: 2 - uid: 3026 components: - type: Transform @@ -47018,6 +47874,18 @@ entities: rot: -1.5707963267948966 rad pos: -25.5,10.5 parent: 2 + - uid: 5603 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -33.5,-9.5 + parent: 2 + - uid: 6398 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,-4.5 + parent: 2 - uid: 6414 components: - type: Transform @@ -47090,23 +47958,6 @@ entities: - type: Transform pos: -12.5,-14.5 parent: 2 - - uid: 6427 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -31.5,-8.5 - parent: 2 - - uid: 6428 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -36.5,-8.5 - parent: 2 - - uid: 6429 - components: - - type: Transform - pos: -38.5,-7.5 - parent: 2 - uid: 6430 components: - type: Transform @@ -47230,16 +48081,6 @@ entities: rot: -1.5707963267948966 rad pos: -58.5,-14.5 parent: 2 - - uid: 6452 - components: - - type: Transform - pos: -23.5,-9.5 - parent: 2 - - uid: 6453 - components: - - type: Transform - pos: -45.5,-9.5 - parent: 2 - uid: 6454 components: - type: Transform @@ -47303,12 +48144,6 @@ entities: rot: -1.5707963267948966 rad pos: 6.5,-12.5 parent: 2 - - uid: 6466 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -37.5,-8.5 - parent: 2 - uid: 6467 components: - type: Transform @@ -47981,29 +48816,6 @@ entities: rot: 3.141592653589793 rad pos: 25.5,-3.5 parent: 2 - - uid: 6585 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 26.5,-4.5 - parent: 2 - - uid: 6586 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,-4.5 - parent: 2 - - uid: 6587 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,-6.5 - parent: 2 - - uid: 6588 - components: - - type: Transform - pos: 28.5,-3.5 - parent: 2 - uid: 6589 components: - type: Transform @@ -48195,42 +49007,6 @@ entities: - type: Transform pos: -8.5,-1.5 parent: 2 - - uid: 6627 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,-5.5 - parent: 2 - - uid: 6628 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,-7.5 - parent: 2 - - uid: 6629 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,-8.5 - parent: 2 - - uid: 6630 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,-9.5 - parent: 2 - - uid: 6631 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,-10.5 - parent: 2 - - uid: 6632 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,-10.5 - parent: 2 - uid: 6633 components: - type: Transform @@ -48820,117 +49596,6 @@ entities: rot: 3.141592653589793 rad pos: -23.5,-10.5 parent: 2 - - uid: 6733 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -24.5,-8.5 - parent: 2 - - uid: 6734 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -25.5,-8.5 - parent: 2 - - uid: 6735 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -26.5,-8.5 - parent: 2 - - uid: 6736 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -27.5,-8.5 - parent: 2 - - uid: 6737 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -28.5,-8.5 - parent: 2 - - uid: 6738 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -29.5,-8.5 - parent: 2 - - uid: 6739 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -30.5,-8.5 - parent: 2 - - uid: 6740 - components: - - type: Transform - pos: -33.5,-5.5 - parent: 2 - - uid: 6741 - components: - - type: Transform - pos: -33.5,-6.5 - parent: 2 - - uid: 6742 - components: - - type: Transform - pos: -33.5,-7.5 - parent: 2 - - uid: 6743 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -32.5,-8.5 - parent: 2 - - uid: 6744 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -34.5,-8.5 - parent: 2 - - uid: 6745 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -35.5,-8.5 - parent: 2 - - uid: 6746 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -39.5,-8.5 - parent: 2 - - uid: 6747 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -40.5,-8.5 - parent: 2 - - uid: 6748 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -41.5,-8.5 - parent: 2 - - uid: 6749 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -42.5,-8.5 - parent: 2 - - uid: 6750 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -43.5,-8.5 - parent: 2 - - uid: 6751 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -44.5,-8.5 - parent: 2 - uid: 6752 components: - type: Transform @@ -50253,18 +50918,132 @@ entities: - type: Transform pos: 23.5,16.5 parent: 2 + - uid: 9099 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -37.5,-9.5 + parent: 2 + - uid: 10062 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,-9.5 + parent: 2 + - uid: 10147 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,-9.5 + parent: 2 + - uid: 10153 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,-9.5 + parent: 2 + - uid: 10302 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,-8.5 + parent: 2 + - uid: 10693 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,-9.5 + parent: 2 + - uid: 10696 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -34.5,-9.5 + parent: 2 - uid: 10737 components: - type: Transform rot: -1.5707963267948966 rad pos: -25.5,9.5 parent: 2 + - uid: 11382 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,-9.5 + parent: 2 + - uid: 11630 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,-9.5 + parent: 2 + - uid: 12093 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,-8.5 + parent: 2 + - uid: 12112 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,-8.5 + parent: 2 + - uid: 12123 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.5,-8.5 + parent: 2 + - uid: 12161 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,-8.5 + parent: 2 + - uid: 12169 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.5,-9.5 + parent: 2 + - uid: 12299 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,-9.5 + parent: 2 + - uid: 12300 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -29.5,-9.5 + parent: 2 + - uid: 12387 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -39.5,-9.5 + parent: 2 + - uid: 12493 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,-9.5 + parent: 2 - uid: 13228 components: - type: Transform rot: 1.5707963267948966 rad pos: -10.5,17.5 parent: 2 + - uid: 17039 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,-5.5 + parent: 2 - uid: 17709 components: - type: Transform @@ -50444,17 +51223,6 @@ entities: rot: -1.5707963267948966 rad pos: 40.5,-22.5 parent: 2 - - uid: 6986 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -45.5,-10.5 - parent: 2 - - uid: 6987 - components: - - type: Transform - pos: -38.5,-6.5 - parent: 2 - uid: 6988 components: - type: Transform @@ -50524,11 +51292,6 @@ entities: rot: 1.5707963267948966 rad pos: 24.5,-16.5 parent: 2 - - uid: 7000 - components: - - type: Transform - pos: 28.5,-2.5 - parent: 2 - uid: 7001 components: - type: Transform @@ -50551,12 +51314,6 @@ entities: - type: Transform pos: 17.5,1.5 parent: 2 - - uid: 7006 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 31.5,-10.5 - parent: 2 - uid: 7007 components: - type: Transform @@ -50728,6 +51485,18 @@ entities: rot: 3.141592653589793 rad pos: -8.5,-40.5 parent: 2 + - uid: 12388 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -29.5,-8.5 + parent: 2 + - uid: 12433 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -40.5,-9.5 + parent: 2 - uid: 13067 components: - type: Transform @@ -50739,10 +51508,17 @@ entities: - type: Transform pos: -11.5,18.5 parent: 2 - - uid: 17440 + - uid: 17036 components: - type: Transform - pos: -33.5,-4.5 + rot: 1.5707963267948966 rad + pos: 26.5,-5.5 + parent: 2 + - uid: 17037 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,-5.5 parent: 2 - uid: 17708 components: @@ -50780,6 +51556,11 @@ entities: parent: 2 - proto: DisposalUnit entities: + - uid: 31 + components: + - type: Transform + pos: -40.5,-9.5 + parent: 2 - uid: 4613 components: - type: Transform @@ -50795,6 +51576,13 @@ entities: - type: Transform pos: -30.5,44.5 parent: 2 + - uid: 7006 + components: + - type: MetaData + name: Nitrogen Chamber Access + - type: Transform + pos: 26.5,-5.5 + parent: 2 - uid: 7038 components: - type: Transform @@ -50830,11 +51618,6 @@ entities: - type: Transform pos: -9.5,27.5 parent: 2 - - uid: 7045 - components: - - type: Transform - pos: 28.5,-2.5 - parent: 2 - uid: 7046 components: - type: Transform @@ -50865,11 +51648,6 @@ entities: - type: Transform pos: -56.5,2.5 parent: 2 - - uid: 7052 - components: - - type: Transform - pos: -38.5,-6.5 - parent: 2 - uid: 7053 components: - type: Transform @@ -50987,8 +51765,10 @@ entities: parent: 2 - uid: 7077 components: + - type: MetaData + name: Station Access - type: Transform - pos: 31.5,-10.5 + pos: 28.5,-5.5 parent: 2 - uid: 7078 components: @@ -51005,11 +51785,6 @@ entities: - type: Transform pos: -19.5,-75.5 parent: 2 - - uid: 7081 - components: - - type: Transform - pos: -33.5,-4.5 - parent: 2 - uid: 7082 components: - type: Transform @@ -51025,11 +51800,6 @@ entities: - type: Transform pos: -25.5,17.5 parent: 2 - - uid: 7086 - components: - - type: Transform - pos: -45.5,-10.5 - parent: 2 - uid: 7087 components: - type: Transform @@ -51045,6 +51815,11 @@ entities: - type: Transform pos: 7.5,-7.5 parent: 2 + - uid: 12163 + components: + - type: Transform + pos: -29.5,-8.5 + parent: 2 - uid: 19344 components: - type: Transform @@ -51068,12 +51843,6 @@ entities: rot: -1.5707963267948966 rad pos: 39.5,-21.5 parent: 2 - - uid: 7091 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,-4.5 - parent: 2 - uid: 7095 components: - type: Transform @@ -51081,21 +51850,16 @@ entities: parent: 2 - proto: DogBed entities: - - uid: 7092 + - uid: 653 components: - type: Transform - pos: -30.5,-15.5 + pos: -13.5,7.5 parent: 2 - uid: 7093 components: - type: Transform pos: -1.5,-30.5 parent: 2 - - uid: 7096 - components: - - type: Transform - pos: -37.5,-4.5 - parent: 2 - uid: 7097 components: - type: Transform @@ -51192,10 +51956,10 @@ entities: parent: 2 - proto: DresserHeadOfSecurityFilled entities: - - uid: 5823 + - uid: 963 components: - type: Transform - pos: -30.5,-12.5 + pos: -44.5,-13.5 parent: 2 - proto: DresserQuarterMasterFilled entities: @@ -51213,10 +51977,10 @@ entities: parent: 2 - proto: DresserWardenFilled entities: - - uid: 631 + - uid: 7440 components: - type: Transform - pos: -35.5,-4.5 + pos: -37.5,-4.5 parent: 2 - proto: DrinkBeerBottleFull entities: @@ -51297,15 +52061,22 @@ entities: parent: 2 - proto: DrinkCoffee entities: - - uid: 7118 + - uid: 7120 components: - type: Transform - pos: -20.620462,-14.877153 + pos: -9.650637,1.9549263 parent: 2 - - uid: 7120 +- proto: DrinkCoffeeJug + entities: + - uid: 14046 components: - type: Transform - pos: -9.650637,1.9549263 + pos: -55.674507,16.83105 + parent: 2 + - uid: 14047 + components: + - type: Transform + pos: -55.417664,16.6109 parent: 2 - proto: DrinkDetFlask entities: @@ -51394,14 +52165,10 @@ entities: Drink: effects: - !type:SatiateThirst - shouldLog: False - logImpact: Low factor: 2 probability: 1 conditions: null - !type:AdjustReagent - shouldLog: False - logImpact: Low probability: 1 conditions: null amount: 0.15 @@ -51412,10 +52179,9 @@ entities: Flammable: effects: - !type:FlammableReaction - logImpact: Medium - shouldLog: True probability: 1 conditions: null + multiplierOnExisting: 1 multiplier: 0.05 methods: - Touch @@ -51424,16 +52190,12 @@ entities: temperatureMultiplier: 1.35 plantMetabolism: - !type:PlantAdjustNutrition - shouldLog: False - logImpact: Low guidebookIsAttributePositive: True amount: 0.25 guidebookAttributeName: plant-attribute-nutrition probability: 1 conditions: null - !type:PlantAdjustWater - shouldLog: False - logImpact: Low guidebookIsAttributePositive: True amount: 0.7 guidebookAttributeName: plant-attribute-water @@ -51502,14 +52264,10 @@ entities: Drink: effects: - !type:SatiateThirst - shouldLog: False - logImpact: Low factor: 2 probability: 1 conditions: null - !type:AdjustReagent - shouldLog: False - logImpact: Low probability: 1 conditions: null amount: 0.15 @@ -51520,10 +52278,9 @@ entities: Flammable: effects: - !type:FlammableReaction - logImpact: Medium - shouldLog: True probability: 1 conditions: null + multiplierOnExisting: 1 multiplier: 0.05 methods: - Touch @@ -51532,16 +52289,12 @@ entities: temperatureMultiplier: 1.35 plantMetabolism: - !type:PlantAdjustNutrition - shouldLog: False - logImpact: Low guidebookIsAttributePositive: True amount: 0.25 guidebookAttributeName: plant-attribute-nutrition probability: 1 conditions: null - !type:PlantAdjustWater - shouldLog: False - logImpact: Low guidebookIsAttributePositive: True amount: 0.7 guidebookAttributeName: plant-attribute-water @@ -51576,6 +52329,36 @@ entities: state: icon metamorphicMaxFillLevels: 0 recognizable: False + - uid: 13912 + components: + - type: Transform + pos: -55.686737,18.775717 + parent: 2 + - uid: 14039 + components: + - type: Transform + pos: -55.53997,18.787947 + parent: 2 + - uid: 14040 + components: + - type: Transform + pos: -55.283127,18.763485 + parent: 2 + - uid: 14041 + components: + - type: Transform + pos: -55.650047,18.555565 + parent: 2 + - uid: 14042 + components: + - type: Transform + pos: -55.454357,18.567797 + parent: 2 + - uid: 14043 + components: + - type: Transform + pos: -55.52774,18.347645 + parent: 2 - proto: DrinkGlassWhite entities: - uid: 7004 @@ -51590,6 +52373,18 @@ entities: - type: Transform pos: 8.374847,6.5835924 parent: 2 +- proto: DrinkHotCoffee + entities: + - uid: 14044 + components: + - type: Transform + pos: -55.662277,17.075663 + parent: 2 + - uid: 14045 + components: + - type: Transform + pos: -55.35651,17.075663 + parent: 2 - proto: DrinkIceBucket entities: - uid: 17488 @@ -51774,6 +52569,13 @@ entities: - type: Transform pos: 2.7259212,34.95999 parent: 2 +- proto: DrinkShakeMeat + entities: + - uid: 19602 + components: + - type: Transform + pos: -42.104286,39.737614 + parent: 2 - proto: DrinkShotGlass entities: - uid: 7157 @@ -51838,25 +52640,21 @@ entities: parent: 2 - proto: DrinkWaterBottleFull entities: - - uid: 7167 - components: - - type: Transform - pos: -20.323587,-14.877153 - parent: 2 - - uid: 7168 + - uid: 4279 components: - type: Transform - pos: -20.198587,-15.033403 + pos: -22.615414,-14.0512 parent: 2 - - uid: 7169 + - uid: 4280 components: - type: Transform - pos: -20.386087,-15.127153 + pos: -22.493107,-14.185737 parent: 2 - - uid: 7170 + - uid: 4281 components: - type: Transform - pos: -20.245462,-15.345903 + rot: -1.5707963267948966 rad + pos: -22.395264,-14.577115 parent: 2 - proto: DrinkWaterCup entities: @@ -51939,10 +52737,11 @@ entities: rot: 3.141592653589793 rad pos: -51.50696,40.59412 parent: 2 - - uid: 7185 + - uid: 1225 components: - type: Transform - pos: -19.54627,6.510217 + rot: 1.5707963267948966 rad + pos: -19.206963,6.6239495 parent: 2 - uid: 7186 components: @@ -51982,12 +52781,6 @@ entities: parent: 2 - proto: EmergencyLight entities: - - uid: 6088 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -50.5,9.5 - parent: 2 - uid: 7189 components: - type: Transform @@ -52264,17 +53057,6 @@ entities: rot: 3.141592653589793 rad pos: 17.5,15.5 parent: 2 - - uid: 7241 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -28.5,-12.5 - parent: 2 - - uid: 7242 - components: - - type: Transform - pos: -39.5,-8.5 - parent: 2 - uid: 7243 components: - type: Transform @@ -52367,6 +53149,12 @@ entities: - type: Transform pos: -0.5,20.5 parent: 2 + - uid: 19649 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -49.5,9.5 + parent: 2 - proto: Emitter entities: - uid: 7254 @@ -52499,14 +53287,6 @@ entities: parent: 2 - proto: ExplosivesSignMed entities: - - uid: 653 - components: - - type: MetaData - desc: During renovations, this sign couldnt be removed. I guess the detective is just "The Bomb" now - name: Sign Not In Use - - type: Transform - pos: -45.5,-11.5 - parent: 2 - uid: 7281 components: - type: Transform @@ -52571,11 +53351,6 @@ entities: - type: Transform pos: -26.5,-7.5 parent: 2 - - uid: 7292 - components: - - type: Transform - pos: -44.5,-10.5 - parent: 2 - uid: 7293 components: - type: Transform @@ -52665,6 +53440,13 @@ entities: parent: 2 - proto: FaxMachineBase entities: + - uid: 7185 + components: + - type: Transform + pos: -47.5,-13.5 + parent: 2 + - type: FaxMachine + name: Head Of Security - uid: 7308 components: - type: Transform @@ -52686,13 +53468,6 @@ entities: parent: 2 - type: FaxMachine name: head of personnel - - uid: 7311 - components: - - type: Transform - pos: -20.5,-9.5 - parent: 2 - - type: FaxMachine - name: security - uid: 7312 components: - type: Transform @@ -52719,6 +53494,13 @@ entities: parent: 2 - type: FaxMachine name: chief engineer + - uid: 14764 + components: + - type: Transform + pos: -22.5,-9.5 + parent: 2 + - type: FaxMachine + name: Security Lobby - uid: 17424 components: - type: Transform @@ -52811,11 +53593,6 @@ entities: - type: Transform pos: 10.5,-8.5 parent: 2 - - uid: 7326 - components: - - type: Transform - pos: -25.5,-7.5 - parent: 2 - uid: 7329 components: - type: Transform @@ -52890,11 +53667,6 @@ entities: - type: Transform pos: 8.77742,-4.4930744 parent: 2 - - uid: 17029 - components: - - type: Transform - pos: 8.08992,-4.4930744 - parent: 2 - uid: 17613 components: - type: Transform @@ -52902,6 +53674,27 @@ entities: parent: 2 - proto: FireAlarm entities: + - uid: 959 + components: + - type: Transform + pos: -34.5,-8.5 + parent: 2 + - type: DeviceList + devices: + - 4329 + - 12442 + - 12091 + - 5588 + - 9620 + - 11975 + - 27 + - 10692 + - 5841 + - 5843 + - 10508 + - 10814 + - 11506 + - 11474 - uid: 7156 components: - type: Transform @@ -52923,18 +53716,6 @@ entities: - 7454 - 7455 - 7450 - - uid: 7337 - components: - - type: Transform - pos: -25.5,-6.5 - parent: 2 - - type: DeviceList - devices: - - 7394 - - 7391 - - 7464 - - 7462 - - 7463 - uid: 7338 components: - type: Transform @@ -52969,7 +53750,6 @@ entities: devices: - 7489 - 7488 - - 7467 - uid: 7341 components: - type: Transform @@ -53052,20 +53832,6 @@ entities: - 7371 - 7531 - 7530 - - uid: 7347 - components: - - type: Transform - pos: -39.5,-7.5 - parent: 2 - - type: DeviceList - devices: - - 7438 - - 7439 - - 7440 - - 7437 - - 7436 - - 7393 - - 7392 - uid: 7349 components: - type: Transform @@ -53089,9 +53855,6 @@ entities: - 7426 - 7479 - 7460 - - 7465 - - 7466 - - 7468 - 7473 - 7474 - uid: 7351 @@ -53133,6 +53896,21 @@ entities: - 7416 - 441 - 442 + - uid: 14312 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,-7.5 + parent: 2 + - type: DeviceList + devices: + - 7366 + - 12076 + - 4329 + - 12442 + - 7391 + - 7394 + - 7464 - proto: FireAxeCabinetFilled entities: - uid: 7354 @@ -53147,15 +53925,45 @@ entities: parent: 2 - proto: Firelock entities: + - uid: 95 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -41.5,-1.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7731 - uid: 343 components: - type: Transform pos: -41.5,18.5 parent: 2 - - type: DeviceNetwork deviceLists: - 11998 - 29 + - uid: 5841 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -44.5,-8.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7614 + - 959 + - 17 + - uid: 5843 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -44.5,-9.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7614 + - 959 + - 17 - uid: 6299 components: - type: Transform @@ -53216,6 +54024,10 @@ entities: - type: Transform pos: -19.5,-8.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 14312 + - 960 - uid: 7367 components: - type: Transform @@ -53318,6 +54130,27 @@ entities: - type: Transform pos: 9.5,-6.5 parent: 2 + - uid: 10692 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -43.5,-7.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7614 + - 959 + - 7731 + - uid: 10814 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -39.5,-16.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7614 + - 959 - uid: 11311 components: - type: Transform @@ -53338,6 +54171,26 @@ entities: deviceLists: - 9878 - 6319 + - uid: 11474 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -33.5,-14.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7614 + - 959 + - uid: 11506 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -34.5,-16.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7614 + - 959 - uid: 14363 components: - type: Transform @@ -53379,36 +54232,37 @@ entities: - type: DeviceNetwork deviceLists: - 19417 -- proto: FirelockEdge - entities: - - uid: 7390 + - uid: 19651 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,5.5 + pos: -50.5,8.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 19417 + - 25 +- proto: FirelockEdge + entities: - uid: 7391 components: - type: Transform rot: 3.141592653589793 rad pos: -22.5,-6.5 parent: 2 - - uid: 7392 - components: - - type: Transform - pos: -42.5,-7.5 - parent: 2 - - uid: 7393 - components: - - type: Transform - pos: -41.5,-7.5 - parent: 2 + - type: DeviceNetwork + deviceLists: + - 14312 + - 960 - uid: 7394 components: - type: Transform rot: 3.141592653589793 rad pos: -21.5,-6.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 14312 + - 960 - uid: 7395 components: - type: Transform @@ -53483,12 +54337,6 @@ entities: rot: 3.141592653589793 rad pos: -7.5,8.5 parent: 2 - - uid: 7412 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,4.5 - parent: 2 - uid: 7413 components: - type: Transform @@ -53514,6 +54362,38 @@ entities: parent: 2 - proto: FirelockGlass entities: + - uid: 27 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -39.5,-8.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7614 + - 959 + - uid: 4329 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,-10.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 14312 + - 960 + - 7614 + - 959 + - uid: 5588 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,-11.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7614 + - 959 - uid: 7417 components: - type: Transform @@ -53595,36 +54475,6 @@ entities: - type: Transform pos: -9.5,-18.5 parent: 2 - - uid: 7436 - components: - - type: Transform - pos: -44.5,-9.5 - parent: 2 - - uid: 7437 - components: - - type: Transform - pos: -44.5,-8.5 - parent: 2 - - uid: 7438 - components: - - type: Transform - pos: -34.5,-9.5 - parent: 2 - - uid: 7439 - components: - - type: Transform - pos: -34.5,-8.5 - parent: 2 - - uid: 7440 - components: - - type: Transform - pos: -37.5,-7.5 - parent: 2 - - uid: 7441 - components: - - type: Transform - pos: -41.5,-3.5 - parent: 2 - uid: 7442 components: - type: Transform @@ -53764,56 +54614,16 @@ entities: - type: Transform pos: 11.5,9.5 parent: 2 - - uid: 7462 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -26.5,-8.5 - parent: 2 - - uid: 7463 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -26.5,-9.5 - parent: 2 - uid: 7464 components: - type: Transform rot: 3.141592653589793 rad pos: -24.5,-6.5 parent: 2 - - uid: 7465 - components: - - type: Transform - pos: 32.5,-1.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 19375 - - uid: 7466 - components: - - type: Transform - pos: 31.5,-1.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 19375 - - uid: 7467 - components: - - type: Transform - pos: 36.5,-5.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 19375 - - uid: 7468 - components: - - type: Transform - pos: 27.5,-4.5 - parent: 2 - type: DeviceNetwork deviceLists: - - 19375 + - 14312 + - 960 - uid: 7469 components: - type: Transform @@ -54313,6 +55123,70 @@ entities: - type: Transform pos: -4.5,-39.5 parent: 2 + - uid: 9620 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -29.5,-11.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7614 + - 959 + - uid: 10508 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -41.5,-15.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7614 + - 959 + - 7604 + - uid: 11975 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -33.5,-8.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7614 + - 959 + - uid: 12076 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,-10.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 14312 + - 960 + - 1222 + - uid: 12091 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,-7.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7614 + - 959 + - uid: 12442 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,-8.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 14312 + - 960 + - 7614 + - 959 - uid: 15969 components: - type: Transform @@ -54432,16 +55306,6 @@ entities: parent: 2 - proto: Floodlight entities: - - uid: 7572 - components: - - type: Transform - pos: -30.2877,-10.496739 - parent: 2 - - uid: 7573 - components: - - type: Transform - pos: -30.704367,-10.475892 - parent: 2 - uid: 7574 components: - type: Transform @@ -54469,6 +55333,14 @@ entities: parent: 2 - proto: FloorDrain entities: + - uid: 762 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,-12.5 + parent: 2 + - type: Fixtures + fixtures: {} - uid: 4772 components: - type: Transform @@ -54562,6 +55434,13 @@ entities: parent: 2 - type: Fixtures fixtures: {} + - uid: 18632 + components: + - type: Transform + pos: -20.5,13.5 + parent: 2 + - type: Fixtures + fixtures: {} - proto: FloorTileItemBar entities: - uid: 1164 @@ -54724,18 +55603,6 @@ entities: - type: Transform pos: -10.054111,32.930138 parent: 2 - - uid: 7604 - components: - - type: Transform - pos: -20.417337,-14.549028 - parent: 2 -- proto: FoodBoxNugget - entities: - - uid: 7605 - components: - - type: Transform - pos: -8.693767,4.45767 - parent: 2 - proto: FoodBoxPizzaFilled entities: - uid: 7606 @@ -54743,15 +55610,6 @@ entities: - type: Transform pos: -3.538867,-7.2398877 parent: 2 -- proto: FoodBurgerMime - entities: - - uid: 13015 - components: - - type: Transform - parent: 13011 - - type: Physics - canCollide: False - - type: InsideEntityStorage - proto: FoodCarrot entities: - uid: 7608 @@ -54785,20 +55643,6 @@ entities: rot: -1.5707963267948966 rad pos: -6.5,17.5 parent: 2 -- proto: FoodCondimentBottleBBQ - entities: - - uid: 7613 - components: - - type: Transform - pos: -8.74585,4.93717 - parent: 2 -- proto: FoodCondimentBottleHotsauce - entities: - - uid: 7614 - components: - - type: Transform - pos: -11.386693,4.9844956 - parent: 2 - proto: FoodCondimentPacketHotsauce entities: - uid: 7615 @@ -54854,6 +55698,13 @@ entities: - type: Transform pos: 11.517811,6.4848995 parent: 2 +- proto: FoodFrozenSnowconeClown + entities: + - uid: 14370 + components: + - type: Transform + pos: -45.52562,20.431595 + parent: 2 - proto: FoodLollipop entities: - uid: 7626 @@ -54885,13 +55736,6 @@ entities: - type: Transform pos: -36.34087,-53.520042 parent: 2 -- proto: FoodMealNachos - entities: - - uid: 7629 - components: - - type: Transform - pos: -11.58461,4.5779634 - parent: 2 - proto: FoodMealRibs entities: - uid: 7630 @@ -54899,13 +55743,6 @@ entities: - type: Transform pos: -61.46964,-8.387285 parent: 2 -- proto: FoodMealSoftTaco - entities: - - uid: 7631 - components: - - type: Transform - pos: -11.366393,4.2297497 - parent: 2 - proto: FoodMeat entities: - uid: 7632 @@ -54986,11 +55823,6 @@ entities: - type: Transform pos: -62.50169,-8.971625 parent: 2 - - uid: 7642 - components: - - type: Transform - pos: -8.297933,4.686996 - parent: 2 - proto: FoodMeatClown entities: - uid: 14980 @@ -55077,6 +55909,18 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage +- proto: FoodPizzaVegetableSlice + entities: + - uid: 1371 + components: + - type: Transform + pos: -35.491657,-7.3567996 + parent: 2 + - uid: 1374 + components: + - type: Transform + pos: -35.56504,-7.2222633 + parent: 2 - proto: FoodPlateSmall entities: - uid: 7652 @@ -55118,6 +55962,13 @@ entities: - type: Transform pos: -49.729855,-0.5163126 parent: 2 +- proto: FoodPoppy + entities: + - uid: 19624 + components: + - type: Transform + pos: -52.51823,10.496096 + parent: 2 - proto: FoodPotato entities: - uid: 7657 @@ -55147,12 +55998,12 @@ entities: - type: Transform pos: -47.389977,43.43533 parent: 2 -- proto: FoodSaladWatermelonFruitBowl +- proto: FoodPSBBarWonka entities: - - uid: 7662 + - uid: 19502 components: - type: Transform - pos: -16.36061,5.4444323 + pos: -46.29517,49.979664 parent: 2 - proto: FoodSoupBungo entities: @@ -55168,26 +56019,26 @@ entities: - type: Transform pos: -27.994942,48.798843 parent: 2 -- proto: FoodSoupStew +- proto: FoodTacoShell entities: - - uid: 7666 + - uid: 7631 components: - type: Transform - pos: -35.444843,-5.5133715 + pos: -13.501215,7.3576417 parent: 2 -- proto: FoodTartMime +- proto: FoodTinBeans entities: - - uid: 13992 + - uid: 7668 components: - type: Transform - pos: -52.595173,7.594063 + pos: 40.696686,13.195562 parent: 2 -- proto: FoodTinBeans +- proto: FoodTinMRE entities: - - uid: 7668 + - uid: 19603 components: - type: Transform - pos: 40.696686,13.195562 + pos: -47.51527,41.706364 parent: 2 - proto: FoodTinPeachesMaint entities: @@ -55544,8 +56395,30 @@ entities: rot: 1.5707963267948966 rad pos: -60.5,33.5 parent: 2 + - uid: 19525 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 42.5,-3.5 + parent: 2 - proto: GasPipeBend entities: + - uid: 421 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -41.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 524 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 748 components: - type: Transform @@ -55614,6 +56487,14 @@ entities: - type: Transform pos: -56.5,35.5 parent: 2 + - uid: 5851 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' - uid: 6128 components: - type: Transform @@ -55622,6 +56503,12 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 6220 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,-12.5 + parent: 2 - uid: 7129 components: - type: Transform @@ -55657,14 +56544,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#00008BFF' - - uid: 7731 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-39.5 - parent: 2 - - type: AtmosPipeColor - color: '#00008BFF' - uid: 7732 components: - type: Transform @@ -55902,14 +56781,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 7775 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -23.5,-12.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 7776 components: - type: Transform @@ -55934,36 +56805,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 7779 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,-11.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 7780 - components: - - type: Transform - pos: 34.5,-11.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 7781 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,-8.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 7782 - components: - - type: Transform - pos: 33.5,-4.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 7783 components: - type: Transform @@ -56490,29 +57331,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 7855 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -41.5,-1.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 7856 - components: - - type: Transform - pos: -35.5,-15.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 7857 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -36.5,-12.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - uid: 7858 components: - type: Transform @@ -56536,13 +57354,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#34EB43FF' - - uid: 7861 - components: - - type: Transform - pos: -23.5,-9.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 7862 components: - type: Transform @@ -56775,14 +57586,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 7894 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -31.5,-5.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 7895 components: - type: Transform @@ -56853,14 +57656,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 7904 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -46.5,-18.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 7905 components: - type: Transform @@ -56936,6 +57731,28 @@ entities: parent: 2 - type: AtmosPipeColor color: '#800080FF' + - uid: 8936 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9942 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,-15.5 + parent: 2 + - uid: 10154 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 10170 components: - type: Transform @@ -56950,6 +57767,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 10511 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -29.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' - uid: 10580 components: - type: Transform @@ -56981,6 +57806,21 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 11524 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12298 + components: + - type: Transform + pos: -23.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 14483 components: - type: Transform @@ -57104,14 +57944,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18511 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -43.5,-20.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 18774 components: - type: Transform @@ -57167,6 +57999,22 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' + - uid: 19560 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 19561 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' - proto: GasPipeFourway entities: - uid: 7921 @@ -57232,13 +58080,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 7930 - components: - - type: Transform - pos: 24.5,-4.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - uid: 7931 components: - type: Transform @@ -57281,13 +58122,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 7937 - components: - - type: Transform - pos: -22.5,-8.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - uid: 7938 components: - type: Transform @@ -57295,34 +58129,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 7939 - components: - - type: Transform - pos: -28.5,-8.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 7940 - components: - - type: Transform - pos: -37.5,-9.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 7941 - components: - - type: Transform - pos: -36.5,-8.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 7942 - components: - - type: Transform - pos: -39.5,-15.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - uid: 7943 components: - type: Transform @@ -57379,13 +58185,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 7951 - components: - - type: Transform - pos: -40.5,-14.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 7952 components: - type: Transform @@ -57456,6 +58255,13 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 8974 + components: + - type: Transform + pos: -35.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 9832 components: - type: Transform @@ -57463,6 +58269,13 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' + - uid: 11822 + components: + - type: Transform + pos: -34.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' - uid: 18781 components: - type: Transform @@ -57472,6 +58285,22 @@ entities: color: '#0055CCFF' - proto: GasPipeStraight entities: + - uid: 41 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 71 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -41.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' - uid: 399 components: - type: Transform @@ -57479,12 +58308,76 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 523 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' - uid: 948 components: - type: Transform rot: 1.5707963267948966 rad pos: -59.5,35.5 parent: 2 + - uid: 1065 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -46.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1066 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -42.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1151 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -42.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1184 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -39.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1283 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -42.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1376 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -43.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1378 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -42.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 1562 components: - type: Transform @@ -57527,6 +58420,54 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 2858 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -42.5,-19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2859 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -42.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2862 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -43.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3361 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3362 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -41.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3366 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -34.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 3691 components: - type: Transform @@ -57541,6 +58482,30 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 4305 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -42.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 4310 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 4327 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -45.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 4776 components: - type: Transform @@ -57549,6 +58514,22 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 4804 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5064 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' - uid: 5109 components: - type: Transform @@ -57576,6 +58557,76 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 5205 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5616 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -41.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5646 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -42.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5648 + components: + - type: Transform + pos: -41.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5847 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5863 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5944 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -43.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5969 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -33.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6076 + components: + - type: Transform + pos: -35.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 6105 components: - type: Transform @@ -57590,6 +58641,22 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 6149 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -40.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6169 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 6325 components: - type: Transform @@ -57598,6 +58665,22 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' + - uid: 6429 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -40.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6452 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -39.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 6483 components: - type: Transform @@ -57606,6 +58689,91 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' + - uid: 6733 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -39.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6734 + components: + - type: Transform + pos: -35.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6741 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -41.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6742 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -42.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6743 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -37.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6744 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6745 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -36.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6746 + components: + - type: Transform + pos: -35.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 7092 + components: + - type: Transform + pos: -40.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 7167 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -45.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 7168 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -42.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 7336 components: - type: Transform @@ -57630,6 +58798,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 7855 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -38.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 7916 components: - type: Transform @@ -57638,6 +58814,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 7942 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 7963 components: - type: Transform @@ -57883,21 +59067,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#800080FF' - - uid: 7999 - components: - - type: Transform - pos: -46.5,-14.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8000 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -31.5,-8.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 8001 components: - type: Transform @@ -58843,14 +60012,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 8158 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -31.5,-7.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 8159 components: - type: Transform @@ -58897,21 +60058,13 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 8166 - components: - - type: Transform - pos: -23.5,-11.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 8167 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -22.5,-12.5 + pos: -34.5,-15.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#990000FF' - uid: 8168 components: - type: Transform @@ -58928,14 +60081,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 8170 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -41.5,-14.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 8171 components: - type: Transform @@ -59124,100 +60269,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 8197 - components: - - type: Transform - pos: 34.5,-13.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 8198 - components: - - type: Transform - pos: 34.5,-12.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 8199 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,-11.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 8200 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 32.5,-11.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 8201 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 31.5,-11.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 8202 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,-9.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 8203 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,-8.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 8204 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,-7.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 8205 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,-6.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 8206 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,-5.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 8207 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 29.5,-4.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 8208 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 28.5,-4.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - uid: 8209 components: - type: Transform @@ -59226,14 +60277,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 8210 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,-4.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - uid: 8211 components: - type: Transform @@ -59255,44 +60298,12 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 8214 - components: - - type: Transform - pos: 33.5,-7.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8215 - components: - - type: Transform - pos: 33.5,-6.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 8216 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 34.5,-5.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8217 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 35.5,-5.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8218 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 36.5,-5.5 + rot: 1.5707963267948966 rad + pos: 33.5,-3.5 parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 8219 components: - type: Transform @@ -59421,14 +60432,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 8235 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 34.5,-14.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - uid: 8236 components: - type: Transform @@ -60424,14 +61427,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 8364 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,-4.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - uid: 8365 components: - type: Transform @@ -62250,13 +63245,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 8625 - components: - - type: Transform - pos: -22.5,-13.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - uid: 8626 components: - type: Transform @@ -64299,809 +65287,358 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 8891 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -49.5,46.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 8892 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -48.5,46.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 8893 - components: - - type: Transform - pos: -24.5,4.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8894 - components: - - type: Transform - pos: -24.5,5.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8895 - components: - - type: Transform - pos: -24.5,8.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8896 - components: - - type: Transform - pos: -24.5,9.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8897 - components: - - type: Transform - pos: -24.5,10.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8898 - components: - - type: Transform - pos: -24.5,11.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8899 - components: - - type: Transform - pos: -24.5,12.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8900 - components: - - type: Transform - pos: -24.5,13.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8901 - components: - - type: Transform - pos: -25.5,7.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 8902 - components: - - type: Transform - pos: -25.5,8.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 8903 - components: - - type: Transform - pos: -25.5,9.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 8904 - components: - - type: Transform - pos: -25.5,10.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 8905 - components: - - type: Transform - pos: -25.5,11.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 8906 - components: - - type: Transform - pos: -25.5,12.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 8907 - components: - - type: Transform - pos: -25.5,13.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 8908 - components: - - type: Transform - pos: -25.5,14.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 8909 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,-6.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8910 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,-4.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8911 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,-3.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8912 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,-2.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8913 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,-1.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8914 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,-0.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8915 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,0.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8916 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,-8.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 8917 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,-8.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 8918 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,-8.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 8919 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,-4.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 8920 - components: - - type: Transform - pos: -8.5,-7.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 8921 - components: - - type: Transform - pos: -8.5,-6.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 8922 - components: - - type: Transform - pos: -8.5,-5.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 8923 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,-4.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 8924 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,-4.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 8925 - components: - - type: Transform - pos: -8.5,-2.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 8926 - components: - - type: Transform - pos: -8.5,-1.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 8927 - components: - - type: Transform - pos: -42.5,-1.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 8928 - components: - - type: Transform - pos: -42.5,-2.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 8929 - components: - - type: Transform - pos: -42.5,-3.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 8930 - components: - - type: Transform - pos: -42.5,-4.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 8931 - components: - - type: Transform - pos: -42.5,-6.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 8932 - components: - - type: Transform - pos: -42.5,-7.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 8933 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -41.5,-5.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8934 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -41.5,-4.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8935 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -41.5,-3.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8936 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -41.5,-2.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8937 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -40.5,-1.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8938 - components: - - type: Transform - pos: -41.5,-7.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8939 - components: - - type: Transform - pos: -41.5,-8.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8940 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -23.5,-8.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 8941 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -24.5,-8.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 8942 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -25.5,-8.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 8943 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -26.5,-8.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 8944 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -27.5,-8.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 8945 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -29.5,-8.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 8946 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -30.5,-8.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 8947 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -31.5,-8.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 8948 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -33.5,-8.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 8949 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -34.5,-8.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 8950 + - uid: 8891 components: - type: Transform rot: -1.5707963267948966 rad - pos: -35.5,-8.5 + pos: -49.5,46.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 8951 + - uid: 8892 components: - type: Transform rot: -1.5707963267948966 rad - pos: -37.5,-8.5 + pos: -48.5,46.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 8952 + - uid: 8893 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -38.5,-8.5 + pos: -24.5,4.5 parent: 2 - type: AtmosPipeColor - color: '#990000FF' - - uid: 8953 + color: '#0055CCFF' + - uid: 8894 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -40.5,-8.5 + pos: -24.5,5.5 parent: 2 - type: AtmosPipeColor - color: '#990000FF' - - uid: 8954 + color: '#0055CCFF' + - uid: 8895 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -25.5,-9.5 + pos: -24.5,8.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 8955 + - uid: 8896 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -26.5,-9.5 + pos: -24.5,9.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 8956 + - uid: 8897 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -28.5,-9.5 + pos: -24.5,10.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 8957 + - uid: 8898 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -29.5,-9.5 + pos: -24.5,11.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 8958 + - uid: 8899 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -30.5,-9.5 + pos: -24.5,12.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 8959 + - uid: 8900 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -32.5,-9.5 + pos: -24.5,13.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 8960 + - uid: 8901 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -33.5,-9.5 + pos: -25.5,7.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8961 + color: '#990000FF' + - uid: 8902 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -34.5,-9.5 + pos: -25.5,8.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8962 + color: '#990000FF' + - uid: 8903 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -35.5,-9.5 + pos: -25.5,9.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8963 + color: '#990000FF' + - uid: 8904 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -36.5,-9.5 + pos: -25.5,10.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8964 + color: '#990000FF' + - uid: 8905 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -40.5,-9.5 + pos: -25.5,11.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8965 + color: '#990000FF' + - uid: 8906 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -41.5,-8.5 + pos: -25.5,12.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 8966 + - uid: 8907 components: - type: Transform - rot: 3.141592653589793 rad - pos: -37.5,-6.5 + pos: -25.5,13.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8967 + color: '#990000FF' + - uid: 8908 + components: + - type: Transform + pos: -25.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 8909 components: - type: Transform rot: 3.141592653589793 rad - pos: -37.5,-7.5 + pos: -9.5,-6.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 8968 + - uid: 8910 components: - type: Transform rot: 3.141592653589793 rad - pos: -37.5,-8.5 + pos: -9.5,-4.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 8969 + - uid: 8911 components: - type: Transform rot: 3.141592653589793 rad - pos: -36.5,-7.5 + pos: -9.5,-3.5 parent: 2 - type: AtmosPipeColor - color: '#990000FF' - - uid: 8971 + color: '#0055CCFF' + - uid: 8912 components: - type: Transform rot: 3.141592653589793 rad - pos: -36.5,-6.5 + pos: -9.5,-2.5 parent: 2 - type: AtmosPipeColor - color: '#990000FF' - - uid: 8972 + color: '#0055CCFF' + - uid: 8913 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -29.5,-14.5 + rot: 3.141592653589793 rad + pos: -9.5,-1.5 parent: 2 - type: AtmosPipeColor - color: '#990000FF' - - uid: 8973 + color: '#0055CCFF' + - uid: 8914 components: - type: Transform - pos: -28.5,-13.5 + rot: 3.141592653589793 rad + pos: -9.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#990000FF' - - uid: 8974 + color: '#0055CCFF' + - uid: 8915 components: - type: Transform - pos: -28.5,-12.5 + rot: 3.141592653589793 rad + pos: -9.5,0.5 parent: 2 - type: AtmosPipeColor - color: '#990000FF' - - uid: 8975 + color: '#0055CCFF' + - uid: 8916 components: - type: Transform - pos: -28.5,-11.5 + rot: 1.5707963267948966 rad + pos: -9.5,-8.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 8976 + - uid: 8917 components: - type: Transform - pos: -28.5,-10.5 + rot: 1.5707963267948966 rad + pos: -10.5,-8.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 8977 + - uid: 8918 components: - type: Transform - pos: -28.5,-9.5 + rot: 1.5707963267948966 rad + pos: -11.5,-8.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 8978 + - uid: 8919 components: - type: Transform - pos: -35.5,-16.5 + rot: -1.5707963267948966 rad + pos: -11.5,-4.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 8979 + - uid: 8920 components: - type: Transform - pos: -39.5,-16.5 + pos: -8.5,-7.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 8980 + - uid: 8921 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -41.5,-15.5 + pos: -8.5,-6.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 8981 + - uid: 8922 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -40.5,-15.5 + pos: -8.5,-5.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 8982 + - uid: 8923 components: - type: Transform rot: -1.5707963267948966 rad - pos: -41.5,-12.5 + pos: -10.5,-4.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 8983 + - uid: 8924 components: - type: Transform rot: -1.5707963267948966 rad - pos: -40.5,-12.5 + pos: -9.5,-4.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 8984 + - uid: 8925 components: - type: Transform - rot: 3.141592653589793 rad - pos: -39.5,-13.5 + pos: -8.5,-2.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 8985 + - uid: 8926 components: - type: Transform - rot: 3.141592653589793 rad - pos: -39.5,-14.5 + pos: -8.5,-1.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 8986 + - uid: 8932 components: - type: Transform rot: 1.5707963267948966 rad - pos: -36.5,-15.5 + pos: -44.5,-20.5 parent: 2 - type: AtmosPipeColor - color: '#990000FF' - - uid: 8987 + color: '#0055CCFF' + - uid: 8935 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -38.5,-15.5 + pos: -35.5,-12.5 parent: 2 - type: AtmosPipeColor - color: '#990000FF' - - uid: 8988 + color: '#0055CCFF' + - uid: 8940 components: - type: Transform - pos: -37.5,-13.5 + rot: -1.5707963267948966 rad + pos: -23.5,-8.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 8989 + - uid: 8941 components: - type: Transform rot: -1.5707963267948966 rad - pos: -38.5,-12.5 + pos: -24.5,-8.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 8990 + - uid: 8942 components: - type: Transform - rot: 3.141592653589793 rad - pos: -36.5,-11.5 + rot: -1.5707963267948966 rad + pos: -25.5,-8.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 8991 + - uid: 8943 components: - type: Transform - rot: 3.141592653589793 rad - pos: -36.5,-10.5 + rot: 1.5707963267948966 rad + pos: -41.5,-10.5 parent: 2 - type: AtmosPipeColor - color: '#990000FF' - - uid: 8992 + color: '#0055CCFF' + - uid: 8944 components: - type: Transform rot: 3.141592653589793 rad - pos: -36.5,-9.5 + pos: -42.5,-5.5 parent: 2 - type: AtmosPipeColor - color: '#990000FF' - - uid: 8993 + color: '#0055CCFF' + - uid: 8965 components: - type: Transform - rot: 3.141592653589793 rad - pos: -37.5,-10.5 + rot: -1.5707963267948966 rad + pos: -33.5,-15.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 8994 + - uid: 8976 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -42.5,-9.5 + rot: 3.141592653589793 rad + pos: -35.5,-16.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 8995 + - uid: 8991 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -43.5,-9.5 + pos: -34.5,-16.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8996 + color: '#990000FF' + - uid: 8992 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -44.5,-9.5 + pos: -34.5,-13.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#990000FF' - uid: 8997 components: - type: Transform @@ -65126,22 +65663,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 9000 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -44.5,-8.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - uid: 9001 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -43.5,-8.5 + rot: 3.141592653589793 rad + pos: -33.5,-9.5 parent: 2 - type: AtmosPipeColor - color: '#990000FF' + color: '#0055CCFF' - uid: 9002 components: - type: Transform @@ -65187,10 +65716,11 @@ entities: - uid: 9008 components: - type: Transform - pos: -47.5,-12.5 + rot: -1.5707963267948966 rad + pos: -43.5,-9.5 parent: 2 - type: AtmosPipeColor - color: '#990000FF' + color: '#0055CCFF' - uid: 9009 components: - type: Transform @@ -65808,42 +66338,24 @@ entities: - uid: 9095 components: - type: Transform - pos: -22.5,-12.5 + rot: 3.141592653589793 rad + pos: -33.5,-8.5 parent: 2 - type: AtmosPipeColor - color: '#990000FF' + color: '#0055CCFF' - uid: 9096 components: - type: Transform - pos: -22.5,-10.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 9097 - components: - - type: Transform - pos: -22.5,-11.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 9098 - components: - - type: Transform - pos: -22.5,-9.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 9099 - components: - - type: Transform - pos: -23.5,-10.5 + rot: 3.141592653589793 rad + pos: -29.5,-11.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 9100 + - uid: 9098 components: - type: Transform - pos: -37.5,-16.5 + rot: 1.5707963267948966 rad + pos: -38.5,-14.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' @@ -66190,11 +66702,11 @@ entities: - uid: 9145 components: - type: Transform - rot: 3.141592653589793 rad - pos: -28.5,-7.5 + rot: -1.5707963267948966 rad + pos: -30.5,-10.5 parent: 2 - type: AtmosPipeColor - color: '#990000FF' + color: '#0055CCFF' - uid: 9146 components: - type: Transform @@ -69367,14 +69879,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 9573 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -35.5,-14.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 9574 components: - type: Transform @@ -69405,30 +69909,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#00FFFFFF' - - uid: 9578 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -31.5,-6.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9579 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -38.5,-14.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9580 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -36.5,-14.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 9581 components: - type: Transform @@ -69492,14 +69972,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 9589 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -39.5,-9.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 9590 components: - type: Transform @@ -69596,22 +70068,13 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 9602 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -41.5,-11.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 9603 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -37.5,-14.5 + pos: -41.5,-2.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#990000FF' - uid: 9604 components: - type: Transform @@ -69620,34 +70083,18 @@ entities: - type: AtmosPipeColor color: '#0055CCFF' - uid: 9605 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -39.5,-11.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9606 components: - type: Transform rot: -1.5707963267948966 rad - pos: -39.5,-14.5 + pos: -36.5,-14.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#990000FF' - uid: 9607 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -33.5,-14.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9608 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -40.5,-12.5 + rot: -1.5707963267948966 rad + pos: -32.5,-10.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' @@ -69728,22 +70175,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 9619 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -34.5,-15.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9620 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -40.5,-13.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 9621 components: - type: Transform @@ -69755,15 +70186,8 @@ entities: - uid: 9622 components: - type: Transform - rot: 3.141592653589793 rad - pos: -34.5,-16.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9623 - components: - - type: Transform - pos: -40.5,-15.5 + rot: 1.5707963267948966 rad + pos: -25.5,-14.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' @@ -69771,7 +70195,7 @@ entities: components: - type: Transform rot: 1.5707963267948966 rad - pos: -38.5,-11.5 + pos: -28.5,-14.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' @@ -69820,14 +70244,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 9632 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -32.5,-14.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 9634 components: - type: Transform @@ -69843,13 +70259,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 9637 - components: - - type: Transform - pos: -40.5,-16.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 9638 components: - type: Transform @@ -69934,14 +70343,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 9652 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -30.5,-5.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 9653 components: - type: Transform @@ -70379,32 +70780,18 @@ entities: - uid: 9713 components: - type: Transform - pos: -46.5,-15.5 + rot: -1.5707963267948966 rad + pos: -34.5,-10.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 9714 components: - type: Transform - pos: -46.5,-16.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9715 - components: - - type: Transform - pos: -46.5,-17.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9717 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -44.5,-18.5 + pos: -39.5,-16.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#990000FF' - uid: 9718 components: - type: Transform @@ -71193,6 +71580,50 @@ entities: parent: 2 - type: AtmosPipeColor color: '#800080FF' + - uid: 9938 + components: + - type: Transform + pos: 37.5,-5.5 + parent: 2 + - uid: 10053 + components: + - type: Transform + pos: -34.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10056 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -38.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10059 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10148 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10149 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' - uid: 10175 components: - type: Transform @@ -71222,6 +71653,44 @@ entities: rot: 1.5707963267948966 rad pos: -59.5,37.5 parent: 2 + - uid: 10501 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -41.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10503 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10504 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10509 + components: + - type: Transform + pos: -39.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10522 + components: + - type: Transform + pos: -41.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' - uid: 10531 components: - type: Transform @@ -71236,6 +71705,37 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' + - uid: 10703 + components: + - type: Transform + pos: -46.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10716 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10746 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10883 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -42.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 11126 components: - type: Transform @@ -71252,6 +71752,46 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' + - uid: 11510 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11517 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -33.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11532 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11626 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11627 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' - uid: 11631 components: - type: Transform @@ -71260,6 +71800,60 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 11680 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,-3.5 + parent: 2 + - uid: 11803 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -40.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11821 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11823 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11825 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -30.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11832 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -29.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11899 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -39.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' - uid: 11933 components: - type: Transform @@ -71268,6 +71862,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' + - uid: 11973 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -41.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' - uid: 12088 components: - type: Transform @@ -71276,6 +71878,36 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' + - uid: 12110 + components: + - type: Transform + pos: -34.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12133 + components: + - type: Transform + pos: -34.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12301 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12345 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 12539 components: - type: Transform @@ -72114,22 +72746,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18770 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -43.5,-19.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 18771 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -44.5,-20.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 18775 components: - type: Transform @@ -72981,8 +73597,107 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' + - uid: 19516 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 38.5,-3.5 + parent: 2 + - uid: 19517 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,-3.5 + parent: 2 + - uid: 19518 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,-3.5 + parent: 2 + - uid: 19527 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 40.5,-3.5 + parent: 2 + - uid: 19528 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 41.5,-3.5 + parent: 2 + - uid: 19529 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 39.5,-3.5 + parent: 2 + - uid: 19553 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 19554 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 19555 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 19556 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 19557 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 19558 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 19559 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' - proto: GasPipeTJunction entities: + - uid: 525 + components: + - type: Transform + pos: -37.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' - uid: 1591 components: - type: Transform @@ -72991,6 +73706,60 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 2860 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -42.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2861 + components: + - type: Transform + pos: -42.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3363 + components: + - type: Transform + pos: -40.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 4304 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -42.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5118 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5647 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -41.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6070 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' - uid: 6138 components: - type: Transform @@ -72998,6 +73767,30 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 6453 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -42.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 7169 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -42.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 7463 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -47.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' - uid: 7753 components: - type: Transform @@ -73014,6 +73807,12 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 7930 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,-4.5 + parent: 2 - uid: 8124 components: - type: Transform @@ -73054,14 +73853,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 8130 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -45.5,-18.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 8149 components: - type: Transform @@ -73086,6 +73877,28 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' + - uid: 8977 + components: + - type: Transform + pos: -35.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9097 + components: + - type: Transform + pos: -29.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9100 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 9536 components: - type: Transform @@ -73094,6 +73907,20 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 9606 + components: + - type: Transform + pos: -31.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9623 + components: + - type: Transform + pos: -24.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 9838 components: - type: Transform @@ -73140,14 +73967,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 9847 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -46.5,-13.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 9848 components: - type: Transform @@ -73585,14 +74404,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 9909 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -31.5,-9.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 9910 components: - type: Transform @@ -73695,13 +74506,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 9924 - components: - - type: Transform - pos: 30.5,-4.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - uid: 9925 components: - type: Transform @@ -73709,14 +74513,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 9926 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 33.5,-5.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 9927 components: - type: Transform @@ -73793,14 +74589,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 9938 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 37.5,-5.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 9939 components: - type: Transform @@ -73824,14 +74612,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 9942 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 34.5,-15.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - uid: 9943 components: - type: Transform @@ -74369,14 +75149,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 10018 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,-10.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - uid: 10019 components: - type: Transform @@ -74483,14 +75255,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#00AABBFF' - - uid: 10033 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -24.5,-9.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 10034 components: - type: Transform @@ -74640,82 +75404,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 10053 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -42.5,-8.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 10054 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -42.5,-5.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 10055 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -41.5,-6.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 10056 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -32.5,-8.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 10057 - components: - - type: Transform - pos: -27.5,-9.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 10058 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -41.5,-9.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 10059 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -28.5,-14.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 10060 - components: - - type: Transform - pos: -39.5,-12.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 10061 - components: - - type: Transform - pos: -37.5,-12.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 10062 - components: - - type: Transform - pos: -37.5,-15.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - uid: 10063 components: - type: Transform @@ -75336,28 +76024,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 10147 - components: - - type: Transform - pos: -39.5,-8.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 10148 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -38.5,-9.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 10149 - components: - - type: Transform - pos: -34.5,-14.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 10150 components: - type: Transform @@ -75381,21 +76047,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 10153 - components: - - type: Transform - pos: -40.5,-11.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 10154 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -37.5,-11.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 10155 components: - type: Transform @@ -75514,6 +76165,13 @@ entities: parent: 2 - type: AtmosPipeColor color: '#00008BFF' + - uid: 10304 + components: + - type: Transform + pos: -39.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' - uid: 10347 components: - type: Transform @@ -75537,14 +76195,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 10522 + - uid: 10505 components: - type: Transform rot: -1.5707963267948966 rad - pos: -43.5,-18.5 + pos: -41.5,-8.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#990000FF' - uid: 10542 components: - type: Transform @@ -75590,6 +76248,50 @@ entities: rot: 1.5707963267948966 rad pos: -56.5,34.5 parent: 2 + - uid: 11323 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -46.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11797 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12092 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -42.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12094 + components: + - type: Transform + pos: -34.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12344 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12677 + components: + - type: Transform + pos: 34.5,-11.5 + parent: 2 - uid: 13998 components: - type: Transform @@ -75669,13 +76371,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18772 - components: - - type: Transform - pos: -45.5,-20.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 18793 components: - type: Transform @@ -75731,6 +76426,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' + - uid: 19562 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' - proto: GasPort entities: - uid: 5197 @@ -75829,6 +76532,18 @@ entities: - type: Transform pos: 32.5,11.5 parent: 2 + - uid: 19549 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,-12.5 + parent: 2 + - uid: 19550 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,-11.5 + parent: 2 - proto: GasPressurePump entities: - uid: 1582 @@ -76063,6 +76778,22 @@ entities: rot: -1.5707963267948966 rad pos: -58.5,37.5 parent: 2 + - uid: 19548 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,-11.5 + parent: 2 + - type: GasPressurePump + targetPressure: 150 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 19639 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 35.5,-3.5 + parent: 2 - proto: GasRecycler entities: - uid: 10210 @@ -76133,6 +76864,24 @@ entities: color: '#66FF00FF' - proto: GasVentPump entities: + - uid: 181 + components: + - type: Transform + pos: -42.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 503 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,-11.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7614 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 1577 components: - type: Transform @@ -76151,13 +76900,57 @@ entities: - 6300 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 6070 + - uid: 5587 components: - type: Transform - pos: -45.5,-17.5 + rot: 3.141592653589793 rad + pos: -23.5,-15.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 1222 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5604 + components: + - type: Transform + pos: -33.5,-6.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 6466 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -43.5,-10.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7614 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 7096 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -35.5,-17.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7614 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 7118 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -40.5,-17.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7614 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 8176 components: - type: Transform @@ -76165,6 +76958,36 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 8946 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,-15.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7614 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8958 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -43.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9632 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,-15.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 1222 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 10223 components: - type: Transform @@ -76349,22 +77172,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 10248 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 32.5,-4.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 10249 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 32.5,-8.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 10250 components: - type: Transform @@ -76751,37 +77558,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 10301 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -27.5,-10.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 10302 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -42.5,-6.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 10303 - components: - - type: Transform - pos: -37.5,-5.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 10304 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -39.5,-1.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 10305 components: - type: Transform @@ -77160,14 +77936,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 10355 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -34.5,-17.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 10356 components: - type: Transform @@ -77184,14 +77952,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 10358 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -40.5,-17.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 10359 components: - type: Transform @@ -77200,27 +77960,15 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 10360 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -42.5,-11.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 10361 - components: - - type: Transform - pos: -38.5,-8.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 10362 components: - type: Transform rot: 1.5707963267948966 rad pos: -25.5,-7.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 960 - type: AtmosPipeColor color: '#0055CCFF' - uid: 10363 @@ -77238,14 +77986,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 10365 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -31.5,-14.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 10366 components: - type: Transform @@ -77254,14 +77994,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 10367 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -42.5,-14.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 10368 components: - type: Transform @@ -77301,14 +78033,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 10373 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -36.5,-11.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 10374 components: - type: Transform @@ -77323,14 +78047,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 10377 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -29.5,-5.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 10378 components: - type: Transform @@ -77346,14 +78062,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 10381 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -45.5,-13.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 10382 components: - type: Transform @@ -77423,14 +78131,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 10391 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -21.5,-12.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 10392 components: - type: Transform @@ -77447,13 +78147,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 10394 - components: - - type: Transform - pos: -43.5,-17.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 10395 components: - type: Transform @@ -77562,6 +78255,35 @@ entities: parent: 2 - type: AtmosPipeColor color: '#00008BFF' + - uid: 10699 + components: + - type: Transform + pos: -46.5,-13.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7614 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10889 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12210 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -46.5,-16.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7604 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 12901 components: - type: Transform @@ -77578,7 +78300,6 @@ entities: - type: Transform pos: -42.5,19.5 parent: 2 - - type: DeviceNetwork deviceLists: - 11998 - type: AtmosPipeColor @@ -77760,6 +78481,26 @@ entities: - 19417 - type: AtmosPipeColor color: '#0055CCFF' +- proto: GasVentPumpVox + entities: + - uid: 17035 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,-9.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 19641 + - uid: 17042 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,-4.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 19641 - proto: GasVentScrubber entities: - uid: 351 @@ -77776,6 +78517,17 @@ entities: rot: 3.141592653589793 rad pos: -47.5,-16.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 7604 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 469 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -40.5,-3.5 + parent: 2 - type: AtmosPipeColor color: '#990000FF' - uid: 1578 @@ -77815,6 +78567,24 @@ entities: - 6300 - type: AtmosPipeColor color: '#990000FF' + - uid: 9619 + components: + - type: Transform + pos: -37.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9637 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -40.5,-14.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7614 + - type: AtmosPipeColor + color: '#990000FF' - uid: 10185 components: - type: Transform @@ -77822,6 +78592,17 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' + - uid: 10355 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,-14.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7614 + - type: AtmosPipeColor + color: '#990000FF' - uid: 10409 components: - type: Transform @@ -77993,22 +78774,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 10432 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 31.5,-4.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 10433 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 29.5,-10.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - uid: 10434 components: - type: Transform @@ -78407,6 +79172,9 @@ entities: rot: -1.5707963267948966 rad pos: -21.5,-8.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 960 - type: AtmosPipeColor color: '#990000FF' - uid: 10488 @@ -78510,97 +79278,23 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 10501 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -22.5,-14.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 10502 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -27.5,-14.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 10503 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -37.5,-14.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 10504 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -30.5,-14.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 10505 - components: - - type: Transform - pos: -32.5,-7.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 10506 - components: - - type: Transform - pos: -36.5,-5.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - uid: 10507 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -41.5,-5.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 10508 - components: - - type: Transform - pos: -42.5,-0.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 10509 components: - type: Transform rot: 1.5707963267948966 rad - pos: -42.5,-15.5 + pos: -31.5,-6.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - uid: 10510 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -42.5,-12.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 10511 components: - type: Transform rot: 3.141592653589793 rad pos: -39.5,-17.5 parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 10512 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -35.5,-17.5 - parent: 2 + - type: DeviceNetwork + deviceLists: + - 7614 - type: AtmosPipeColor color: '#990000FF' - uid: 10513 @@ -78703,13 +79397,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 10527 - components: - - type: Transform - pos: -28.5,-6.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - uid: 10528 components: - type: Transform @@ -78985,14 +79672,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 10568 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -39.5,-9.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - uid: 10569 components: - type: Transform @@ -79114,6 +79793,24 @@ entities: - 16105 - type: AtmosPipeColor color: '#990000FF' + - uid: 10676 + components: + - type: Transform + pos: -41.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10702 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -45.5,-12.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7614 + - type: AtmosPipeColor + color: '#990000FF' - uid: 11528 components: - type: Transform @@ -79124,13 +79821,30 @@ entities: - 6109 - type: AtmosPipeColor color: '#990000FF' + - uid: 11763 + components: + - type: Transform + pos: -28.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11798 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -34.5,-17.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7614 + - type: AtmosPipeColor + color: '#990000FF' - uid: 14560 components: - type: Transform rot: 1.5707963267948966 rad pos: -41.5,21.5 parent: 2 - - type: DeviceNetwork deviceLists: - 11998 - type: AtmosPipeColor @@ -79280,6 +79994,17 @@ entities: - 19417 - type: AtmosPipeColor color: '#990000FF' +- proto: GasVentScrubberVox + entities: + - uid: 5645 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,-3.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 19641 - proto: GasVolumePump entities: - uid: 10587 @@ -79449,9 +80174,23 @@ entities: - uid: 54 components: - type: Transform - rot: 3.141592653589793 rad pos: -31.5,12.5 parent: 2 + - uid: 87 + components: + - type: Transform + pos: -52.5,19.5 + parent: 2 + - uid: 88 + components: + - type: Transform + pos: -54.5,19.5 + parent: 2 + - uid: 208 + components: + - type: Transform + pos: -54.5,15.5 + parent: 2 - uid: 273 components: - type: Transform @@ -79462,12 +80201,21 @@ entities: - type: Transform pos: 46.5,2.5 parent: 2 + - uid: 363 + components: + - type: Transform + pos: -53.5,15.5 + parent: 2 - uid: 533 components: - type: Transform - rot: 1.5707963267948966 rad pos: 50.5,-0.5 parent: 2 + - uid: 631 + components: + - type: Transform + pos: -35.5,-16.5 + parent: 2 - uid: 651 components: - type: Transform @@ -79476,7 +80224,6 @@ entities: - uid: 736 components: - type: Transform - rot: 1.5707963267948966 rad pos: -54.5,38.5 parent: 2 - uid: 989 @@ -79489,16 +80236,34 @@ entities: - type: Transform pos: -46.5,-1.5 parent: 2 + - uid: 1180 + components: + - type: Transform + pos: -46.5,-11.5 + parent: 2 + - uid: 1199 + components: + - type: Transform + pos: -39.5,-1.5 + parent: 2 + - uid: 1203 + components: + - type: Transform + pos: -46.5,-14.5 + parent: 2 + - uid: 1223 + components: + - type: Transform + pos: -12.5,6.5 + parent: 2 - uid: 1569 components: - type: Transform - rot: 3.141592653589793 rad pos: 37.5,8.5 parent: 2 - uid: 1570 components: - type: Transform - rot: 3.141592653589793 rad pos: 37.5,9.5 parent: 2 - uid: 2128 @@ -79519,9 +80284,18 @@ entities: - uid: 3267 components: - type: Transform - rot: 1.5707963267948966 rad pos: 62.5,4.5 parent: 2 + - uid: 3367 + components: + - type: Transform + pos: -43.5,-1.5 + parent: 2 + - uid: 3373 + components: + - type: Transform + pos: -30.5,-4.5 + parent: 2 - uid: 3746 components: - type: Transform @@ -79552,23 +80326,36 @@ entities: - type: Transform pos: -40.5,-40.5 parent: 2 - - uid: 4610 + - uid: 4313 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -55.5,4.5 + pos: -60.5,13.5 parent: 2 - - uid: 4684 + - uid: 4318 components: - type: Transform - pos: -53.5,8.5 + pos: -45.5,-14.5 + parent: 2 + - uid: 4603 + components: + - type: Transform + pos: -58.5,10.5 + parent: 2 + - uid: 4610 + components: + - type: Transform + pos: -55.5,4.5 parent: 2 - uid: 4685 components: - type: Transform - rot: 3.141592653589793 rad pos: -51.5,-28.5 parent: 2 + - uid: 4687 + components: + - type: Transform + pos: -12.5,3.5 + parent: 2 - uid: 4692 components: - type: Transform @@ -79582,41 +80369,58 @@ entities: - uid: 5324 components: - type: Transform - rot: 1.5707963267948966 rad pos: 62.5,5.5 parent: 2 - uid: 5325 components: - type: Transform - rot: 1.5707963267948966 rad pos: 62.5,3.5 parent: 2 - - uid: 5643 - components: - - type: Transform - pos: -51.5,10.5 - parent: 2 - - uid: 5646 + - uid: 5610 components: - type: Transform - pos: -51.5,21.5 + pos: -40.5,-16.5 parent: 2 - uid: 5793 components: - type: Transform - rot: -1.5707963267948966 rad pos: -36.5,48.5 parent: 2 - uid: 5982 components: - type: Transform - pos: -52.5,18.5 + pos: -27.5,-14.5 parent: 2 - uid: 6017 components: - type: Transform pos: -25.5,56.5 parent: 2 + - uid: 6174 + components: + - type: Transform + pos: -27.5,-13.5 + parent: 2 + - uid: 6285 + components: + - type: Transform + pos: -47.5,-11.5 + parent: 2 + - uid: 6585 + components: + - type: Transform + pos: 27.5,-4.5 + parent: 2 + - uid: 6586 + components: + - type: Transform + pos: 36.5,-5.5 + parent: 2 + - uid: 6986 + components: + - type: Transform + pos: -36.5,-8.5 + parent: 2 - uid: 7405 components: - type: Transform @@ -79635,25 +80439,21 @@ entities: - uid: 7625 components: - type: Transform - rot: -1.5707963267948966 rad pos: -38.5,48.5 parent: 2 - uid: 7696 components: - type: Transform - rot: 1.5707963267948966 rad pos: -59.5,32.5 parent: 2 - uid: 7976 components: - type: Transform - rot: 3.141592653589793 rad pos: -50.5,41.5 parent: 2 - uid: 7977 components: - type: Transform - rot: 1.5707963267948966 rad pos: -59.5,33.5 parent: 2 - uid: 8104 @@ -79664,9 +80464,48 @@ entities: - uid: 8161 components: - type: Transform - rot: 1.5707963267948966 rad pos: 65.5,10.5 parent: 2 + - uid: 8930 + components: + - type: Transform + pos: -30.5,-5.5 + parent: 2 + - uid: 8931 + components: + - type: Transform + pos: -42.5,-1.5 + parent: 2 + - uid: 8933 + components: + - type: Transform + pos: -30.5,-6.5 + parent: 2 + - uid: 8956 + components: + - type: Transform + pos: -47.5,-14.5 + parent: 2 + - uid: 8960 + components: + - type: Transform + pos: -38.5,-8.5 + parent: 2 + - uid: 8978 + components: + - type: Transform + pos: -37.5,-8.5 + parent: 2 + - uid: 8995 + components: + - type: Transform + pos: -52.5,15.5 + parent: 2 + - uid: 8996 + components: + - type: Transform + pos: -55.5,19.5 + parent: 2 - uid: 9050 components: - type: Transform @@ -79700,37 +80539,36 @@ entities: - uid: 9716 components: - type: Transform - rot: 3.141592653589793 rad pos: 49.5,29.5 parent: 2 + - uid: 9717 + components: + - type: Transform + pos: -55.5,15.5 + parent: 2 - uid: 9825 components: - type: Transform - rot: 3.141592653589793 rad pos: 49.5,21.5 parent: 2 - uid: 9831 components: - type: Transform - rot: 1.5707963267948966 rad pos: -59.5,36.5 parent: 2 - uid: 9840 components: - type: Transform - rot: 3.141592653589793 rad pos: 49.5,23.5 parent: 2 - uid: 9841 components: - type: Transform - rot: 3.141592653589793 rad pos: 49.5,24.5 parent: 2 - uid: 9912 components: - type: Transform - rot: 3.141592653589793 rad pos: 49.5,28.5 parent: 2 - uid: 9958 @@ -79741,9 +80579,18 @@ entities: - uid: 10188 components: - type: Transform - rot: 3.141592653589793 rad pos: 49.5,22.5 parent: 2 + - uid: 10358 + components: + - type: Transform + pos: -40.5,-1.5 + parent: 2 + - uid: 10394 + components: + - type: Transform + pos: -53.5,19.5 + parent: 2 - uid: 10573 components: - type: Transform @@ -79752,79 +80599,66 @@ entities: - uid: 10590 components: - type: Transform - rot: 3.141592653589793 rad pos: 49.5,31.5 parent: 2 - uid: 10609 components: - type: Transform - rot: 3.141592653589793 rad pos: 46.5,32.5 parent: 2 - uid: 10613 components: - type: Transform - rot: 1.5707963267948966 rad pos: -4.5,-40.5 parent: 2 - uid: 10616 components: - type: Transform - rot: 1.5707963267948966 rad pos: -1.5,-52.5 parent: 2 - uid: 10617 components: - type: Transform - rot: 1.5707963267948966 rad pos: 4.5,-51.5 parent: 2 - uid: 10618 components: - type: Transform - rot: 1.5707963267948966 rad pos: -6.5,-46.5 parent: 2 - uid: 10628 components: - type: Transform - rot: 1.5707963267948966 rad pos: -5.5,-48.5 parent: 2 - uid: 10632 components: - type: Transform - rot: 1.5707963267948966 rad pos: -8.5,-46.5 parent: 2 - uid: 10635 components: - type: Transform - rot: 1.5707963267948966 rad pos: -5.5,-47.5 parent: 2 - uid: 10636 components: - type: Transform - rot: 1.5707963267948966 rad pos: 2.5,-41.5 parent: 2 - uid: 10637 components: - type: Transform - rot: 1.5707963267948966 rad pos: -0.5,-52.5 parent: 2 - uid: 10638 components: - type: Transform - rot: 1.5707963267948966 rad pos: 4.5,-47.5 parent: 2 - uid: 10639 components: - type: Transform - rot: -1.5707963267948966 rad pos: -12.5,-49.5 parent: 2 - uid: 10640 @@ -79852,31 +80686,11 @@ entities: - type: Transform pos: -8.5,2.5 parent: 2 - - uid: 10645 - components: - - type: Transform - pos: -30.5,-5.5 - parent: 2 - - uid: 10646 - components: - - type: Transform - pos: -30.5,-6.5 - parent: 2 - uid: 10647 components: - type: Transform pos: 9.5,-4.5 parent: 2 - - uid: 10648 - components: - - type: Transform - pos: -36.5,-7.5 - parent: 2 - - uid: 10649 - components: - - type: Transform - pos: -16.5,6.5 - parent: 2 - uid: 10650 components: - type: Transform @@ -79897,11 +80711,6 @@ entities: - type: Transform pos: -5.5,11.5 parent: 2 - - uid: 10654 - components: - - type: Transform - pos: -35.5,-7.5 - parent: 2 - uid: 10655 components: - type: Transform @@ -79942,11 +80751,6 @@ entities: - type: Transform pos: -12.5,-20.5 parent: 2 - - uid: 10664 - components: - - type: Transform - pos: -29.5,-13.5 - parent: 2 - uid: 10665 components: - type: Transform @@ -79987,11 +80791,6 @@ entities: - type: Transform pos: -22.5,-1.5 parent: 2 - - uid: 10676 - components: - - type: Transform - pos: -33.5,-13.5 - parent: 2 - uid: 10677 components: - type: Transform @@ -80020,7 +80819,6 @@ entities: - uid: 10682 components: - type: Transform - rot: 1.5707963267948966 rad pos: -55.5,50.5 parent: 2 - uid: 10683 @@ -80063,17 +80861,6 @@ entities: - type: Transform pos: -9.5,-15.5 parent: 2 - - uid: 10692 - components: - - type: Transform - pos: -30.5,-4.5 - parent: 2 - - uid: 10693 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -33.5,-12.5 - parent: 2 - uid: 10694 components: - type: Transform @@ -80084,21 +80871,11 @@ entities: - type: Transform pos: -5.5,17.5 parent: 2 - - uid: 10696 - components: - - type: Transform - pos: -42.5,-3.5 - parent: 2 - uid: 10698 components: - type: Transform pos: -22.5,19.5 parent: 2 - - uid: 10699 - components: - - type: Transform - pos: -40.5,-3.5 - parent: 2 - uid: 10700 components: - type: Transform @@ -80109,16 +80886,6 @@ entities: - type: Transform pos: -7.5,-11.5 parent: 2 - - uid: 10702 - components: - - type: Transform - pos: -40.5,-16.5 - parent: 2 - - uid: 10703 - components: - - type: Transform - pos: -34.5,-16.5 - parent: 2 - uid: 10705 components: - type: Transform @@ -80154,16 +80921,6 @@ entities: - type: Transform pos: -18.5,-14.5 parent: 2 - - uid: 10715 - components: - - type: Transform - pos: -41.5,-11.5 - parent: 2 - - uid: 10716 - components: - - type: Transform - pos: -41.5,-14.5 - parent: 2 - uid: 10717 components: - type: Transform @@ -80242,13 +80999,11 @@ entities: - uid: 10734 components: - type: Transform - rot: 1.5707963267948966 rad pos: -9.5,-26.5 parent: 2 - uid: 10735 components: - type: Transform - rot: 1.5707963267948966 rad pos: -9.5,-30.5 parent: 2 - uid: 10736 @@ -80271,12 +81026,6 @@ entities: - type: Transform pos: 5.5,34.5 parent: 2 - - uid: 10746 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -61.5,6.5 - parent: 2 - uid: 10748 components: - type: Transform @@ -80285,7 +81034,6 @@ entities: - uid: 10749 components: - type: Transform - rot: -1.5707963267948966 rad pos: -36.5,-47.5 parent: 2 - uid: 10750 @@ -80336,73 +81084,61 @@ entities: - uid: 10761 components: - type: Transform - rot: -1.5707963267948966 rad pos: -37.5,-29.5 parent: 2 - uid: 10762 components: - type: Transform - rot: 1.5707963267948966 rad pos: -10.5,22.5 parent: 2 - uid: 10763 components: - type: Transform - rot: 1.5707963267948966 rad pos: -10.5,21.5 parent: 2 - uid: 10764 components: - type: Transform - rot: 1.5707963267948966 rad pos: -10.5,23.5 parent: 2 - uid: 10765 components: - type: Transform - rot: -1.5707963267948966 rad pos: -32.5,-47.5 parent: 2 - uid: 10767 components: - type: Transform - rot: -1.5707963267948966 rad pos: -37.5,-47.5 parent: 2 - uid: 10768 components: - type: Transform - rot: -1.5707963267948966 rad pos: -27.5,-47.5 parent: 2 - uid: 10770 components: - type: Transform - rot: -1.5707963267948966 rad pos: -36.5,-29.5 parent: 2 - uid: 10772 components: - type: Transform - rot: -1.5707963267948966 rad pos: -35.5,-47.5 parent: 2 - uid: 10773 components: - type: Transform - rot: -1.5707963267948966 rad pos: -31.5,-47.5 parent: 2 - uid: 10774 components: - type: Transform - rot: -1.5707963267948966 rad pos: -28.5,-47.5 parent: 2 - uid: 10775 components: - type: Transform - rot: -1.5707963267948966 rad pos: -26.5,-47.5 parent: 2 - uid: 10790 @@ -80473,13 +81209,11 @@ entities: - uid: 10811 components: - type: Transform - rot: 1.5707963267948966 rad pos: 4.5,-49.5 parent: 2 - uid: 10812 components: - type: Transform - rot: -1.5707963267948966 rad pos: -66.5,-14.5 parent: 2 - uid: 10813 @@ -80500,31 +81234,26 @@ entities: - uid: 10817 components: - type: Transform - rot: 1.5707963267948966 rad pos: -50.5,-2.5 parent: 2 - uid: 10818 components: - type: Transform - rot: 1.5707963267948966 rad pos: -50.5,-4.5 parent: 2 - uid: 10819 components: - type: Transform - rot: 3.141592653589793 rad pos: 20.5,-33.5 parent: 2 - uid: 10820 components: - type: Transform - rot: -1.5707963267948966 rad pos: -65.5,-15.5 parent: 2 - uid: 10822 components: - type: Transform - rot: -1.5707963267948966 rad pos: -64.5,-18.5 parent: 2 - uid: 10823 @@ -80535,7 +81264,6 @@ entities: - uid: 10824 components: - type: Transform - rot: -1.5707963267948966 rad pos: -56.5,4.5 parent: 2 - uid: 10827 @@ -80551,13 +81279,11 @@ entities: - uid: 10829 components: - type: Transform - rot: -1.5707963267948966 rad pos: -57.5,-8.5 parent: 2 - uid: 10830 components: - type: Transform - rot: -1.5707963267948966 rad pos: -57.5,-6.5 parent: 2 - uid: 10831 @@ -80568,121 +81294,101 @@ entities: - uid: 10832 components: - type: Transform - rot: -1.5707963267948966 rad pos: -65.5,-14.5 parent: 2 - uid: 10833 components: - type: Transform - rot: -1.5707963267948966 rad pos: -65.5,-17.5 parent: 2 - uid: 10834 components: - type: Transform - rot: -1.5707963267948966 rad pos: -65.5,-16.5 parent: 2 - uid: 10835 components: - type: Transform - rot: -1.5707963267948966 rad pos: -64.5,-17.5 parent: 2 - uid: 10836 components: - type: Transform - rot: -1.5707963267948966 rad pos: -64.5,-19.5 parent: 2 - uid: 10837 components: - type: Transform - rot: -1.5707963267948966 rad pos: -63.5,-20.5 parent: 2 - uid: 10838 components: - type: Transform - rot: -1.5707963267948966 rad pos: -63.5,-21.5 parent: 2 - uid: 10839 components: - type: Transform - rot: -1.5707963267948966 rad pos: -63.5,-22.5 parent: 2 - uid: 10840 components: - type: Transform - rot: -1.5707963267948966 rad pos: -62.5,-22.5 parent: 2 - uid: 10841 components: - type: Transform - rot: -1.5707963267948966 rad pos: -61.5,-22.5 parent: 2 - uid: 10842 components: - type: Transform - rot: -1.5707963267948966 rad pos: -60.5,-23.5 parent: 2 - uid: 10843 components: - type: Transform - rot: -1.5707963267948966 rad pos: -59.5,-23.5 parent: 2 - uid: 10844 components: - type: Transform - rot: -1.5707963267948966 rad pos: -58.5,-23.5 parent: 2 - uid: 10845 components: - type: Transform - rot: -1.5707963267948966 rad pos: -57.5,-23.5 parent: 2 - uid: 10846 components: - type: Transform - rot: -1.5707963267948966 rad pos: -56.5,-23.5 parent: 2 - uid: 10847 components: - type: Transform - rot: -1.5707963267948966 rad pos: -55.5,-23.5 parent: 2 - uid: 10848 components: - type: Transform - rot: -1.5707963267948966 rad pos: -54.5,-23.5 parent: 2 - uid: 10849 components: - type: Transform - rot: -1.5707963267948966 rad pos: -52.5,-22.5 parent: 2 - uid: 10850 components: - type: Transform - rot: -1.5707963267948966 rad pos: -51.5,-22.5 parent: 2 - uid: 10851 components: - type: Transform - rot: -1.5707963267948966 rad pos: -50.5,-22.5 parent: 2 - uid: 10852 @@ -80708,85 +81414,71 @@ entities: - uid: 10866 components: - type: Transform - rot: -1.5707963267948966 rad pos: -50.5,-21.5 parent: 2 - uid: 10867 components: - type: Transform - rot: -1.5707963267948966 rad pos: -50.5,-20.5 parent: 2 - uid: 10868 components: - type: Transform - rot: -1.5707963267948966 rad pos: -51.5,-20.5 parent: 2 - uid: 10869 components: - type: Transform - rot: -1.5707963267948966 rad pos: -52.5,-20.5 parent: 2 - uid: 10870 components: - type: Transform - rot: -1.5707963267948966 rad pos: -53.5,-20.5 parent: 2 - uid: 10871 components: - type: Transform - rot: -1.5707963267948966 rad pos: -53.5,-21.5 parent: 2 - uid: 10872 components: - type: Transform - rot: -1.5707963267948966 rad pos: -54.5,-21.5 parent: 2 - uid: 10873 components: - type: Transform - rot: -1.5707963267948966 rad pos: -55.5,-21.5 parent: 2 - uid: 10874 components: - type: Transform - rot: -1.5707963267948966 rad pos: -56.5,-21.5 parent: 2 - uid: 10875 components: - type: Transform - rot: -1.5707963267948966 rad pos: -56.5,-22.5 parent: 2 - uid: 10876 components: - type: Transform - rot: -1.5707963267948966 rad pos: -57.5,-21.5 parent: 2 - uid: 10877 components: - type: Transform - rot: -1.5707963267948966 rad pos: -58.5,-21.5 parent: 2 - uid: 10878 components: - type: Transform - rot: -1.5707963267948966 rad pos: -59.5,-21.5 parent: 2 - uid: 10879 components: - type: Transform - rot: -1.5707963267948966 rad pos: -59.5,-22.5 parent: 2 - uid: 10880 @@ -80799,11 +81491,6 @@ entities: - type: Transform pos: -65.5,4.5 parent: 2 - - uid: 10883 - components: - - type: Transform - pos: -63.5,6.5 - parent: 2 - uid: 10884 components: - type: Transform @@ -80812,7 +81499,6 @@ entities: - uid: 10886 components: - type: Transform - rot: 3.141592653589793 rad pos: 48.5,32.5 parent: 2 - uid: 10887 @@ -80820,11 +81506,6 @@ entities: - type: Transform pos: 3.5,38.5 parent: 2 - - uid: 10889 - components: - - type: Transform - pos: -59.5,6.5 - parent: 2 - uid: 10891 components: - type: Transform @@ -81073,13 +81754,11 @@ entities: - uid: 10944 components: - type: Transform - rot: 3.141592653589793 rad pos: 39.5,32.5 parent: 2 - uid: 10945 components: - type: Transform - rot: 3.141592653589793 rad pos: 34.5,31.5 parent: 2 - uid: 10946 @@ -81090,13 +81769,11 @@ entities: - uid: 10947 components: - type: Transform - rot: 3.141592653589793 rad pos: 39.5,32.5 parent: 2 - uid: 10948 components: - type: Transform - rot: 3.141592653589793 rad pos: 40.5,32.5 parent: 2 - uid: 10949 @@ -81132,13 +81809,11 @@ entities: - uid: 10955 components: - type: Transform - rot: 3.141592653589793 rad pos: 35.5,31.5 parent: 2 - uid: 10956 components: - type: Transform - rot: -1.5707963267948966 rad pos: 28.5,-7.5 parent: 2 - uid: 10957 @@ -81159,25 +81834,21 @@ entities: - uid: 10962 components: - type: Transform - rot: 3.141592653589793 rad pos: 45.5,32.5 parent: 2 - uid: 10963 components: - type: Transform - rot: 3.141592653589793 rad pos: 41.5,32.5 parent: 2 - uid: 10964 components: - type: Transform - rot: 3.141592653589793 rad pos: 44.5,32.5 parent: 2 - uid: 10965 components: - type: Transform - rot: 3.141592653589793 rad pos: 43.5,32.5 parent: 2 - uid: 10966 @@ -81243,133 +81914,111 @@ entities: - uid: 10981 components: - type: Transform - rot: 1.5707963267948966 rad pos: 14.5,24.5 parent: 2 - uid: 10983 components: - type: Transform - rot: 1.5707963267948966 rad pos: 14.5,23.5 parent: 2 - uid: 10984 components: - type: Transform - rot: 3.141592653589793 rad pos: -36.5,-86.5 parent: 2 - uid: 10985 components: - type: Transform - rot: 3.141592653589793 rad pos: -34.5,-86.5 parent: 2 - uid: 10986 components: - type: Transform - rot: 3.141592653589793 rad pos: -33.5,-86.5 parent: 2 - uid: 10987 components: - type: Transform - rot: 3.141592653589793 rad pos: -32.5,-86.5 parent: 2 - uid: 10988 components: - type: Transform - rot: 3.141592653589793 rad pos: -30.5,-86.5 parent: 2 - uid: 10989 components: - type: Transform - rot: 3.141592653589793 rad pos: -29.5,-86.5 parent: 2 - uid: 10990 components: - type: Transform - rot: 3.141592653589793 rad pos: -27.5,-86.5 parent: 2 - uid: 10991 components: - type: Transform - rot: 3.141592653589793 rad pos: -26.5,-86.5 parent: 2 - uid: 10992 components: - type: Transform - rot: 3.141592653589793 rad pos: -23.5,-86.5 parent: 2 - uid: 10993 components: - type: Transform - rot: 3.141592653589793 rad pos: -23.5,-88.5 parent: 2 - uid: 10994 components: - type: Transform - rot: 3.141592653589793 rad pos: -22.5,-89.5 parent: 2 - uid: 10995 components: - type: Transform - rot: 3.141592653589793 rad pos: -20.5,-89.5 parent: 2 - uid: 10996 components: - type: Transform - rot: 3.141592653589793 rad pos: -18.5,-89.5 parent: 2 - uid: 10997 components: - type: Transform - rot: 3.141592653589793 rad pos: -17.5,-89.5 parent: 2 - uid: 10998 components: - type: Transform - rot: 3.141592653589793 rad pos: -16.5,-89.5 parent: 2 - uid: 10999 components: - type: Transform - rot: 3.141592653589793 rad pos: -14.5,-89.5 parent: 2 - uid: 11000 components: - type: Transform - rot: 3.141592653589793 rad pos: -13.5,-89.5 parent: 2 - uid: 11001 components: - type: Transform - rot: 3.141592653589793 rad pos: -12.5,-89.5 parent: 2 - uid: 11002 components: - type: Transform - rot: 3.141592653589793 rad pos: -11.5,-89.5 parent: 2 - uid: 11003 components: - type: Transform - rot: 3.141592653589793 rad pos: -8.5,-88.5 parent: 2 - uid: 11004 @@ -81380,403 +82029,336 @@ entities: - uid: 11005 components: - type: Transform - rot: 3.141592653589793 rad pos: -8.5,-87.5 parent: 2 - uid: 11006 components: - type: Transform - rot: 3.141592653589793 rad pos: -6.5,-87.5 parent: 2 - uid: 11007 components: - type: Transform - rot: 3.141592653589793 rad pos: -4.5,-87.5 parent: 2 - uid: 11008 components: - type: Transform - rot: 3.141592653589793 rad pos: -3.5,-87.5 parent: 2 - uid: 11009 components: - type: Transform - rot: 3.141592653589793 rad pos: -0.5,-86.5 parent: 2 - uid: 11010 components: - type: Transform - rot: 3.141592653589793 rad pos: 0.5,-86.5 parent: 2 - uid: 11011 components: - type: Transform - rot: 3.141592653589793 rad pos: -7.5,-87.5 parent: 2 - uid: 11012 components: - type: Transform - rot: 3.141592653589793 rad pos: 2.5,-86.5 parent: 2 - uid: 11013 components: - type: Transform - rot: 3.141592653589793 rad pos: 3.5,-86.5 parent: 2 - uid: 11014 components: - type: Transform - rot: 3.141592653589793 rad pos: 3.5,-85.5 parent: 2 - uid: 11015 components: - type: Transform - rot: 3.141592653589793 rad pos: 3.5,-81.5 parent: 2 - uid: 11016 components: - type: Transform - rot: 3.141592653589793 rad pos: 3.5,-80.5 parent: 2 - uid: 11017 components: - type: Transform - rot: 3.141592653589793 rad pos: 4.5,-80.5 parent: 2 - uid: 11018 components: - type: Transform - rot: 3.141592653589793 rad pos: 5.5,-79.5 parent: 2 - uid: 11019 components: - type: Transform - rot: 3.141592653589793 rad pos: 5.5,-78.5 parent: 2 - uid: 11020 components: - type: Transform - rot: 3.141592653589793 rad pos: 5.5,-75.5 parent: 2 - uid: 11021 components: - type: Transform - rot: 3.141592653589793 rad pos: 5.5,-74.5 parent: 2 - uid: 11022 components: - type: Transform - rot: 3.141592653589793 rad pos: 5.5,-73.5 parent: 2 - uid: 11023 components: - type: Transform - rot: 3.141592653589793 rad pos: 4.5,-72.5 parent: 2 - uid: 11024 components: - type: Transform - rot: 3.141592653589793 rad pos: 3.5,-70.5 parent: 2 - uid: 11025 components: - type: Transform - rot: 3.141592653589793 rad pos: 3.5,-71.5 parent: 2 - uid: 11026 components: - type: Transform - rot: 3.141592653589793 rad pos: 3.5,-69.5 parent: 2 - uid: 11027 components: - type: Transform - rot: 3.141592653589793 rad pos: 3.5,-67.5 parent: 2 - uid: 11028 components: - type: Transform - rot: 3.141592653589793 rad pos: 2.5,-66.5 parent: 2 - uid: 11029 components: - type: Transform - rot: 3.141592653589793 rad pos: 0.5,-66.5 parent: 2 - uid: 11030 components: - type: Transform - rot: 3.141592653589793 rad pos: -1.5,-65.5 parent: 2 - uid: 11031 components: - type: Transform - rot: 3.141592653589793 rad pos: -2.5,-65.5 parent: 2 - uid: 11032 components: - type: Transform - rot: 3.141592653589793 rad pos: -3.5,-65.5 parent: 2 - uid: 11033 components: - type: Transform - rot: 3.141592653589793 rad pos: -6.5,-64.5 parent: 2 - uid: 11034 components: - type: Transform - rot: 3.141592653589793 rad pos: -8.5,-64.5 parent: 2 - uid: 11035 components: - type: Transform - rot: 3.141592653589793 rad pos: -9.5,-64.5 parent: 2 - uid: 11036 components: - type: Transform - rot: 3.141592653589793 rad pos: -10.5,-64.5 parent: 2 - uid: 11037 components: - type: Transform - rot: 3.141592653589793 rad pos: -12.5,-64.5 parent: 2 - uid: 11038 components: - type: Transform - rot: 3.141592653589793 rad pos: -13.5,-64.5 parent: 2 - uid: 11040 components: - type: Transform - rot: 3.141592653589793 rad pos: -19.5,-64.5 parent: 2 - uid: 11042 components: - type: Transform - rot: 3.141592653589793 rad pos: -20.5,-64.5 parent: 2 - uid: 11043 components: - type: Transform - rot: 3.141592653589793 rad pos: -20.5,-64.5 parent: 2 - uid: 11044 components: - type: Transform - rot: 3.141592653589793 rad pos: -21.5,-64.5 parent: 2 - uid: 11045 components: - type: Transform - rot: 3.141592653589793 rad pos: -22.5,-64.5 parent: 2 - uid: 11046 components: - type: Transform - rot: 3.141592653589793 rad pos: -23.5,-65.5 parent: 2 - uid: 11047 components: - type: Transform - rot: 3.141592653589793 rad pos: -24.5,-65.5 parent: 2 - uid: 11048 components: - type: Transform - rot: 3.141592653589793 rad pos: -26.5,-65.5 parent: 2 - uid: 11049 components: - type: Transform - rot: 3.141592653589793 rad pos: -26.5,-66.5 parent: 2 - uid: 11050 components: - type: Transform - rot: 3.141592653589793 rad pos: -27.5,-66.5 parent: 2 - uid: 11051 components: - type: Transform - rot: 3.141592653589793 rad pos: -28.5,-66.5 parent: 2 - uid: 11052 components: - type: Transform - rot: 3.141592653589793 rad pos: -29.5,-66.5 parent: 2 - uid: 11053 components: - type: Transform - rot: 3.141592653589793 rad pos: -30.5,-66.5 parent: 2 - uid: 11054 components: - type: Transform - rot: 3.141592653589793 rad pos: -31.5,-66.5 parent: 2 - uid: 11055 components: - type: Transform - rot: 3.141592653589793 rad pos: -32.5,-66.5 parent: 2 - uid: 11056 components: - type: Transform - rot: 3.141592653589793 rad pos: -33.5,-67.5 parent: 2 - uid: 11057 components: - type: Transform - rot: 3.141592653589793 rad pos: -34.5,-67.5 parent: 2 - uid: 11058 components: - type: Transform - rot: 3.141592653589793 rad pos: -35.5,-67.5 parent: 2 - uid: 11059 components: - type: Transform - rot: 3.141592653589793 rad pos: -35.5,-66.5 parent: 2 - uid: 11060 components: - type: Transform - rot: 3.141592653589793 rad pos: -36.5,-66.5 parent: 2 - uid: 11061 components: - type: Transform - rot: 3.141592653589793 rad pos: -37.5,-67.5 parent: 2 - uid: 11062 components: - type: Transform - rot: 3.141592653589793 rad pos: -37.5,-68.5 parent: 2 - uid: 11063 components: - type: Transform - rot: 3.141592653589793 rad pos: -37.5,-69.5 parent: 2 - uid: 11064 components: - type: Transform - rot: 3.141592653589793 rad pos: -37.5,-70.5 parent: 2 - uid: 11065 components: - type: Transform - rot: 3.141592653589793 rad pos: -37.5,-71.5 parent: 2 - uid: 11066 components: - type: Transform - rot: 3.141592653589793 rad pos: -38.5,-72.5 parent: 2 - uid: 11067 components: - type: Transform - rot: 3.141592653589793 rad pos: -39.5,-75.5 parent: 2 - uid: 11068 components: - type: Transform - rot: 3.141592653589793 rad pos: -39.5,-76.5 parent: 2 - uid: 11069 components: - type: Transform - rot: 3.141592653589793 rad pos: -39.5,-77.5 parent: 2 - uid: 11070 components: - type: Transform - rot: 3.141592653589793 rad pos: -39.5,-79.5 parent: 2 - uid: 11071 components: - type: Transform - rot: 3.141592653589793 rad pos: -37.5,-81.5 parent: 2 - uid: 11072 components: - type: Transform - rot: 3.141592653589793 rad pos: -37.5,-83.5 parent: 2 - uid: 11073 components: - type: Transform - rot: 3.141592653589793 rad pos: -37.5,-85.5 parent: 2 - uid: 11074 @@ -81792,79 +82374,66 @@ entities: - uid: 11079 components: - type: Transform - rot: 3.141592653589793 rad pos: 28.5,34.5 parent: 2 - uid: 11080 components: - type: Transform - rot: 1.5707963267948966 rad pos: 27.5,-3.5 parent: 2 - uid: 11081 components: - type: Transform - rot: 1.5707963267948966 rad pos: 29.5,-1.5 parent: 2 - uid: 11082 components: - type: Transform - rot: 1.5707963267948966 rad pos: 30.5,-1.5 parent: 2 - uid: 11083 components: - type: Transform - rot: 3.141592653589793 rad pos: 26.5,34.5 parent: 2 - uid: 11084 components: - type: Transform - rot: 3.141592653589793 rad pos: 29.5,34.5 parent: 2 - uid: 11085 components: - type: Transform - rot: 1.5707963267948966 rad pos: 33.5,-1.5 parent: 2 - uid: 11086 components: - type: Transform - rot: 1.5707963267948966 rad pos: 34.5,-1.5 parent: 2 - uid: 11087 components: - type: Transform - rot: 1.5707963267948966 rad pos: 36.5,-3.5 parent: 2 - uid: 11088 components: - type: Transform - rot: 1.5707963267948966 rad pos: 36.5,-4.5 parent: 2 - uid: 11089 components: - type: Transform - rot: 1.5707963267948966 rad pos: 41.5,-5.5 parent: 2 - uid: 11090 components: - type: Transform - rot: 1.5707963267948966 rad pos: 41.5,-6.5 parent: 2 - uid: 11091 components: - type: Transform - rot: 1.5707963267948966 rad pos: 41.5,-7.5 parent: 2 - uid: 11093 @@ -81875,67 +82444,56 @@ entities: - uid: 11095 components: - type: Transform - rot: 1.5707963267948966 rad pos: 43.5,-10.5 parent: 2 - uid: 11096 components: - type: Transform - rot: 1.5707963267948966 rad pos: 42.5,-10.5 parent: 2 - uid: 11097 components: - type: Transform - rot: 1.5707963267948966 rad pos: 41.5,-10.5 parent: 2 - uid: 11098 components: - type: Transform - rot: 1.5707963267948966 rad pos: 41.5,-13.5 parent: 2 - uid: 11099 components: - type: Transform - rot: 1.5707963267948966 rad pos: 41.5,-14.5 parent: 2 - uid: 11100 components: - type: Transform - rot: 1.5707963267948966 rad pos: 41.5,-15.5 parent: 2 - uid: 11101 components: - type: Transform - rot: 1.5707963267948966 rad pos: 41.5,-18.5 parent: 2 - uid: 11102 components: - type: Transform - rot: 1.5707963267948966 rad pos: 42.5,-18.5 parent: 2 - uid: 11103 components: - type: Transform - rot: 1.5707963267948966 rad pos: 43.5,-18.5 parent: 2 - uid: 11104 components: - type: Transform - rot: 1.5707963267948966 rad pos: 41.5,-21.5 parent: 2 - uid: 11105 components: - type: Transform - rot: 1.5707963267948966 rad pos: 41.5,-22.5 parent: 2 - uid: 11108 @@ -81976,7 +82534,6 @@ entities: - uid: 11115 components: - type: Transform - rot: 3.141592653589793 rad pos: 30.5,33.5 parent: 2 - uid: 11116 @@ -81997,7 +82554,6 @@ entities: - uid: 11119 components: - type: Transform - rot: 3.141592653589793 rad pos: 30.5,32.5 parent: 2 - uid: 11121 @@ -82038,61 +82594,51 @@ entities: - uid: 11135 components: - type: Transform - rot: 3.141592653589793 rad pos: 8.5,37.5 parent: 2 - uid: 11141 components: - type: Transform - rot: 1.5707963267948966 rad pos: 52.5,-0.5 parent: 2 - uid: 11142 components: - type: Transform - rot: 1.5707963267948966 rad pos: 51.5,-0.5 parent: 2 - uid: 11147 components: - type: Transform - rot: 1.5707963267948966 rad pos: 56.5,-1.5 parent: 2 - uid: 11148 components: - type: Transform - rot: 1.5707963267948966 rad pos: 60.5,0.5 parent: 2 - uid: 11149 components: - type: Transform - rot: 1.5707963267948966 rad pos: 57.5,-1.5 parent: 2 - uid: 11150 components: - type: Transform - rot: 1.5707963267948966 rad pos: 62.5,0.5 parent: 2 - uid: 11151 components: - type: Transform - rot: 1.5707963267948966 rad pos: 65.5,4.5 parent: 2 - uid: 11152 components: - type: Transform - rot: 1.5707963267948966 rad pos: 65.5,5.5 parent: 2 - uid: 11154 components: - type: Transform - rot: 1.5707963267948966 rad pos: 65.5,9.5 parent: 2 - uid: 11164 @@ -82128,37 +82674,31 @@ entities: - uid: 11186 components: - type: Transform - rot: -1.5707963267948966 rad pos: 19.5,32.5 parent: 2 - uid: 11187 components: - type: Transform - rot: -1.5707963267948966 rad pos: 19.5,33.5 parent: 2 - uid: 11188 components: - type: Transform - rot: -1.5707963267948966 rad pos: 21.5,33.5 parent: 2 - uid: 11189 components: - type: Transform - rot: -1.5707963267948966 rad pos: 22.5,33.5 parent: 2 - uid: 11190 components: - type: Transform - rot: -1.5707963267948966 rad pos: 23.5,33.5 parent: 2 - uid: 11191 components: - type: Transform - rot: -1.5707963267948966 rad pos: 23.5,32.5 parent: 2 - uid: 11195 @@ -82204,73 +82744,61 @@ entities: - uid: 11205 components: - type: Transform - rot: 1.5707963267948966 rad pos: -14.5,43.5 parent: 2 - uid: 11206 components: - type: Transform - rot: 1.5707963267948966 rad pos: -14.5,44.5 parent: 2 - uid: 11207 components: - type: Transform - rot: 1.5707963267948966 rad pos: -13.5,44.5 parent: 2 - uid: 11208 components: - type: Transform - rot: 1.5707963267948966 rad pos: -12.5,44.5 parent: 2 - uid: 11209 components: - type: Transform - rot: 1.5707963267948966 rad pos: -12.5,45.5 parent: 2 - uid: 11210 components: - type: Transform - rot: 1.5707963267948966 rad pos: -11.5,45.5 parent: 2 - uid: 11211 components: - type: Transform - rot: 1.5707963267948966 rad pos: -10.5,45.5 parent: 2 - uid: 11212 components: - type: Transform - rot: 1.5707963267948966 rad pos: -9.5,45.5 parent: 2 - uid: 11213 components: - type: Transform - rot: 1.5707963267948966 rad pos: -8.5,45.5 parent: 2 - uid: 11214 components: - type: Transform - rot: 1.5707963267948966 rad pos: -7.5,45.5 parent: 2 - uid: 11215 components: - type: Transform - rot: 1.5707963267948966 rad pos: -7.5,44.5 parent: 2 - uid: 11216 components: - type: Transform - rot: 1.5707963267948966 rad pos: -6.5,44.5 parent: 2 - uid: 11219 @@ -82346,7 +82874,6 @@ entities: - uid: 11238 components: - type: Transform - rot: -1.5707963267948966 rad pos: 3.5,-65.5 parent: 2 - uid: 11239 @@ -82417,13 +82944,11 @@ entities: - uid: 11257 components: - type: Transform - rot: 3.141592653589793 rad pos: -50.5,39.5 parent: 2 - uid: 11258 components: - type: Transform - rot: 3.141592653589793 rad pos: -50.5,40.5 parent: 2 - uid: 11260 @@ -82474,19 +82999,16 @@ entities: - uid: 11278 components: - type: Transform - rot: -1.5707963267948966 rad pos: -13.5,49.5 parent: 2 - uid: 11279 components: - type: Transform - rot: -1.5707963267948966 rad pos: -10.5,48.5 parent: 2 - uid: 11280 components: - type: Transform - rot: -1.5707963267948966 rad pos: -15.5,49.5 parent: 2 - uid: 11281 @@ -82507,49 +83029,41 @@ entities: - uid: 11286 components: - type: Transform - rot: -1.5707963267948966 rad pos: 3.5,-60.5 parent: 2 - uid: 11287 components: - type: Transform - rot: -1.5707963267948966 rad pos: 4.5,-59.5 parent: 2 - uid: 11288 components: - type: Transform - rot: -1.5707963267948966 rad pos: 4.5,-58.5 parent: 2 - uid: 11289 components: - type: Transform - rot: -1.5707963267948966 rad pos: 4.5,-57.5 parent: 2 - uid: 11290 components: - type: Transform - rot: -1.5707963267948966 rad pos: 6.5,-54.5 parent: 2 - uid: 11291 components: - type: Transform - rot: -1.5707963267948966 rad pos: 7.5,-54.5 parent: 2 - uid: 11292 components: - type: Transform - rot: -1.5707963267948966 rad pos: 8.5,-54.5 parent: 2 - uid: 11293 components: - type: Transform - rot: 3.141592653589793 rad pos: -52.5,-27.5 parent: 2 - uid: 11296 @@ -82632,12 +83146,6 @@ entities: - type: Transform pos: -44.5,68.5 parent: 2 - - uid: 11323 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -62.5,6.5 - parent: 2 - uid: 11324 components: - type: Transform @@ -82706,7 +83214,6 @@ entities: - uid: 11341 components: - type: Transform - rot: -1.5707963267948966 rad pos: 4.5,-41.5 parent: 2 - uid: 11350 @@ -82812,13 +83319,11 @@ entities: - uid: 11371 components: - type: Transform - rot: 1.5707963267948966 rad pos: -59.5,42.5 parent: 2 - uid: 11372 components: - type: Transform - rot: 1.5707963267948966 rad pos: -59.5,43.5 parent: 2 - uid: 11373 @@ -82851,16 +83356,6 @@ entities: - type: Transform pos: -43.5,16.5 parent: 2 - - uid: 11383 - components: - - type: Transform - pos: -52.5,16.5 - parent: 2 - - uid: 11384 - components: - - type: Transform - pos: -52.5,17.5 - parent: 2 - uid: 11387 components: - type: Transform @@ -82964,7 +83459,6 @@ entities: - uid: 11411 components: - type: Transform - rot: 3.141592653589793 rad pos: 20.5,-34.5 parent: 2 - uid: 11412 @@ -82990,7 +83484,6 @@ entities: - uid: 11416 components: - type: Transform - rot: 3.141592653589793 rad pos: 11.5,37.5 parent: 2 - uid: 11417 @@ -82998,11 +83491,6 @@ entities: - type: Transform pos: 12.5,-38.5 parent: 2 - - uid: 11418 - components: - - type: Transform - pos: -51.5,9.5 - parent: 2 - uid: 11419 components: - type: Transform @@ -83233,16 +83721,6 @@ entities: - type: Transform pos: 34.5,-23.5 parent: 2 - - uid: 11472 - components: - - type: Transform - pos: 29.5,-13.5 - parent: 2 - - uid: 11473 - components: - - type: Transform - pos: 30.5,-13.5 - parent: 2 - uid: 11478 components: - type: Transform @@ -83281,114 +83759,91 @@ entities: - uid: 11487 components: - type: Transform - rot: 1.5707963267948966 rad pos: -5.5,-49.5 parent: 2 - uid: 11493 components: - type: Transform - rot: -1.5707963267948966 rad pos: -10.5,-51.5 parent: 2 - uid: 11494 components: - type: Transform - rot: 1.5707963267948966 rad pos: -4.5,-37.5 parent: 2 - uid: 11496 components: - type: Transform - rot: -1.5707963267948966 rad pos: -12.5,-48.5 parent: 2 - uid: 11497 components: - type: Transform - rot: 1.5707963267948966 rad pos: 2.5,-47.5 parent: 2 - uid: 11498 components: - type: Transform - rot: -1.5707963267948966 rad pos: -12.5,-50.5 parent: 2 - uid: 11499 components: - type: Transform - rot: 1.5707963267948966 rad pos: 2.5,-51.5 parent: 2 - uid: 11500 components: - type: Transform - rot: 1.5707963267948966 rad pos: 2.5,-42.5 parent: 2 - uid: 11501 components: - type: Transform - rot: 1.5707963267948966 rad pos: 2.5,-50.5 parent: 2 - uid: 11502 components: - type: Transform - rot: 1.5707963267948966 rad pos: 2.5,-49.5 parent: 2 - uid: 11503 components: - type: Transform - rot: 1.5707963267948966 rad pos: 2.5,-43.5 parent: 2 - uid: 11504 components: - type: Transform - rot: 1.5707963267948966 rad pos: 2.5,-46.5 parent: 2 - uid: 11505 components: - type: Transform - rot: 1.5707963267948966 rad pos: 2.5,-45.5 parent: 2 - uid: 11512 components: - type: Transform - rot: 1.5707963267948966 rad pos: 4.5,-45.5 parent: 2 - uid: 11513 components: - type: Transform - rot: 1.5707963267948966 rad pos: 4.5,-43.5 parent: 2 - uid: 11514 components: - type: Transform - rot: 1.5707963267948966 rad pos: -7.5,-46.5 parent: 2 - - uid: 11558 - components: - - type: Transform - pos: -52.5,8.5 - parent: 2 - uid: 11590 components: - type: Transform - rot: 3.141592653589793 rad pos: -51.5,-29.5 parent: 2 - uid: 11591 components: - type: Transform - rot: 3.141592653589793 rad pos: -50.5,-29.5 parent: 2 - uid: 11599 @@ -83399,9 +83854,13 @@ entities: - uid: 11661 components: - type: Transform - rot: 3.141592653589793 rad pos: -52.5,-28.5 parent: 2 + - uid: 11824 + components: + - type: Transform + pos: -33.5,-15.5 + parent: 2 - uid: 11896 components: - type: Transform @@ -83412,45 +83871,36 @@ entities: - type: Transform pos: 26.5,7.5 parent: 2 + - uid: 11921 + components: + - type: Transform + pos: -60.5,21.5 + parent: 2 - uid: 12016 components: - type: Transform - rot: 1.5707963267948966 rad pos: 47.5,-1.5 parent: 2 - uid: 12017 components: - type: Transform - rot: 1.5707963267948966 rad pos: 65.5,2.5 parent: 2 - uid: 12018 components: - type: Transform - rot: 1.5707963267948966 rad pos: 65.5,3.5 parent: 2 - uid: 12021 components: - type: Transform - rot: 1.5707963267948966 rad pos: 65.5,8.5 parent: 2 - - uid: 12110 - components: - - type: Transform - pos: -54.5,13.5 - parent: 2 - uid: 12118 components: - type: Transform pos: -14.5,-63.5 parent: 2 - - uid: 12133 - components: - - type: Transform - pos: -54.5,21.5 - parent: 2 - uid: 12207 components: - type: Transform @@ -83466,27 +83916,19 @@ entities: - type: Transform pos: -54.5,25.5 parent: 2 - - uid: 12502 - components: - - type: Transform - pos: -51.5,13.5 - parent: 2 - uid: 12555 components: - type: Transform - rot: 3.141592653589793 rad pos: 42.5,32.5 parent: 2 - uid: 12572 components: - type: Transform - rot: -1.5707963267948966 rad pos: 58.5,3.5 parent: 2 - uid: 12682 components: - type: Transform - rot: 3.141592653589793 rad pos: 47.5,32.5 parent: 2 - uid: 12698 @@ -83497,9 +83939,18 @@ entities: - uid: 12703 components: - type: Transform - rot: 3.141592653589793 rad pos: 49.5,30.5 parent: 2 + - uid: 12720 + components: + - type: Transform + pos: -56.5,13.5 + parent: 2 + - uid: 12827 + components: + - type: Transform + pos: -56.5,21.5 + parent: 2 - uid: 12847 components: - type: Transform @@ -83528,13 +83979,11 @@ entities: - uid: 13319 components: - type: Transform - rot: 1.5707963267948966 rad pos: -59.5,35.5 parent: 2 - uid: 13345 components: - type: Transform - rot: 1.5707963267948966 rad pos: 64.5,0.5 parent: 2 - uid: 13383 @@ -83552,6 +84001,16 @@ entities: - type: Transform pos: 46.5,5.5 parent: 2 + - uid: 13921 + components: + - type: Transform + pos: -26.5,-9.5 + parent: 2 + - uid: 14197 + components: + - type: Transform + pos: -12.5,7.5 + parent: 2 - uid: 14385 components: - type: Transform @@ -83565,13 +84024,11 @@ entities: - uid: 14504 components: - type: Transform - rot: -1.5707963267948966 rad pos: -43.5,27.5 parent: 2 - uid: 14564 components: - type: Transform - rot: -1.5707963267948966 rad pos: -43.5,28.5 parent: 2 - uid: 14618 @@ -83589,6 +84046,21 @@ entities: - type: Transform pos: -26.5,2.5 parent: 2 + - uid: 14638 + components: + - type: Transform + pos: -49.5,-39.5 + parent: 2 + - uid: 14657 + components: + - type: Transform + pos: -59.5,15.5 + parent: 2 + - uid: 14674 + components: + - type: Transform + pos: -59.5,19.5 + parent: 2 - uid: 15024 components: - type: Transform @@ -83619,11 +84091,21 @@ entities: - type: Transform pos: -24.5,52.5 parent: 2 + - uid: 16096 + components: + - type: Transform + pos: -57.5,19.5 + parent: 2 - uid: 16100 components: - type: Transform pos: 8.5,-27.5 parent: 2 + - uid: 16201 + components: + - type: Transform + pos: -57.5,15.5 + parent: 2 - uid: 16536 components: - type: Transform @@ -83634,6 +84116,11 @@ entities: - type: Transform pos: 46.5,6.5 parent: 2 + - uid: 16763 + components: + - type: Transform + pos: 27.5,-20.5 + parent: 2 - uid: 16857 components: - type: Transform @@ -83642,14 +84129,8 @@ entities: - uid: 16915 components: - type: Transform - rot: -1.5707963267948966 rad pos: -42.5,18.5 parent: 2 - - uid: 16965 - components: - - type: Transform - pos: -16.5,-62.5 - parent: 2 - uid: 16966 components: - type: Transform @@ -83660,16 +84141,29 @@ entities: - type: Transform pos: -18.5,-64.5 parent: 2 + - uid: 16999 + components: + - type: Transform + pos: 31.5,-1.5 + parent: 2 + - uid: 17021 + components: + - type: Transform + pos: 32.5,-1.5 + parent: 2 - uid: 17028 components: - type: Transform - rot: 3.141592653589793 rad pos: -40.5,18.5 parent: 2 + - uid: 17029 + components: + - type: Transform + pos: 27.5,-21.5 + parent: 2 - uid: 17594 components: - type: Transform - rot: 1.5707963267948966 rad pos: -24.5,59.5 parent: 2 - uid: 17762 @@ -83712,184 +84206,159 @@ entities: - type: Transform pos: -13.5,61.5 parent: 2 + - uid: 17836 + components: + - type: Transform + pos: 27.5,-19.5 + parent: 2 - uid: 17874 components: - type: Transform - rot: 3.141592653589793 rad pos: 17.5,41.5 parent: 2 - uid: 17875 components: - type: Transform - rot: 3.141592653589793 rad pos: 17.5,40.5 parent: 2 - uid: 17876 components: - type: Transform - rot: 3.141592653589793 rad pos: 17.5,39.5 parent: 2 - uid: 17877 components: - type: Transform - rot: 3.141592653589793 rad pos: 12.5,41.5 parent: 2 - uid: 17878 components: - type: Transform - rot: 3.141592653589793 rad pos: 12.5,40.5 parent: 2 - uid: 17879 components: - type: Transform - rot: 3.141592653589793 rad pos: 12.5,39.5 parent: 2 - uid: 17880 components: - type: Transform - rot: 3.141592653589793 rad pos: 12.5,48.5 parent: 2 - uid: 17881 components: - type: Transform - rot: 3.141592653589793 rad pos: 12.5,47.5 parent: 2 - uid: 17882 components: - type: Transform - rot: 3.141592653589793 rad pos: 12.5,46.5 parent: 2 - uid: 17883 components: - type: Transform - rot: 3.141592653589793 rad pos: 13.5,49.5 parent: 2 - uid: 17884 components: - type: Transform - rot: 3.141592653589793 rad pos: 14.5,49.5 parent: 2 - uid: 17885 components: - type: Transform - rot: 3.141592653589793 rad pos: 15.5,49.5 parent: 2 - uid: 17886 components: - type: Transform - rot: 3.141592653589793 rad pos: 16.5,49.5 parent: 2 - uid: 17887 components: - type: Transform - rot: 3.141592653589793 rad pos: 17.5,48.5 parent: 2 - uid: 17888 components: - type: Transform - rot: 3.141592653589793 rad pos: 17.5,47.5 parent: 2 - uid: 17889 components: - type: Transform - rot: 3.141592653589793 rad pos: 17.5,46.5 parent: 2 - uid: 18024 components: - type: Transform - rot: 1.5707963267948966 rad pos: 10.5,51.5 parent: 2 - uid: 18025 components: - type: Transform - rot: 1.5707963267948966 rad pos: 12.5,51.5 parent: 2 - uid: 18026 components: - type: Transform - rot: 1.5707963267948966 rad pos: 13.5,51.5 parent: 2 - uid: 18027 components: - type: Transform - rot: 1.5707963267948966 rad pos: 14.5,51.5 parent: 2 - uid: 18028 components: - type: Transform - rot: 1.5707963267948966 rad pos: 15.5,51.5 parent: 2 - uid: 18029 components: - type: Transform - rot: 1.5707963267948966 rad pos: 16.5,51.5 parent: 2 - uid: 18030 components: - type: Transform - rot: 1.5707963267948966 rad pos: 17.5,51.5 parent: 2 - uid: 18031 components: - type: Transform - rot: 1.5707963267948966 rad pos: 18.5,51.5 parent: 2 - uid: 18032 components: - type: Transform - rot: 1.5707963267948966 rad pos: 19.5,51.5 parent: 2 - uid: 18033 components: - type: Transform - rot: 1.5707963267948966 rad pos: 21.5,50.5 parent: 2 - uid: 18034 components: - type: Transform - rot: 1.5707963267948966 rad pos: 21.5,49.5 parent: 2 - uid: 18035 components: - type: Transform - rot: 1.5707963267948966 rad pos: 21.5,48.5 parent: 2 - uid: 18036 components: - type: Transform - rot: 1.5707963267948966 rad pos: 21.5,47.5 parent: 2 - uid: 18037 components: - type: Transform - rot: 1.5707963267948966 rad pos: 21.5,45.5 parent: 2 - uid: 18231 @@ -83925,61 +84394,51 @@ entities: - uid: 18359 components: - type: Transform - rot: 1.5707963267948966 rad pos: -10.5,20.5 parent: 2 - uid: 18394 components: - type: Transform - rot: 3.141592653589793 rad pos: -52.5,-26.5 parent: 2 - uid: 18395 components: - type: Transform - rot: 3.141592653589793 rad pos: -52.5,-25.5 parent: 2 - uid: 18396 components: - type: Transform - rot: 3.141592653589793 rad pos: -51.5,-25.5 parent: 2 - uid: 18397 components: - type: Transform - rot: 3.141592653589793 rad pos: -51.5,-24.5 parent: 2 - uid: 18398 components: - type: Transform - rot: 3.141592653589793 rad pos: -50.5,-24.5 parent: 2 - uid: 18619 components: - type: Transform - rot: 3.141592653589793 rad pos: -34.5,-49.5 parent: 2 - uid: 18620 components: - type: Transform - rot: 3.141592653589793 rad pos: -33.5,-49.5 parent: 2 - uid: 18621 components: - type: Transform - rot: 3.141592653589793 rad pos: -30.5,-49.5 parent: 2 - uid: 18622 components: - type: Transform - rot: 3.141592653589793 rad pos: -29.5,-49.5 parent: 2 - uid: 18700 @@ -83990,7 +84449,6 @@ entities: - uid: 18719 components: - type: Transform - rot: -1.5707963267948966 rad pos: -33.5,-52.5 parent: 2 - uid: 18730 @@ -84091,13 +84549,11 @@ entities: - uid: 18979 components: - type: Transform - rot: -1.5707963267948966 rad pos: -50.5,-38.5 parent: 2 - uid: 18981 components: - type: Transform - rot: -1.5707963267948966 rad pos: -50.5,-42.5 parent: 2 - uid: 19171 @@ -84138,19 +84594,16 @@ entities: - uid: 19337 components: - type: Transform - rot: -1.5707963267948966 rad pos: 10.5,-54.5 parent: 2 - uid: 19338 components: - type: Transform - rot: -1.5707963267948966 rad pos: 11.5,-54.5 parent: 2 - uid: 19339 components: - type: Transform - rot: -1.5707963267948966 rad pos: 12.5,-54.5 parent: 2 - uid: 19351 @@ -84166,9 +84619,28 @@ entities: - uid: 19440 components: - type: Transform - rot: -1.5707963267948966 rad pos: -54.5,3.5 parent: 2 + - uid: 19590 + components: + - type: Transform + pos: -58.5,9.5 + parent: 2 + - uid: 19591 + components: + - type: Transform + pos: -58.5,8.5 + parent: 2 + - uid: 19592 + components: + - type: Transform + pos: -58.5,7.5 + parent: 2 + - uid: 19593 + components: + - type: Transform + pos: -58.5,6.5 + parent: 2 - proto: GrilleBroken entities: - uid: 3234 @@ -84223,11 +84695,6 @@ entities: - type: Transform pos: -53.5,-22.5 parent: 2 - - uid: 11524 - components: - - type: Transform - pos: -60.5,6.5 - parent: 2 - uid: 11530 components: - type: Transform @@ -84238,11 +84705,6 @@ entities: - type: Transform pos: -65.5,-11.5 parent: 2 - - uid: 11532 - components: - - type: Transform - pos: -58.5,6.5 - parent: 2 - uid: 11533 components: - type: Transform @@ -84766,18 +85228,21 @@ entities: - type: Transform pos: -1.5,-53.5 parent: 2 + - uid: 19609 + components: + - type: Transform + pos: -64.5,31.5 + parent: 2 - proto: GrilleDiagonal entities: - uid: 4608 components: - type: Transform - rot: 1.5707963267948966 rad pos: -55.5,3.5 parent: 2 - uid: 10739 components: - type: Transform - rot: -1.5707963267948966 rad pos: -54.5,4.5 parent: 2 - proto: GrilleSpawner @@ -85362,40 +85827,19 @@ entities: - type: Transform pos: -64.5,-22.5 parent: 2 -- proto: GunSafe +- proto: GunSafeDisabler entities: - - uid: 11626 + - uid: 3368 components: - type: Transform - pos: -43.5,-4.5 + pos: -43.5,-2.5 parent: 2 - proto: GunSafeLaserCarbine entities: - - uid: 11627 - components: - - type: Transform - pos: -43.5,-1.5 - parent: 2 -- proto: GunSafePistolMk58 - entities: - - uid: 11628 - components: - - type: Transform - pos: -44.5,-4.5 - parent: 2 -- proto: GunSafeSubMachineGunDrozd - entities: - - uid: 11630 + - uid: 19537 components: - type: Transform - pos: -43.5,-0.5 - parent: 2 -- proto: GunSafeVulcanRifle - entities: - - uid: 11474 - components: - - type: Transform - pos: -43.5,-2.5 + pos: -39.5,-0.5 parent: 2 - proto: HandheldGPSBasic entities: @@ -85456,10 +85900,12 @@ entities: parent: 2 - proto: HighSecArmoryLocked entities: - - uid: 11637 + - uid: 14643 components: + - type: MetaData + name: T2 Armory - type: Transform - pos: -41.5,-3.5 + pos: -41.5,-1.5 parent: 2 - proto: HighSecCommandLocked entities: @@ -85520,11 +85966,15 @@ entities: parent: 2 - uid: 15611 components: + - type: MetaData + name: Vault - type: Transform pos: -3.5,40.5 parent: 2 - uid: 15612 components: + - type: MetaData + name: Vault - type: Transform pos: -4.5,40.5 parent: 2 @@ -85542,31 +85992,23 @@ entities: - type: Transform pos: 26.690435,-21.281763 parent: 2 -- proto: HoloprojectorSecurity +- proto: HospitalCurtains entities: - - uid: 11653 + - uid: 4592 components: - type: Transform - pos: -26.45485,-11.639819 + pos: 22.5,3.5 parent: 2 -- proto: HospitalCurtains - entities: - - uid: 10592 + - uid: 4598 components: - type: Transform pos: 18.5,3.5 parent: 2 - - uid: 10814 + - uid: 6185 components: - type: Transform - rot: 1.5707963267948966 rad pos: 20.5,3.5 parent: 2 - - uid: 11899 - components: - - type: Transform - pos: 22.5,3.5 - parent: 2 - proto: HospitalCurtainsOpen entities: - uid: 644 @@ -85689,16 +86131,6 @@ entities: - type: Transform pos: -60.5,-9.5 parent: 2 - - uid: 11680 - components: - - type: Transform - pos: 35.5,-11.5 - parent: 2 - - uid: 11681 - components: - - type: Transform - pos: 35.5,-12.5 - parent: 2 - proto: HydroponicsToolClippers entities: - uid: 11682 @@ -85708,12 +86140,6 @@ entities: parent: 2 - proto: HydroponicsToolMiniHoe entities: - - uid: 11683 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 32.378174,-12.47862 - parent: 2 - uid: 11684 components: - type: Transform @@ -85721,12 +86147,6 @@ entities: parent: 2 - proto: HydroponicsToolSpade entities: - - uid: 11685 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 32.63213,-12.732526 - parent: 2 - uid: 11686 components: - type: Transform @@ -85734,6 +86154,11 @@ entities: parent: 2 - proto: hydroponicsTray entities: + - uid: 764 + components: + - type: Transform + pos: -17.5,4.5 + parent: 2 - uid: 11687 components: - type: Transform @@ -85774,6 +86199,11 @@ entities: - type: Transform pos: -21.5,4.5 parent: 2 + - uid: 18628 + components: + - type: Transform + pos: -17.5,3.5 + parent: 2 - proto: HydroponicsTrayMachineCircuitboard entities: - uid: 14065 @@ -85795,9 +86225,6 @@ entities: - type: Transform pos: -7.4670944,-48.448364 parent: 2 - - type: DeviceLinkSink - links: - - 13453 - proto: InflatableDoor entities: - uid: 18057 @@ -85872,6 +86299,11 @@ entities: rot: -1.5707963267948966 rad pos: -6.5,34.5 parent: 2 + - uid: 19515 + components: + - type: Transform + pos: -8.5,-75.5 + parent: 2 - proto: IntercomCommand entities: - uid: 11701 @@ -85882,51 +86314,11 @@ entities: parent: 2 - proto: IntercomCommon entities: - - uid: 11702 - components: - - type: Transform - pos: -8.5,-75.5 - parent: 2 - uid: 11704 components: - type: Transform pos: 37.5,-14.5 parent: 2 - - uid: 11705 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,-80.5 - parent: 2 - - uid: 11706 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,-81.5 - parent: 2 - - uid: 11707 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,-80.5 - parent: 2 - - uid: 11708 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,-72.5 - parent: 2 - - uid: 11709 - components: - - type: Transform - pos: -6.5,-71.5 - parent: 2 - - uid: 11710 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,-72.5 - parent: 2 - uid: 11711 components: - type: Transform @@ -86002,11 +86394,6 @@ entities: - type: Transform pos: -52.5,-10.5 parent: 2 - - uid: 11725 - components: - - type: Transform - pos: -34.5,-10.5 - parent: 2 - uid: 11726 components: - type: Transform @@ -86106,15 +86493,15 @@ entities: parent: 2 - proto: JetpackSecurityFilled entities: - - uid: 11992 + - uid: 1197 components: - type: Transform - pos: -39.653145,1.2809334 + pos: -43.419277,-0.39933407 parent: 2 - - uid: 19216 + - uid: 5062 components: - type: Transform - pos: -39.40853,1.109705 + pos: -43.602734,-0.20364451 parent: 2 - proto: Jug entities: @@ -86189,11 +86576,6 @@ entities: - type: Transform pos: -10.5,12.5 parent: 2 - - uid: 11747 - components: - - type: Transform - pos: -20.5,-16.5 - parent: 2 - uid: 11748 components: - type: Transform @@ -86298,16 +86680,6 @@ entities: rot: -1.5707963267948966 rad pos: -52.510986,28.12776 parent: 2 - - uid: 11761 - components: - - type: Transform - pos: -29.751759,-5.001006 - parent: 2 - - uid: 11763 - components: - - type: Transform - pos: -35.505363,-5.032391 - parent: 2 - proto: LampGold entities: - uid: 3 @@ -86366,6 +86738,13 @@ entities: rot: 1.5707963267948966 rad pos: -28.59305,48.954624 parent: 2 +- proto: LampInterrogator + entities: + - uid: 14663 + components: + - type: Transform + pos: -27.450718,-5.0504284 + parent: 2 - proto: LandMineExplosive entities: - uid: 11770 @@ -86417,6 +86796,27 @@ entities: - type: Transform pos: -6.7160864,-10.619381 parent: 2 +- proto: LockableButtonResearch + entities: + - uid: 19601 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -58.5,30.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 19564: + - Pressed: Toggle + - uid: 19608 + components: + - type: Transform + pos: -58.5,38.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 19547: + - Pressed: Toggle - proto: LockerAtmosphericsFilled entities: - uid: 11778 @@ -86538,10 +86938,10 @@ entities: ent: null - proto: LockerDetectiveFilled entities: - - uid: 363 + - uid: 1193 components: - type: Transform - pos: -47.5,-18.5 + pos: -31.5,-4.5 parent: 2 - proto: LockerElectricalSuppliesFilled entities: @@ -86579,25 +86979,25 @@ entities: parent: 2 - proto: LockerEvidence entities: - - uid: 11796 + - uid: 1363 components: - type: Transform - pos: -40.762257,-11.504958 + pos: -33.5,-12.5 parent: 2 - - uid: 11797 + - uid: 3397 components: - type: Transform - pos: -34.272675,-15.476467 + pos: -32.5,-12.5 parent: 2 - - uid: 11798 + - uid: 4236 components: - type: Transform - pos: -38.251842,-15.48689 + pos: -31.5,-12.5 parent: 2 - - uid: 11799 + - uid: 7292 components: - type: Transform - pos: -40.751842,-13.516771 + pos: -42.5,1.5 parent: 2 - proto: LockerForensicMantisFilled entities: @@ -86629,12 +87029,12 @@ entities: - type: Transform pos: 17.5,-6.5 parent: 2 -- proto: LockerHeadOfSecurityFilled +- proto: LockerHeadOfSecurityFilledHardsuit entities: - - uid: 11803 + - uid: 1064 components: - type: Transform - pos: -32.5,-15.5 + pos: -43.5,-13.5 parent: 2 - proto: LockerMedical entities: @@ -86677,19 +87077,37 @@ entities: parent: 2 - proto: LockerMime entities: - - uid: 13011 + - uid: 13414 components: - type: Transform - pos: -50.5,7.5 + pos: -52.5,7.5 parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 - type: ContainerContainer containers: entity_storage: !type:Container showEnts: False occludes: True ents: - - 13015 - - 13018 + - 13598 + - 13631 paper_label: !type:ContainerSlot showEnts: False occludes: True @@ -86766,32 +87184,37 @@ entities: parent: 2 - proto: LockerSecurityFilled entities: - - uid: 11821 + - uid: 747 components: - type: Transform - pos: -23.5,-16.5 + pos: -20.5,-14.5 parent: 2 - - uid: 11822 + - uid: 1191 components: - type: Transform - pos: -23.5,-15.5 + pos: -20.5,-13.5 parent: 2 - - uid: 11823 + - uid: 3395 components: - type: Transform - pos: -23.5,-13.5 + pos: -20.5,-15.5 parent: 2 - - uid: 11824 + - uid: 3396 components: - type: Transform - pos: -23.5,-14.5 + pos: -20.5,-16.5 + parent: 2 + - uid: 4276 + components: + - type: Transform + pos: -22.5,-11.5 parent: 2 -- proto: LockerWardenFilledHardsuit +- proto: LockerWardenFilled entities: - - uid: 11825 + - uid: 7462 components: - type: Transform - pos: -38.5,-4.5 + pos: -36.5,-4.5 parent: 2 - proto: LockerWeldingSuppliesFilled entities: @@ -86807,6 +87230,13 @@ entities: - type: Transform pos: 22.455084,26.620789 parent: 2 +- proto: LunchboxSecurityFilledRandom + entities: + - uid: 14949 + components: + - type: Transform + pos: -23.464466,-9.383641 + parent: 2 - proto: MachineAnomalyGenerator entities: - uid: 11827 @@ -86836,17 +87266,11 @@ entities: - type: Transform pos: -61.5,36.5 parent: 2 - - type: DeviceLinkSink - links: - - 13198 - uid: 7983 components: - type: Transform pos: -61.5,32.5 parent: 2 - - type: DeviceLinkSink - links: - - 640 - proto: MachineCentrifuge entities: - uid: 13963 @@ -86871,13 +87295,6 @@ entities: - type: Transform pos: 25.5,25.5 parent: 2 -- proto: MagazineBoxPistolRubber - entities: - - uid: 11832 - components: - - type: Transform - pos: -40.250866,-4.7284784 - parent: 2 - proto: MailTeleporter entities: - uid: 11833 @@ -87107,7 +87524,9 @@ entities: pos: 5.5,3.5 parent: 2 - type: RandomSpawner - chance: 1 + prototypes: [] + rarePrototypes: [] + gameRules: [] - uid: 11866 components: - type: Transform @@ -87202,6 +87621,9 @@ entities: parent: 2 - type: RandomSpawner chance: 0.33 + prototypes: [] + rarePrototypes: [] + gameRules: [] - uid: 11875 components: - type: Transform @@ -87209,6 +87631,9 @@ entities: parent: 2 - type: RandomSpawner chance: 0.33 + prototypes: [] + rarePrototypes: [] + gameRules: [] - uid: 11876 components: - type: Transform @@ -87269,31 +87694,36 @@ entities: rot: -1.5707963267948966 rad pos: -0.2504303,-7.866131 parent: 2 -- proto: MaterialCloth +- proto: MaterialCardboard1 entities: - - uid: 11882 + - uid: 19216 components: - type: Transform - pos: -3.5870895,35.598076 + pos: 11.32156,-12.471246 parent: 2 -- proto: MaterialDurathread - entities: - - uid: 11883 + - uid: 19482 components: - type: Transform - pos: -3.2246723,35.358982 + pos: 11.046371,-12.636358 parent: 2 -- proto: MaterialReclaimer + - uid: 19495 + components: + - type: Transform + pos: 11.339906,-12.911547 + parent: 2 +- proto: MaterialCloth entities: - - uid: 11884 + - uid: 11882 components: - type: Transform - pos: 12.5,-19.5 + pos: -3.5870895,35.598076 parent: 2 - - uid: 11885 +- proto: MaterialDurathread + entities: + - uid: 11883 components: - type: Transform - pos: 1.5,9.5 + pos: -3.2246723,35.358982 parent: 2 - proto: Mattress entities: @@ -87388,11 +87818,6 @@ entities: parent: 2 - proto: MedkitAdvancedFilled entities: - - uid: 11907 - components: - - type: Transform - pos: -39.61396,1.6954846 - parent: 2 - uid: 11908 components: - type: Transform @@ -87407,15 +87832,10 @@ entities: parent: 2 - proto: MedkitCombatFilled entities: - - uid: 11914 - components: - - type: Transform - pos: 8.371661,19.445524 - parent: 2 - - uid: 19215 + - uid: 16514 components: - type: Transform - pos: -39.322918,1.7212348 + pos: 9.72066,20.970526 parent: 2 - proto: MedkitFilled entities: @@ -87434,16 +87854,6 @@ entities: - type: Transform pos: 12.389832,7.676951 parent: 2 - - uid: 11921 - components: - - type: Transform - pos: -36.566994,-12.461372 - parent: 2 - - uid: 11922 - components: - - type: Transform - pos: -20.280146,-14.31227 - parent: 2 - uid: 13843 components: - type: Transform @@ -87498,6 +87908,16 @@ entities: - type: Transform pos: -30.55861,0.58655334 parent: 2 +- proto: Memorial + entities: + - uid: 19540 + components: + - type: MetaData + desc: To those the Delta Sector lost, and to those who remain. + name: A Song Of Delta + - type: Transform + pos: -52.5,10.5 + parent: 2 - proto: MercuryChemistryBottle entities: - uid: 7624 @@ -87505,6 +87925,13 @@ entities: - type: Transform pos: 17.038513,10.68933 parent: 2 +- proto: MicrowaveMachineCircuitboard + entities: + - uid: 19610 + components: + - type: Transform + pos: -40.4467,37.61143 + parent: 2 - proto: MinimoogInstrument entities: - uid: 11930 @@ -87605,11 +88032,6 @@ entities: - type: Transform pos: 4.79707,-10.595353 parent: 2 - - uid: 19482 - components: - - type: Transform - pos: -54.12085,42.679523 - parent: 2 - proto: NitrogenCanister entities: - uid: 8429 @@ -87622,12 +88044,43 @@ entities: - type: Transform pos: -0.5,-35.5 parent: 2 + - uid: 19538 + components: + - type: Transform + anchored: True + pos: 35.5,-12.5 + parent: 2 + - type: Physics + bodyType: Static + - uid: 19539 + components: + - type: Transform + anchored: True + pos: 35.5,-11.5 + parent: 2 + - type: Physics + bodyType: Static + - uid: 19571 + components: + - type: Transform + pos: 4.5,-35.5 + parent: 2 + - uid: 19572 + components: + - type: Transform + pos: 5.5,-35.5 + parent: 2 + - uid: 19577 + components: + - type: Transform + pos: -45.5,-6.5 + parent: 2 - proto: NitrousOxideCanister entities: - - uid: 11951 + - uid: 1372 components: - type: Transform - pos: -40.5,-6.5 + pos: -40.5,1.5 parent: 2 - proto: NoticeBoard entities: @@ -87636,6 +88089,34 @@ entities: - type: Transform pos: 1.5,5.5 parent: 2 + - uid: 19497 + components: + - type: Transform + pos: -30.5,-8.5 + parent: 2 + - uid: 19498 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,7.5 + parent: 2 + - uid: 19499 + components: + - type: Transform + pos: 32.5,2.5 + parent: 2 + - uid: 19500 + components: + - type: Transform + pos: -51.5,23.5 + parent: 2 +- proto: NTDefaultCircuitBoard + entities: + - uid: 19643 + components: + - type: Transform + pos: -17.345583,-83.5781 + parent: 2 - proto: NuclearBomb entities: - uid: 12234 @@ -87744,11 +88225,21 @@ entities: parent: 2 - proto: PaintingBlunt entities: + - uid: 16091 + components: + - type: Transform + pos: -45.5,-11.5 + parent: 2 - uid: 17667 components: - type: Transform pos: -39.5,10.5 parent: 2 + - uid: 19652 + components: + - type: Transform + pos: -1.5,41.5 + parent: 2 - proto: PaintingCafeTerraceAtNight entities: - uid: 17666 @@ -87772,6 +88263,14 @@ entities: rot: -1.5707963267948966 rad pos: -30.5,37.5 parent: 2 +- proto: PaintingRedBlueYellow + entities: + - uid: 14851 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -43.5,2.5 + parent: 2 - proto: PaintingSadClown entities: - uid: 11775 @@ -87801,6 +88300,24 @@ entities: rot: -1.5707963267948966 rad pos: -52.417236,27.31526 parent: 2 + - uid: 1205 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -32.513176,-7.4792385 + parent: 2 + - uid: 1206 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -32.35418,-7.3324714 + parent: 2 + - uid: 1221 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -32.623253,-7.3324714 + parent: 2 - uid: 5425 components: - type: Transform @@ -87897,7 +88414,7 @@ entities: Edge Station was made possible with the help of Scientist, Redsky, ps3moira, and contributors in the #mapping channel in the Delta V discord. - Edge station was handed to DLondon in June of 2024 + Edge station was handed to Fox in June of 2024 She continued the work of Colin and the other maintainers @@ -87906,7 +88423,7 @@ entities: Thank you for playing on Edge! - Colin_Tel - - DLondon + - Fox - uid: 19240 components: - type: Transform @@ -87932,11 +88449,6 @@ entities: - type: Transform pos: -8.5,-15.5 parent: 2 - - uid: 11975 - components: - - type: Transform - pos: -21.5,-9.5 - parent: 2 - uid: 11976 components: - type: Transform @@ -88110,18 +88622,6 @@ entities: rot: -1.5707963267948966 rad pos: -49.452785,0.35455203 parent: 2 - - uid: 13552 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -47.409046,-13.575394 - parent: 2 - - uid: 13553 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -47.54967,-13.450394 - parent: 2 - uid: 17544 components: - type: Transform @@ -88258,7 +88758,7 @@ entities: - uid: 19483 components: - type: Transform - pos: -54.5271,42.648273 + pos: 9.482673,20.626509 parent: 2 - type: Paper stampState: paper_stamp-centcom @@ -88266,24 +88766,15 @@ entities: - stampedColor: '#006600FF' stampedName: stamp-component-stamped-name-centcom content: >- - You should link these doors to auto-bolt one when the other opens. + Hey remember the new SOP we updated a while back? - We would do it ourselves... but... uh... - - Anyway hope you enjoy the new lab! + It gives some level of patient privacy in medical care, so make good use of the curtains we provided. Those were NOT cheap. - Supervisor Milton - Central Command -- proto: ParchisBoard - entities: - - uid: 12005 - components: - - type: Transform - pos: -36.470303,-13.543975 - parent: 2 - proto: ParticleAcceleratorControlBoxUnfinished entities: - uid: 11638 @@ -88768,13 +89259,13 @@ entities: parent: 2 - proto: PlasmaReinforcedWindowDirectional entities: - - uid: 12075 + - uid: 1227 components: - type: Transform rot: -1.5707963267948966 rad pos: -40.5,1.5 parent: 2 - - uid: 12076 + - uid: 8973 components: - type: Transform rot: 1.5707963267948966 rad @@ -88787,6 +89278,20 @@ entities: - type: Transform pos: -18.588102,-40.51464 parent: 2 +- proto: PlasmaWindoorSecureArmoryLocked + entities: + - uid: 6144 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -41.5,-7.5 + parent: 2 + - uid: 8934 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -42.5,-7.5 + parent: 2 - proto: PlasmaWindoorSecureCommandLocked entities: - uid: 17871 @@ -88880,6 +89385,11 @@ entities: parent: 2 - proto: PlushieSharkBlue entities: + - uid: 13015 + components: + - type: Transform + pos: -14.709855,63.854874 + parent: 2 - uid: 14004 components: - type: Transform @@ -88892,27 +89402,19 @@ entities: - type: Transform pos: -30.526485,-39.54669 parent: 2 -- proto: PortableFlasher +- proto: PlushieVox entities: - - uid: 12091 - components: - - type: Transform - pos: -40.5,1.5 - parent: 2 - - uid: 12092 - components: - - type: Transform - pos: -42.5,1.5 - parent: 2 - - uid: 12093 + - uid: 17076 components: - type: Transform - pos: -42.5,-4.5 + pos: 29.470596,-2.531005 parent: 2 - - uid: 12094 +- proto: PortableFlasher + entities: + - uid: 8955 components: - type: Transform - pos: -21.5,-16.5 + pos: -42.5,-2.5 parent: 2 - proto: PortableGeneratorJrPacman entities: @@ -89095,10 +89597,10 @@ entities: parent: 2 - proto: PosterLegit12Gauge entities: - - uid: 12123 + - uid: 751 components: - type: Transform - pos: -44.5,-3.5 + pos: -27.5,-12.5 parent: 2 - proto: PosterLegitBlessThisSpess entities: @@ -89165,6 +89667,13 @@ entities: - type: Transform pos: 16.5,8.5 parent: 2 +- proto: PosterLegitIonRifle + entities: + - uid: 19657 + components: + - type: Transform + pos: -36.5,-3.5 + parent: 2 - proto: PosterLegitJustAWeekAway entities: - uid: 12132 @@ -89348,11 +89857,6 @@ entities: rot: 3.141592653589793 rad pos: -20.5,-72.5 parent: 2 - - uid: 12163 - components: - - type: Transform - pos: -43.5,-3.5 - parent: 2 - proto: PottedPlant1 entities: - uid: 12164 @@ -89360,6 +89864,13 @@ entities: - type: Transform pos: -3.6492977,-32.762848 parent: 2 +- proto: PottedPlant22 + entities: + - uid: 14254 + components: + - type: Transform + pos: -41.5,-13.5 + parent: 2 - proto: PottedPlant26 entities: - uid: 12167 @@ -89381,6 +89892,14 @@ entities: - type: Transform pos: 8.300806,20.221859 parent: 2 + - uid: 16841 + components: + - type: MetaData + desc: They treat this thing better than they treat the prisoners + name: Warden's Potted Plant + - type: Transform + pos: -38.5,-6.5 + parent: 2 - proto: PottedPlantBioluminscent entities: - uid: 12172 @@ -89397,16 +89916,6 @@ entities: - type: Appearance - proto: PottedPlantRandom entities: - - uid: 623 - components: - - type: Transform - pos: -45.5,-12.5 - parent: 2 - - uid: 652 - components: - - type: Transform - pos: -45.5,-16.5 - parent: 2 - uid: 6023 components: - type: Transform @@ -89417,31 +89926,11 @@ entities: - type: Transform pos: -33.5,3.5 parent: 2 - - uid: 12161 - components: - - type: Transform - pos: -47.5,-16.5 - parent: 2 - - uid: 12169 - components: - - type: Transform - pos: -45.5,-15.5 - parent: 2 - - uid: 12174 - components: - - type: Transform - pos: -7.5,3.5 - parent: 2 - uid: 12175 components: - type: Transform pos: -39.5,7.5 parent: 2 - - uid: 12176 - components: - - type: Transform - pos: -15.5,7.5 - parent: 2 - uid: 12177 components: - type: Transform @@ -89624,11 +90113,6 @@ entities: - type: Transform pos: 14.5,-32.5 parent: 2 - - uid: 12206 - components: - - type: Transform - pos: -32.5,-10.5 - parent: 2 - uid: 12208 components: - type: Transform @@ -89662,12 +90146,6 @@ entities: parent: 2 - proto: Poweredlight entities: - - uid: 179 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -51.5,16.5 - parent: 2 - uid: 456 components: - type: Transform @@ -89713,17 +90191,27 @@ entities: rot: 3.141592653589793 rad pos: 0.5,18.5 parent: 2 - - uid: 5983 + - uid: 6018 components: - type: Transform rot: 1.5707963267948966 rad - pos: -53.5,13.5 + pos: 32.5,9.5 parent: 2 - - uid: 6018 + - uid: 6740 + components: + - type: Transform + pos: -31.5,-9.5 + parent: 2 + - uid: 7390 + components: + - type: Transform + pos: -40.5,-9.5 + parent: 2 + - uid: 7572 components: - type: Transform rot: 1.5707963267948966 rad - pos: 32.5,9.5 + pos: -47.5,-17.5 parent: 2 - uid: 7579 components: @@ -89737,12 +90225,34 @@ entities: rot: 3.141592653589793 rad pos: -17.5,-64.5 parent: 2 + - uid: 8938 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,-16.5 + parent: 2 + - uid: 8939 + components: + - type: Transform + pos: -21.5,-11.5 + parent: 2 + - uid: 9715 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -55.5,17.5 + parent: 2 - uid: 9882 components: - type: Transform rot: 3.141592653589793 rad pos: -14.5,-61.5 parent: 2 + - uid: 10054 + components: + - type: Transform + pos: -25.5,-12.5 + parent: 2 - uid: 10328 components: - type: Transform @@ -89820,12 +90330,6 @@ entities: rot: -1.5707963267948966 rad pos: 15.5,-10.5 parent: 2 - - uid: 12222 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -49.5,9.5 - parent: 2 - uid: 12223 components: - type: Transform @@ -90176,28 +90680,6 @@ entities: - type: Transform pos: -41.5,1.5 parent: 2 - - uid: 12298 - components: - - type: Transform - pos: -36.5,-4.5 - parent: 2 - - uid: 12299 - components: - - type: Transform - pos: -33.5,-4.5 - parent: 2 - - uid: 12300 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -31.5,-10.5 - parent: 2 - - uid: 12301 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -23.5,-9.5 - parent: 2 - uid: 12302 components: - type: Transform @@ -90434,18 +90916,6 @@ entities: rot: 3.141592653589793 rad pos: -52.5,-9.5 parent: 2 - - uid: 12344 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -43.5,-12.5 - parent: 2 - - uid: 12345 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -43.5,-15.5 - parent: 2 - uid: 12346 components: - type: Transform @@ -90652,28 +91122,6 @@ entities: rot: -1.5707963267948966 rad pos: -27.5,3.5 parent: 2 - - uid: 12385 - components: - - type: Transform - pos: -31.5,-12.5 - parent: 2 - - uid: 12386 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -25.5,-13.5 - parent: 2 - - uid: 12387 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -23.5,-16.5 - parent: 2 - - uid: 12388 - components: - - type: Transform - pos: -21.5,-11.5 - parent: 2 - uid: 12389 components: - type: Transform @@ -90765,12 +91213,6 @@ entities: - type: Transform pos: -9.5,-73.5 parent: 2 - - uid: 12405 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,-76.5 - parent: 2 - uid: 12406 components: - type: Transform @@ -90917,11 +91359,6 @@ entities: rot: 3.141592653589793 rad pos: 20.5,23.5 parent: 2 - - uid: 12433 - components: - - type: Transform - pos: -40.5,-8.5 - parent: 2 - uid: 12434 components: - type: Transform @@ -90963,17 +91400,6 @@ entities: - type: Transform pos: -45.5,23.5 parent: 2 - - uid: 12442 - components: - - type: Transform - pos: -45.5,-12.5 - parent: 2 - - uid: 12443 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -45.5,-18.5 - parent: 2 - uid: 12444 components: - type: Transform @@ -91246,12 +91672,6 @@ entities: rot: 1.5707963267948966 rad pos: -18.5,-9.5 parent: 2 - - uid: 12493 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -36.5,-15.5 - parent: 2 - uid: 12494 components: - type: Transform @@ -91445,6 +91865,11 @@ entities: rot: 3.141592653589793 rad pos: -36.5,9.5 parent: 2 + - uid: 13720 + components: + - type: Transform + pos: -52.5,22.5 + parent: 2 - uid: 13846 components: - type: Transform @@ -91460,16 +91885,46 @@ entities: - type: Transform pos: 27.5,9.5 parent: 2 - - uid: 14741 + - uid: 14765 components: - type: Transform - pos: -51.5,18.5 + rot: 1.5707963267948966 rad + pos: -29.5,-13.5 parent: 2 - - uid: 15802 + - uid: 14847 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -53.5,21.5 + rot: -1.5707963267948966 rad + pos: -39.5,-3.5 + parent: 2 + - uid: 14876 + components: + - type: Transform + pos: -45.5,-12.5 + parent: 2 + - uid: 14895 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,-6.5 + parent: 2 + - uid: 14896 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -42.5,-17.5 + parent: 2 + - uid: 14922 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -36.5,-15.5 + parent: 2 + - uid: 14930 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,-9.5 parent: 2 - uid: 15856 components: @@ -91483,6 +91938,12 @@ entities: rot: 1.5707963267948966 rad pos: -43.5,-23.5 parent: 2 + - uid: 16424 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -41.5,-5.5 + parent: 2 - uid: 17473 components: - type: Transform @@ -91548,6 +92009,24 @@ entities: rot: 3.141592653589793 rad pos: -49.5,-29.5 parent: 2 + - uid: 19535 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -54.5,12.5 + parent: 2 + - uid: 19551 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-76.5 + parent: 2 + - uid: 19579 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -33.5,-6.5 + parent: 2 - proto: PoweredLightBlueInterior entities: - uid: 12529 @@ -91690,6 +92169,12 @@ entities: rot: -1.5707963267948966 rad pos: -56.5,47.5 parent: 2 + - uid: 13182 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -57.5,17.5 + parent: 2 - uid: 13766 components: - type: Transform @@ -91802,25 +92287,33 @@ entities: - type: Transform pos: -9.5,64.5 parent: 2 -- proto: PoweredlightSodium +- proto: PoweredlightRed entities: - - uid: 12578 + - uid: 14852 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -43.5,-0.5 + rot: -1.5707963267948966 rad + pos: -39.5,0.5 parent: 2 - - uid: 12579 + - uid: 14854 components: - type: Transform rot: 1.5707963267948966 rad - pos: -44.5,-5.5 + pos: -43.5,0.5 parent: 2 +- proto: PoweredlightSodium + entities: - uid: 12580 components: - type: Transform pos: 35.5,-11.5 parent: 2 + - uid: 19625 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -52.5,9.5 + parent: 2 - proto: PoweredSmallLight entities: - uid: 6222 @@ -91867,6 +92360,17 @@ entities: - type: Transform pos: 2.5,-53.5 parent: 2 + - uid: 12832 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -58.5,20.5 + parent: 2 + - uid: 12878 + components: + - type: Transform + pos: -58.5,14.5 + parent: 2 - uid: 19335 components: - type: Transform @@ -92203,12 +92707,6 @@ entities: rot: -1.5707963267948966 rad pos: -20.5,-18.5 parent: 2 - - uid: 12637 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -42.5,-19.5 - parent: 2 - uid: 12638 components: - type: Transform @@ -92374,6 +92872,11 @@ entities: rot: -1.5707963267948966 rad pos: -54.5,44.5 parent: 2 + - uid: 19627 + components: + - type: Transform + pos: -49.5,43.5 + parent: 2 - proto: Protolathe entities: - uid: 12661 @@ -92496,11 +92999,33 @@ entities: active: False - proto: Rack entities: + - uid: 658 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,-12.5 + parent: 2 + - uid: 1182 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,-12.5 + parent: 2 + - uid: 1200 + components: + - type: Transform + pos: -41.5,1.5 + parent: 2 - uid: 1659 components: - type: Transform pos: -34.5,19.5 parent: 2 + - uid: 4322 + components: + - type: Transform + pos: -40.5,-2.5 + parent: 2 - uid: 7032 components: - type: Transform @@ -92549,11 +93074,6 @@ entities: - type: Transform pos: -15.5,12.5 parent: 2 - - uid: 12671 - components: - - type: Transform - pos: -25.5,-14.5 - parent: 2 - uid: 12672 components: - type: Transform @@ -92580,23 +93100,11 @@ entities: - type: Transform pos: 12.5,-10.5 parent: 2 - - uid: 12677 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 32.5,-12.5 - parent: 2 - uid: 12678 components: - type: Transform pos: -13.5,11.5 parent: 2 - - uid: 12679 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -26.5,-11.5 - parent: 2 - uid: 12680 components: - type: Transform @@ -92669,21 +93177,11 @@ entities: rot: -1.5707963267948966 rad pos: -17.5,-83.5 parent: 2 - - uid: 12697 - components: - - type: Transform - pos: 8.5,19.5 - parent: 2 - uid: 12704 components: - type: Transform pos: 26.5,-21.5 parent: 2 - - uid: 12705 - components: - - type: Transform - pos: -44.5,-6.5 - parent: 2 - uid: 12707 components: - type: Transform @@ -92721,11 +93219,6 @@ entities: rot: -1.5707963267948966 rad pos: -20.5,-28.5 parent: 2 - - uid: 12714 - components: - - type: Transform - pos: -40.5,-4.5 - parent: 2 - uid: 12715 components: - type: Transform @@ -92751,11 +93244,6 @@ entities: - type: Transform pos: 43.5,13.5 parent: 2 - - uid: 12720 - components: - - type: Transform - pos: -26.5,-15.5 - parent: 2 - uid: 12721 components: - type: Transform @@ -92817,6 +93305,11 @@ entities: rot: 1.5707963267948966 rad pos: -6.5,-42.5 parent: 2 + - uid: 13007 + components: + - type: Transform + pos: 7.5,-4.5 + parent: 2 - uid: 13076 components: - type: Transform @@ -92894,6 +93387,11 @@ entities: - type: Transform pos: 2.551126,33.567097 parent: 2 + - uid: 14049 + components: + - type: Transform + pos: -51.58181,17.676949 + parent: 2 - proto: Railing entities: - uid: 211 @@ -92908,6 +93406,16 @@ entities: rot: 1.5707963267948966 rad pos: 48.5,2.5 parent: 2 + - uid: 4970 + components: + - type: Transform + pos: -14.5,6.5 + parent: 2 + - uid: 5039 + components: + - type: Transform + pos: -15.5,6.5 + parent: 2 - uid: 5763 components: - type: Transform @@ -93100,6 +93608,11 @@ entities: rot: -1.5707963267948966 rad pos: 54.5,2.5 parent: 2 + - uid: 12989 + components: + - type: Transform + pos: -13.5,6.5 + parent: 2 - uid: 13490 components: - type: Transform @@ -93138,8 +93651,41 @@ entities: - type: Transform pos: 51.5,5.5 parent: 2 + - uid: 19542 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -50.5,10.5 + parent: 2 + - uid: 19544 + components: + - type: Transform + pos: -51.5,11.5 + parent: 2 + - uid: 19545 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -50.5,9.5 + parent: 2 + - uid: 19546 + components: + - type: Transform + pos: -53.5,11.5 + parent: 2 + - uid: 19567 + components: + - type: Transform + pos: -52.5,11.5 + parent: 2 - proto: RailingCorner entities: + - uid: 4235 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,6.5 + parent: 2 - uid: 5702 components: - type: Transform @@ -93361,12 +93907,11 @@ entities: rot: 1.5707963267948966 rad pos: -47.5,-33.5 parent: 2 -- proto: RandomAnimalSpawner - entities: - - uid: 12816 + - uid: 19534 components: - type: Transform - pos: -18.5,6.5 + rot: 1.5707963267948966 rad + pos: -50.5,11.5 parent: 2 - proto: RandomArcade entities: @@ -93396,8 +93941,25 @@ entities: - type: Transform pos: 34.5,-7.5 parent: 2 +- proto: RandomFoodBakedSingle + entities: + - uid: 3393 + components: + - type: Transform + pos: -9.5,8.5 + parent: 2 - proto: RandomFoodMeal entities: + - uid: 1224 + components: + - type: Transform + pos: -8.5,8.5 + parent: 2 + - uid: 5738 + components: + - type: Transform + pos: -8.5,4.5 + parent: 2 - uid: 12823 components: - type: Transform @@ -93410,10 +93972,10 @@ entities: parent: 2 - proto: RandomFoodSingle entities: - - uid: 12825 + - uid: 6016 components: - type: Transform - pos: 34.5,-4.5 + pos: -9.5,3.5 parent: 2 - uid: 12826 components: @@ -93454,11 +94016,6 @@ entities: - type: Transform pos: 10.5,28.5 parent: 2 - - uid: 12165 - components: - - type: Transform - pos: -44.5,-13.5 - parent: 2 - uid: 12829 components: - type: Transform @@ -93474,11 +94031,6 @@ entities: - type: Transform pos: -43.5,29.5 parent: 2 - - uid: 12832 - components: - - type: Transform - pos: -30.5,-11.5 - parent: 2 - uid: 12833 components: - type: Transform @@ -93703,6 +94255,11 @@ entities: - type: Transform pos: 17.5,2.5 parent: 2 + - uid: 1241 + components: + - type: Transform + pos: -44.5,0.5 + parent: 2 - uid: 5657 components: - type: Transform @@ -93713,6 +94270,16 @@ entities: - type: Transform pos: 7.5,-30.5 parent: 2 + - uid: 7642 + components: + - type: Transform + pos: -16.5,7.5 + parent: 2 + - uid: 8130 + components: + - type: Transform + pos: -38.5,0.5 + parent: 2 - uid: 12861 components: - type: Transform @@ -93793,11 +94360,6 @@ entities: - type: Transform pos: 27.5,-13.5 parent: 2 - - uid: 12878 - components: - - type: Transform - pos: -44.5,0.5 - parent: 2 - uid: 12879 components: - type: Transform @@ -93864,11 +94426,6 @@ entities: - type: Transform pos: 20.5,-10.5 parent: 2 - - uid: 12894 - components: - - type: Transform - pos: 36.5,-6.5 - parent: 2 - uid: 12895 components: - type: Transform @@ -93979,16 +94536,6 @@ entities: - type: Transform pos: -4.5,-11.5 parent: 2 - - uid: 12919 - components: - - type: Transform - pos: -21.5,-10.5 - parent: 2 - - uid: 12920 - components: - - type: Transform - pos: -24.5,-14.5 - parent: 2 - uid: 12921 components: - type: Transform @@ -94009,6 +94556,11 @@ entities: - type: Transform pos: 9.5,12.5 parent: 2 + - uid: 13162 + components: + - type: Transform + pos: 36.5,-8.5 + parent: 2 - uid: 13405 components: - type: Transform @@ -94024,11 +94576,31 @@ entities: - type: Transform pos: -1.5,5.5 parent: 2 + - uid: 18771 + components: + - type: Transform + pos: -44.5,-14.5 + parent: 2 - uid: 19249 components: - type: Transform pos: 32.5,17.5 parent: 2 + - uid: 19503 + components: + - type: Transform + pos: -30.5,-13.5 + parent: 2 + - uid: 19504 + components: + - type: Transform + pos: -32.5,-8.5 + parent: 2 + - uid: 19505 + components: + - type: Transform + pos: -21.5,-10.5 + parent: 2 - proto: RandomSnacks entities: - uid: 12927 @@ -94131,16 +94703,6 @@ entities: - type: Transform pos: -22.5,-18.5 parent: 2 - - uid: 12950 - components: - - type: Transform - pos: -43.5,-15.5 - parent: 2 - - uid: 12952 - components: - - type: Transform - pos: -49.5,18.5 - parent: 2 - uid: 12954 components: - type: Transform @@ -94171,16 +94733,6 @@ entities: - type: Transform pos: 33.5,-5.5 parent: 2 - - uid: 12964 - components: - - type: Transform - pos: -39.5,-12.5 - parent: 2 - - uid: 12965 - components: - - type: Transform - pos: -35.5,-14.5 - parent: 2 - uid: 12966 components: - type: Transform @@ -94352,11 +94904,6 @@ entities: parent: 2 - proto: RandomVendingDrinks entities: - - uid: 12989 - components: - - type: Transform - pos: -12.5,7.5 - parent: 2 - uid: 12990 components: - type: Transform @@ -94442,24 +94989,18 @@ entities: parent: 2 - proto: Recycler entities: - - uid: 13007 + - uid: 13018 components: - type: Transform - rot: 1.5707963267948966 rad + rot: -1.5707963267948966 rad pos: -49.5,3.5 parent: 2 - - type: DeviceLinkSink - links: - - 14705 - - uid: 13008 + - uid: 13125 components: - type: Transform - rot: 1.5707963267948966 rad + rot: -1.5707963267948966 rad pos: 18.5,-22.5 parent: 2 - - type: DeviceLinkSink - links: - - 14706 - proto: ReinforcedGirder entities: - uid: 732 @@ -95074,16 +95615,39 @@ entities: parent: 2 - proto: ReinforcedPlasmaWindow entities: + - uid: 4316 + components: + - type: Transform + pos: -43.5,-1.5 + parent: 2 + - uid: 4317 + components: + - type: Transform + pos: -42.5,-1.5 + parent: 2 + - uid: 4319 + components: + - type: Transform + pos: -40.5,2.5 + parent: 2 + - uid: 4320 + components: + - type: Transform + pos: -40.5,-1.5 + parent: 2 + - uid: 4323 + components: + - type: Transform + pos: -39.5,-1.5 + parent: 2 - uid: 7690 components: - type: Transform - rot: 3.141592653589793 rad pos: -50.5,40.5 parent: 2 - uid: 8118 components: - type: Transform - rot: 3.141592653589793 rad pos: -50.5,39.5 parent: 2 - uid: 10789 @@ -95099,13 +95663,11 @@ entities: - uid: 11181 components: - type: Transform - rot: 1.5707963267948966 rad pos: -59.5,35.5 parent: 2 - uid: 11183 components: - type: Transform - rot: 1.5707963267948966 rad pos: -59.5,36.5 parent: 2 - uid: 11635 @@ -95141,7 +95703,6 @@ entities: - uid: 12925 components: - type: Transform - rot: -1.5707963267948966 rad pos: 4.5,-41.5 parent: 2 - uid: 13088 @@ -95162,35 +95723,21 @@ entities: - uid: 13122 components: - type: Transform - rot: 1.5707963267948966 rad pos: 4.5,-47.5 parent: 2 - uid: 13123 components: - type: Transform - rot: 1.5707963267948966 rad pos: 4.5,-43.5 parent: 2 - uid: 13124 components: - type: Transform - rot: 1.5707963267948966 rad pos: 4.5,-49.5 parent: 2 - - uid: 13125 - components: - - type: Transform - pos: -42.5,-3.5 - parent: 2 - - uid: 13126 - components: - - type: Transform - pos: -40.5,-3.5 - parent: 2 - uid: 13127 components: - type: Transform - rot: -1.5707963267948966 rad pos: -24.5,-40.5 parent: 2 - uid: 13128 @@ -95201,31 +95748,26 @@ entities: - uid: 13129 components: - type: Transform - rot: -1.5707963267948966 rad pos: -24.5,-39.5 parent: 2 - uid: 13130 components: - type: Transform - rot: -1.5707963267948966 rad pos: -24.5,-38.5 parent: 2 - uid: 13131 components: - type: Transform - rot: -1.5707963267948966 rad pos: -24.5,-36.5 parent: 2 - uid: 13132 components: - type: Transform - rot: -1.5707963267948966 rad pos: -24.5,-37.5 parent: 2 - uid: 13133 components: - type: Transform - rot: 3.141592653589793 rad pos: -29.5,-26.5 parent: 2 - uid: 13134 @@ -95236,31 +95778,26 @@ entities: - uid: 13136 components: - type: Transform - rot: -1.5707963267948966 rad pos: -37.5,-29.5 parent: 2 - uid: 13140 components: - type: Transform - rot: -1.5707963267948966 rad pos: -27.5,-47.5 parent: 2 - uid: 13141 components: - type: Transform - rot: -1.5707963267948966 rad pos: -31.5,-47.5 parent: 2 - uid: 13142 components: - type: Transform - rot: -1.5707963267948966 rad pos: -35.5,-47.5 parent: 2 - uid: 13143 components: - type: Transform - rot: -1.5707963267948966 rad pos: -37.5,-47.5 parent: 2 - uid: 13144 @@ -95286,43 +95823,36 @@ entities: - uid: 13148 components: - type: Transform - rot: -1.5707963267948966 rad pos: -36.5,-47.5 parent: 2 - uid: 13149 components: - type: Transform - rot: -1.5707963267948966 rad pos: -32.5,-47.5 parent: 2 - uid: 13150 components: - type: Transform - rot: -1.5707963267948966 rad pos: -28.5,-47.5 parent: 2 - uid: 13151 components: - type: Transform - rot: -1.5707963267948966 rad pos: -26.5,-47.5 parent: 2 - uid: 13155 components: - type: Transform - rot: -1.5707963267948966 rad pos: -36.5,-29.5 parent: 2 - uid: 13157 components: - type: Transform - rot: 3.141592653589793 rad pos: -14.5,-32.5 parent: 2 - uid: 13158 components: - type: Transform - rot: 3.141592653589793 rad pos: -14.5,-34.5 parent: 2 - uid: 13159 @@ -95335,11 +95865,6 @@ entities: - type: Transform pos: -41.5,2.5 parent: 2 - - uid: 13162 - components: - - type: Transform - pos: -40.5,2.5 - parent: 2 - uid: 13163 components: - type: Transform @@ -95353,19 +95878,16 @@ entities: - uid: 13168 components: - type: Transform - rot: 1.5707963267948966 rad pos: 4.5,-51.5 parent: 2 - uid: 13169 components: - type: Transform - rot: 1.5707963267948966 rad pos: 4.5,-45.5 parent: 2 - uid: 13242 components: - type: Transform - rot: 1.5707963267948966 rad pos: -59.5,32.5 parent: 2 - uid: 13373 @@ -95376,7 +95898,6 @@ entities: - uid: 13379 components: - type: Transform - rot: 1.5707963267948966 rad pos: -59.5,33.5 parent: 2 - uid: 13456 @@ -95397,7 +95918,6 @@ entities: - uid: 15685 components: - type: Transform - rot: 3.141592653589793 rad pos: -50.5,41.5 parent: 2 - uid: 15750 @@ -95433,33 +95953,38 @@ entities: - uid: 18623 components: - type: Transform - rot: 3.141592653589793 rad pos: -34.5,-49.5 parent: 2 - uid: 18624 components: - type: Transform - rot: 3.141592653589793 rad pos: -33.5,-49.5 parent: 2 - uid: 18625 components: - type: Transform - rot: 3.141592653589793 rad pos: -30.5,-49.5 parent: 2 - uid: 18626 components: - type: Transform - rot: 3.141592653589793 rad pos: -29.5,-49.5 parent: 2 - proto: ReinforcedWindow entities: + - uid: 89 + components: + - type: Transform + pos: -60.5,21.5 + parent: 2 + - uid: 623 + components: + - type: Transform + pos: -33.5,-15.5 + parent: 2 - uid: 744 components: - type: Transform - rot: 1.5707963267948966 rad pos: -54.5,38.5 parent: 2 - uid: 1148 @@ -95472,11 +95997,36 @@ entities: - type: Transform pos: -47.5,-1.5 parent: 2 + - uid: 1181 + components: + - type: Transform + pos: -27.5,-13.5 + parent: 2 + - uid: 1187 + components: + - type: Transform + pos: -47.5,-14.5 + parent: 2 + - uid: 1188 + components: + - type: Transform + pos: -45.5,-14.5 + parent: 2 + - uid: 1189 + components: + - type: Transform + pos: -46.5,-14.5 + parent: 2 - uid: 2134 components: - type: Transform pos: 2.5,20.5 parent: 2 + - uid: 4300 + components: + - type: Transform + pos: -40.5,-16.5 + parent: 2 - uid: 4611 components: - type: Transform @@ -95500,40 +96050,102 @@ entities: - uid: 5326 components: - type: Transform - rot: 1.5707963267948966 rad pos: 62.5,5.5 parent: 2 - uid: 5327 components: - type: Transform - rot: 1.5707963267948966 rad pos: 62.5,4.5 parent: 2 - uid: 5409 components: - type: Transform - rot: 1.5707963267948966 rad pos: 62.5,3.5 parent: 2 - - uid: 5593 + - uid: 5733 components: - type: Transform - pos: -54.5,13.5 + pos: -26.5,-9.5 parent: 2 - - uid: 5645 + - uid: 5983 + components: + - type: Transform + pos: -35.5,-16.5 + parent: 2 + - uid: 6279 components: - type: Transform - pos: -51.5,10.5 + pos: -36.5,-8.5 parent: 2 - - uid: 5647 + - uid: 6291 components: - type: Transform - pos: -51.5,21.5 + pos: -37.5,-8.5 parent: 2 - - uid: 6093 + - uid: 6331 + components: + - type: Transform + pos: 36.5,-3.5 + parent: 2 + - uid: 6587 components: - type: Transform - pos: -52.5,18.5 + pos: 31.5,-1.5 + parent: 2 + - uid: 6588 + components: + - type: Transform + pos: 27.5,-5.5 + parent: 2 + - uid: 6627 + components: + - type: Transform + pos: 30.5,-1.5 + parent: 2 + - uid: 6628 + components: + - type: Transform + pos: 32.5,-1.5 + parent: 2 + - uid: 6629 + components: + - type: Transform + pos: 33.5,-1.5 + parent: 2 + - uid: 6630 + components: + - type: Transform + pos: 34.5,-1.5 + parent: 2 + - uid: 6631 + components: + - type: Transform + pos: 36.5,-4.5 + parent: 2 + - uid: 6632 + components: + - type: Transform + pos: 36.5,-5.5 + parent: 2 + - uid: 7000 + components: + - type: Transform + pos: 27.5,-3.5 + parent: 2 + - uid: 7045 + components: + - type: Transform + pos: 27.5,-4.5 + parent: 2 + - uid: 7086 + components: + - type: Transform + pos: -38.5,-8.5 + parent: 2 + - uid: 7091 + components: + - type: Transform + pos: 29.5,-1.5 parent: 2 - uid: 7127 components: @@ -95575,54 +96187,44 @@ entities: - type: Transform pos: -56.5,41.5 parent: 2 + - uid: 9909 + components: + - type: Transform + pos: -27.5,-14.5 + parent: 2 - uid: 10176 components: - type: Transform pos: 6.5,-27.5 parent: 2 - - uid: 10706 + - uid: 10360 components: - type: Transform - pos: -16.5,-62.5 + pos: -60.5,13.5 parent: 2 - uid: 11155 components: - type: Transform - rot: 1.5707963267948966 rad pos: 52.5,-0.5 parent: 2 - uid: 11156 components: - type: Transform - rot: 1.5707963267948966 rad pos: 51.5,-0.5 parent: 2 - uid: 11157 components: - type: Transform - rot: 1.5707963267948966 rad pos: 50.5,-0.5 parent: 2 - - uid: 11203 - components: - - type: Transform - pos: -53.5,8.5 - parent: 2 - uid: 11316 components: - type: Transform - rot: -1.5707963267948966 rad pos: -43.5,27.5 parent: 2 - - uid: 11382 - components: - - type: Transform - pos: -51.5,13.5 - parent: 2 - uid: 11447 components: - type: Transform - rot: -1.5707963267948966 rad pos: -36.5,48.5 parent: 2 - uid: 11477 @@ -95643,7 +96245,6 @@ entities: - uid: 12012 components: - type: Transform - rot: -1.5707963267948966 rad pos: -43.5,28.5 parent: 2 - uid: 12106 @@ -95661,6 +96262,11 @@ entities: - type: Transform pos: 8.5,-27.5 parent: 2 + - uid: 12920 + components: + - type: Transform + pos: -56.5,13.5 + parent: 2 - uid: 12926 components: - type: Transform @@ -95671,6 +96277,11 @@ entities: - type: Transform pos: 2.5,18.5 parent: 2 + - uid: 12964 + components: + - type: Transform + pos: -56.5,21.5 + parent: 2 - uid: 12995 components: - type: Transform @@ -95684,67 +96295,56 @@ entities: - uid: 13170 components: - type: Transform - rot: 1.5707963267948966 rad pos: -0.5,-52.5 parent: 2 - uid: 13171 components: - type: Transform - rot: 1.5707963267948966 rad pos: -6.5,-46.5 parent: 2 - uid: 13172 components: - type: Transform - rot: 1.5707963267948966 rad pos: -1.5,-52.5 parent: 2 - uid: 13173 components: - type: Transform - rot: 1.5707963267948966 rad pos: 2.5,-41.5 parent: 2 - uid: 13174 components: - type: Transform - rot: 1.5707963267948966 rad pos: -5.5,-47.5 parent: 2 - uid: 13175 components: - type: Transform - rot: 1.5707963267948966 rad pos: -5.5,-49.5 parent: 2 - uid: 13176 components: - type: Transform - rot: 1.5707963267948966 rad pos: -5.5,-48.5 parent: 2 - uid: 13177 components: - type: Transform - rot: 1.5707963267948966 rad pos: -8.5,-46.5 parent: 2 - uid: 13178 components: - type: Transform - rot: 1.5707963267948966 rad pos: -4.5,-40.5 parent: 2 - uid: 13179 components: - type: Transform - rot: 1.5707963267948966 rad pos: 2.5,-47.5 parent: 2 - uid: 13180 components: - type: Transform - rot: 1.5707963267948966 rad pos: 2.5,-46.5 parent: 2 - uid: 13181 @@ -95752,26 +96352,11 @@ entities: - type: Transform pos: 29.5,-24.5 parent: 2 - - uid: 13182 - components: - - type: Transform - pos: -29.5,-13.5 - parent: 2 - - uid: 13183 - components: - - type: Transform - pos: -36.5,-7.5 - parent: 2 - uid: 13184 components: - type: Transform pos: -22.5,19.5 parent: 2 - - uid: 13185 - components: - - type: Transform - pos: -33.5,-13.5 - parent: 2 - uid: 13186 components: - type: Transform @@ -95822,55 +96407,29 @@ entities: - type: Transform pos: -9.5,-15.5 parent: 2 - - uid: 13200 - components: - - type: Transform - pos: -41.5,-14.5 - parent: 2 - - uid: 13201 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -33.5,-12.5 - parent: 2 - - uid: 13202 - components: - - type: Transform - pos: -34.5,-16.5 - parent: 2 - - uid: 13203 - components: - - type: Transform - pos: -40.5,-16.5 - parent: 2 - uid: 13204 components: - type: Transform - rot: -1.5707963267948966 rad pos: 23.5,33.5 parent: 2 - uid: 13205 components: - type: Transform - rot: -1.5707963267948966 rad pos: 21.5,33.5 parent: 2 - uid: 13206 components: - type: Transform - rot: -1.5707963267948966 rad pos: 19.5,32.5 parent: 2 - uid: 13207 components: - type: Transform - rot: -1.5707963267948966 rad pos: 19.5,33.5 parent: 2 - uid: 13208 components: - type: Transform - rot: -1.5707963267948966 rad pos: 22.5,33.5 parent: 2 - uid: 13209 @@ -95878,11 +96437,6 @@ entities: - type: Transform pos: -22.5,20.5 parent: 2 - - uid: 13210 - components: - - type: Transform - pos: -35.5,-7.5 - parent: 2 - uid: 13211 components: - type: Transform @@ -95903,11 +96457,6 @@ entities: - type: Transform pos: 4.5,-29.5 parent: 2 - - uid: 13216 - components: - - type: Transform - pos: -41.5,-11.5 - parent: 2 - uid: 13217 components: - type: Transform @@ -95946,7 +96495,6 @@ entities: - uid: 13226 components: - type: Transform - rot: 3.141592653589793 rad pos: -49.5,-18.5 parent: 2 - uid: 13227 @@ -95957,7 +96505,6 @@ entities: - uid: 13229 components: - type: Transform - rot: 1.5707963267948966 rad pos: 2.5,-50.5 parent: 2 - uid: 13230 @@ -95968,7 +96515,6 @@ entities: - uid: 13231 components: - type: Transform - rot: 1.5707963267948966 rad pos: -4.5,-37.5 parent: 2 - uid: 13232 @@ -95994,31 +96540,26 @@ entities: - uid: 13236 components: - type: Transform - rot: 3.141592653589793 rad pos: -52.5,-18.5 parent: 2 - uid: 13237 components: - type: Transform - rot: 3.141592653589793 rad pos: -55.5,-18.5 parent: 2 - uid: 13238 components: - type: Transform - rot: 3.141592653589793 rad pos: -58.5,-18.5 parent: 2 - uid: 13239 components: - type: Transform - rot: 3.141592653589793 rad pos: -58.5,3.5 parent: 2 - uid: 13240 components: - type: Transform - rot: 3.141592653589793 rad pos: -61.5,-1.5 parent: 2 - uid: 13241 @@ -96029,13 +96570,11 @@ entities: - uid: 13243 components: - type: Transform - rot: 1.5707963267948966 rad pos: 41.5,-6.5 parent: 2 - uid: 13244 components: - type: Transform - rot: 1.5707963267948966 rad pos: 41.5,-5.5 parent: 2 - uid: 13245 @@ -96046,73 +96585,61 @@ entities: - uid: 13246 components: - type: Transform - rot: 1.5707963267948966 rad pos: 41.5,-7.5 parent: 2 - uid: 13247 components: - type: Transform - rot: 1.5707963267948966 rad pos: 41.5,-14.5 parent: 2 - uid: 13248 components: - type: Transform - rot: 1.5707963267948966 rad pos: 41.5,-13.5 parent: 2 - uid: 13249 components: - type: Transform - rot: -1.5707963267948966 rad pos: -57.5,-6.5 parent: 2 - uid: 13250 components: - type: Transform - rot: -1.5707963267948966 rad pos: -57.5,-8.5 parent: 2 - uid: 13251 components: - type: Transform - rot: 3.141592653589793 rad pos: -60.5,-11.5 parent: 2 - uid: 13252 components: - type: Transform - rot: 3.141592653589793 rad pos: -61.5,-0.5 parent: 2 - uid: 13253 components: - type: Transform - rot: 1.5707963267948966 rad pos: 41.5,-15.5 parent: 2 - uid: 13254 components: - type: Transform - rot: 1.5707963267948966 rad pos: 43.5,-10.5 parent: 2 - uid: 13255 components: - type: Transform - rot: 1.5707963267948966 rad pos: 42.5,-10.5 parent: 2 - uid: 13258 components: - type: Transform - rot: 1.5707963267948966 rad pos: 43.5,-18.5 parent: 2 - uid: 13259 components: - type: Transform - rot: 1.5707963267948966 rad pos: 42.5,-18.5 parent: 2 - uid: 13260 @@ -96123,7 +96650,6 @@ entities: - uid: 13261 components: - type: Transform - rot: 1.5707963267948966 rad pos: 41.5,-21.5 parent: 2 - uid: 13262 @@ -96186,12 +96712,6 @@ entities: - type: Transform pos: -23.5,-77.5 parent: 2 - - uid: 13275 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,-76.5 - parent: 2 - uid: 13276 components: - type: Transform @@ -96275,7 +96795,6 @@ entities: - uid: 13301 components: - type: Transform - rot: -1.5707963267948966 rad pos: 23.5,32.5 parent: 2 - uid: 13306 @@ -96368,12 +96887,6 @@ entities: - type: Transform pos: -12.5,45.5 parent: 2 - - uid: 13327 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -52.5,17.5 - parent: 2 - uid: 13334 components: - type: Transform @@ -96439,12 +96952,6 @@ entities: - type: Transform pos: 40.5,29.5 parent: 2 - - uid: 13352 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -52.5,16.5 - parent: 2 - uid: 13364 components: - type: Transform @@ -96568,7 +97075,6 @@ entities: - uid: 13409 components: - type: Transform - rot: 3.141592653589793 rad pos: 20.5,-34.5 parent: 2 - uid: 13410 @@ -96599,7 +97105,6 @@ entities: - uid: 13416 components: - type: Transform - rot: 3.141592653589793 rad pos: 20.5,-33.5 parent: 2 - uid: 13421 @@ -96677,11 +97182,6 @@ entities: - type: Transform pos: 33.5,-23.5 parent: 2 - - uid: 13442 - components: - - type: Transform - pos: -51.5,9.5 - parent: 2 - uid: 13444 components: - type: Transform @@ -96695,43 +97195,36 @@ entities: - uid: 13447 components: - type: Transform - rot: 1.5707963267948966 rad pos: 2.5,-45.5 parent: 2 - uid: 13448 components: - type: Transform - rot: 1.5707963267948966 rad pos: 2.5,-42.5 parent: 2 - uid: 13449 components: - type: Transform - rot: 1.5707963267948966 rad pos: 2.5,-49.5 parent: 2 - uid: 13450 components: - type: Transform - rot: 1.5707963267948966 rad pos: 2.5,-51.5 parent: 2 - uid: 13451 components: - type: Transform - rot: 1.5707963267948966 rad pos: 2.5,-43.5 parent: 2 - uid: 13452 components: - type: Transform - rot: 1.5707963267948966 rad pos: -7.5,-46.5 parent: 2 - uid: 13996 components: - type: Transform - rot: -1.5707963267948966 rad pos: -38.5,48.5 parent: 2 - uid: 14358 @@ -96747,7 +97240,6 @@ entities: - uid: 14610 components: - type: Transform - rot: 3.141592653589793 rad pos: 37.5,8.5 parent: 2 - uid: 14622 @@ -96763,7 +97255,6 @@ entities: - uid: 14713 components: - type: Transform - rot: 3.141592653589793 rad pos: 37.5,9.5 parent: 2 - uid: 14721 @@ -96781,10 +97272,10 @@ entities: - type: Transform pos: -33.5,49.5 parent: 2 - - uid: 16549 + - uid: 16471 components: - type: Transform - pos: -52.5,8.5 + pos: -49.5,-39.5 parent: 2 - uid: 16945 components: @@ -96794,19 +97285,16 @@ entities: - uid: 17013 components: - type: Transform - rot: 3.141592653589793 rad pos: -30.5,4.5 parent: 2 - uid: 17044 components: - type: Transform - rot: 3.141592653589793 rad pos: -32.5,4.5 parent: 2 - uid: 17097 components: - type: Transform - rot: 3.141592653589793 rad pos: -33.5,4.5 parent: 2 - uid: 17108 @@ -96819,105 +97307,84 @@ entities: - type: Transform pos: -14.5,-64.5 parent: 2 - - uid: 17474 - components: - - type: Transform - pos: -54.5,21.5 - parent: 2 - uid: 17890 components: - type: Transform - rot: 3.141592653589793 rad pos: 17.5,39.5 parent: 2 - uid: 17891 components: - type: Transform - rot: 3.141592653589793 rad pos: 17.5,40.5 parent: 2 - uid: 17892 components: - type: Transform - rot: 3.141592653589793 rad pos: 17.5,41.5 parent: 2 - uid: 17893 components: - type: Transform - rot: 3.141592653589793 rad pos: 12.5,41.5 parent: 2 - uid: 17894 components: - type: Transform - rot: 3.141592653589793 rad pos: 12.5,40.5 parent: 2 - uid: 17895 components: - type: Transform - rot: 3.141592653589793 rad pos: 12.5,39.5 parent: 2 - uid: 17896 components: - type: Transform - rot: 3.141592653589793 rad pos: 12.5,46.5 parent: 2 - uid: 17897 components: - type: Transform - rot: 3.141592653589793 rad pos: 12.5,47.5 parent: 2 - uid: 17898 components: - type: Transform - rot: 3.141592653589793 rad pos: 12.5,48.5 parent: 2 - uid: 17899 components: - type: Transform - rot: 3.141592653589793 rad pos: 13.5,49.5 parent: 2 - uid: 17900 components: - type: Transform - rot: 3.141592653589793 rad pos: 14.5,49.5 parent: 2 - uid: 17901 components: - type: Transform - rot: 3.141592653589793 rad pos: 15.5,49.5 parent: 2 - uid: 17902 components: - type: Transform - rot: 3.141592653589793 rad pos: 16.5,49.5 parent: 2 - uid: 17903 components: - type: Transform - rot: 3.141592653589793 rad pos: 17.5,48.5 parent: 2 - uid: 17904 components: - type: Transform - rot: 3.141592653589793 rad pos: 17.5,47.5 parent: 2 - uid: 17905 components: - type: Transform - rot: 3.141592653589793 rad pos: 17.5,46.5 parent: 2 - uid: 18062 @@ -96928,61 +97395,51 @@ entities: - uid: 18401 components: - type: Transform - rot: 3.141592653589793 rad pos: -50.5,-24.5 parent: 2 - uid: 18402 components: - type: Transform - rot: 3.141592653589793 rad pos: -51.5,-24.5 parent: 2 - uid: 18403 components: - type: Transform - rot: 3.141592653589793 rad pos: -51.5,-25.5 parent: 2 - uid: 18404 components: - type: Transform - rot: 3.141592653589793 rad pos: -52.5,-25.5 parent: 2 - uid: 18405 components: - type: Transform - rot: 3.141592653589793 rad pos: -52.5,-26.5 parent: 2 - uid: 18406 components: - type: Transform - rot: 3.141592653589793 rad pos: -52.5,-27.5 parent: 2 - uid: 18407 components: - type: Transform - rot: 3.141592653589793 rad pos: -52.5,-28.5 parent: 2 - uid: 18408 components: - type: Transform - rot: 3.141592653589793 rad pos: -51.5,-28.5 parent: 2 - uid: 18409 components: - type: Transform - rot: 3.141592653589793 rad pos: -51.5,-29.5 parent: 2 - uid: 18410 components: - type: Transform - rot: 3.141592653589793 rad pos: -50.5,-29.5 parent: 2 - uid: 18723 @@ -97013,15 +97470,48 @@ entities: - uid: 18983 components: - type: Transform - rot: -1.5707963267948966 rad pos: -50.5,-38.5 parent: 2 - uid: 18985 components: - type: Transform - rot: -1.5707963267948966 rad pos: -50.5,-42.5 parent: 2 + - uid: 19646 + components: + - type: Transform + pos: 27.5,-19.5 + parent: 2 + - uid: 19647 + components: + - type: Transform + pos: 27.5,-21.5 + parent: 2 + - uid: 19648 + components: + - type: Transform + pos: 27.5,-20.5 + parent: 2 + - uid: 19661 + components: + - type: Transform + pos: -59.5,19.5 + parent: 2 + - uid: 19662 + components: + - type: Transform + pos: -57.5,19.5 + parent: 2 + - uid: 19663 + components: + - type: Transform + pos: -59.5,15.5 + parent: 2 + - uid: 19664 + components: + - type: Transform + pos: -57.5,15.5 + parent: 2 - proto: RemoteSignaller entities: - uid: 13453 @@ -97042,6 +97532,13 @@ entities: - type: Transform pos: -42.5,37.5 parent: 2 +- proto: ResearchAndDevelopmentServerMachineCircuitboard + entities: + - uid: 19023 + components: + - type: Transform + pos: -3.5977168,44.427246 + parent: 2 - proto: ReverseEngineeringMachine entities: - uid: 13455 @@ -97064,6 +97561,13 @@ entities: - type: Transform pos: -13.422459,-7.552577 parent: 2 +- proto: RifleSafeSpawner + entities: + - uid: 8962 + components: + - type: Transform + pos: -39.5,1.5 + parent: 2 - proto: RightArmBorg entities: - uid: 10857 @@ -97204,11 +97708,6 @@ entities: - type: Transform pos: 32.5,-17.5 parent: 2 - - uid: 7348 - components: - - type: Transform - pos: -33.5,-11.5 - parent: 2 - uid: 11521 components: - type: Transform @@ -97224,16 +97723,6 @@ entities: - type: Transform pos: -51.5,19.5 parent: 2 - - uid: 16349 - components: - - type: Transform - pos: -38.5,-7.5 - parent: 2 - - uid: 16350 - components: - - type: Transform - pos: -23.5,-10.5 - parent: 2 - uid: 16357 components: - type: Transform @@ -97312,14 +97801,14 @@ entities: parent: 2 - proto: SecBreachingHammer entities: - - uid: 13482 + - uid: 420 components: - type: Transform - pos: -44.37972,-6.4715266 + pos: -42.958595,-0.3732531 parent: 2 - proto: SecurityTechFab entities: - - uid: 13483 + - uid: 1243 components: - type: Transform pos: -43.5,1.5 @@ -97692,6 +98181,13 @@ entities: count: 10 - type: Item size: 10 +- proto: ShotgunSafeSpawner + entities: + - uid: 8984 + components: + - type: Transform + pos: -39.5,0.5 + parent: 2 - proto: ShowcaseRobot entities: - uid: 13545 @@ -97737,68 +98233,23 @@ entities: - type: Transform pos: -50.5,-4.5 parent: 2 - - type: DeviceLinkSink - links: - - 13608 - uid: 13555 components: - type: Transform pos: -50.5,-2.5 parent: 2 - - type: DeviceLinkSink - links: - - 13608 - - uid: 13556 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,-76.5 - parent: 2 - uid: 13557 components: - type: Transform rot: -1.5707963267948966 rad pos: 16.5,-4.5 parent: 2 - - type: DeviceLinkSink - links: - - 13607 - uid: 13558 components: - type: Transform rot: -1.5707963267948966 rad pos: 16.5,-5.5 parent: 2 - - type: DeviceLinkSink - links: - - 13607 - - uid: 13559 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -33.5,-12.5 - parent: 2 - - type: DeviceLinkSink - links: - - 13610 - - uid: 13560 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -33.5,-13.5 - parent: 2 - - type: DeviceLinkSink - links: - - 13610 - - uid: 13561 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -29.5,-13.5 - parent: 2 - - type: DeviceLinkSink - links: - - 13610 - proto: ShuttersRadiation entities: - uid: 13562 @@ -97806,49 +98257,31 @@ entities: - type: Transform pos: -23.5,-44.5 parent: 2 - - type: DeviceLinkSink - links: - - 13600 - uid: 13563 components: - type: Transform pos: -23.5,-32.5 parent: 2 - - type: DeviceLinkSink - links: - - 13601 - uid: 13564 components: - type: Transform pos: -23.5,-33.5 parent: 2 - - type: DeviceLinkSink - links: - - 13601 - uid: 13565 components: - type: Transform pos: -23.5,-43.5 parent: 2 - - type: DeviceLinkSink - links: - - 13600 - uid: 13566 components: - type: Transform pos: -30.5,-29.5 parent: 2 - - type: DeviceLinkSink - links: - - 13603 - uid: 13567 components: - type: Transform pos: -32.5,-29.5 parent: 2 - - type: DeviceLinkSink - links: - - 13603 - proto: ShuttersRadiationOpen entities: - uid: 13568 @@ -97856,77 +98289,46 @@ entities: - type: Transform pos: -19.5,-35.5 parent: 2 - - type: DeviceLinkSink - links: - - 13596 - - 13597 - uid: 13569 components: - type: Transform pos: -17.5,-37.5 parent: 2 - - type: DeviceLinkSink - links: - - 13596 - - 13597 - uid: 13570 components: - type: Transform pos: -19.5,-41.5 parent: 2 - - type: DeviceLinkSink - links: - - 13596 - - 13597 - uid: 13571 components: - type: Transform pos: -17.5,-39.5 parent: 2 - - type: DeviceLinkSink - links: - - 13596 - - 13597 - uid: 13572 components: - type: Transform pos: -24.5,-36.5 parent: 2 - - type: DeviceLinkSink - links: - - 13606 - uid: 13573 components: - type: Transform pos: -24.5,-37.5 parent: 2 - - type: DeviceLinkSink - links: - - 13606 - uid: 13574 components: - type: Transform pos: -24.5,-38.5 parent: 2 - - type: DeviceLinkSink - links: - - 13606 - uid: 13575 components: - type: Transform pos: -24.5,-39.5 parent: 2 - - type: DeviceLinkSink - links: - - 13606 - uid: 13576 components: - type: Transform pos: -24.5,-40.5 parent: 2 - - type: DeviceLinkSink - links: - - 13606 - proto: ShuttersWindow entities: - uid: 13588 @@ -97934,25 +98336,16 @@ entities: - type: Transform pos: -14.5,-43.5 parent: 2 - - type: DeviceLinkSink - links: - - 13599 - uid: 13589 components: - type: Transform pos: -14.5,-44.5 parent: 2 - - type: DeviceLinkSink - links: - - 13599 - uid: 13590 components: - type: Transform pos: -14.5,-45.5 parent: 2 - - type: DeviceLinkSink - links: - - 13599 - proto: ShuttersWindowOpen entities: - uid: 13591 @@ -97960,17 +98353,26 @@ entities: - type: Transform pos: 19.5,-2.5 parent: 2 - - type: DeviceLinkSink - links: - - 13607 - uid: 13592 components: - type: Transform pos: 20.5,-2.5 parent: 2 - - type: DeviceLinkSink - links: - - 13607 +- proto: ShuttleManipulator + entities: + - uid: 1152 + components: + - type: Transform + pos: -37.5,-12.5 + parent: 2 +- proto: SignAiUpload + entities: + - uid: 19481 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,-79.5 + parent: 2 - proto: SignalButton entities: - uid: 12168 @@ -98045,12 +98447,6 @@ entities: - Pressed: Toggle 13568: - Pressed: Toggle - - uid: 13598 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,-77.5 - parent: 2 - proto: SignalSwitchDirectional entities: - uid: 13599 @@ -98215,22 +98611,6 @@ entities: 6209: - On: Forward - Off: Off - - uid: 13610 - components: - - type: Transform - pos: -32.5,-11.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 13559: - - On: Close - - Off: Open - 13560: - - On: Close - - Off: Open - 13561: - - On: Close - - Off: Open - proto: SignAnomaly entities: - uid: 13579 @@ -98253,10 +98633,10 @@ entities: parent: 2 - proto: SignArmory entities: - - uid: 13613 + - uid: 10645 components: - type: Transform - pos: -40.5,-7.5 + pos: -44.5,-7.5 parent: 2 - proto: SignAtmos entities: @@ -98356,7 +98736,7 @@ entities: - type: Transform pos: -25.5,27.5 parent: 2 -- proto: SignChemistry1 +- proto: SignChem entities: - uid: 7094 components: @@ -98373,6 +98753,13 @@ entities: - type: Transform pos: 21.5,20.5 parent: 2 +- proto: SignConspiracyBoard + entities: + - uid: 19496 + components: + - type: Transform + pos: -44.5,-11.5 + parent: 2 - proto: SignCryogenics entities: - uid: 13628 @@ -98392,13 +98779,6 @@ entities: - type: Transform pos: 16.5,17.5 parent: 2 -- proto: SignDanger - entities: - - uid: 13631 - components: - - type: Transform - pos: -41.5,4.5 - parent: 2 - proto: SignDirectionaCourt entities: - uid: 19458 @@ -98433,20 +98813,6 @@ entities: rot: 1.5707963267948966 rad pos: -32.476475,17.18301 parent: 2 -- proto: SignDirectionalBrig - entities: - - uid: 13635 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -34.5,-7.5 - parent: 2 - - uid: 13636 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -45.5,-7.5 - parent: 2 - proto: SignDirectionalChapel entities: - uid: 13637 @@ -98580,11 +98946,6 @@ entities: rot: -1.5707963267948966 rad pos: -26.5,4.5 parent: 2 - - uid: 13652 - components: - - type: Transform - pos: -43.5,24.5 - parent: 2 - uid: 13653 components: - type: Transform @@ -98621,6 +98982,11 @@ entities: rot: -1.5707963267948966 rad pos: 36.5,-1.5 parent: 2 + - uid: 18770 + components: + - type: Transform + pos: -44.5,24.5 + parent: 2 - uid: 19454 components: - type: Transform @@ -98633,6 +98999,12 @@ entities: rot: -1.5707963267948966 rad pos: -35.481865,8.274689 parent: 2 + - uid: 19578 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -53.5,23.5 + parent: 2 - proto: SignDirectionalFood entities: - uid: 19460 @@ -98844,12 +99216,6 @@ entities: - type: Transform pos: -48.5,-22.5 parent: 2 - - uid: 18973 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -49.5,-39.5 - parent: 2 - uid: 18986 components: - type: Transform @@ -98874,11 +99240,6 @@ entities: - type: Transform pos: -29.5,13.5 parent: 2 - - uid: 13679 - components: - - type: Transform - pos: 33.5,-13.5 - parent: 2 - uid: 13680 components: - type: Transform @@ -98950,6 +99311,23 @@ entities: - type: Transform pos: -34.5,-28.5 parent: 2 +- proto: SignElectricalMed + entities: + - uid: 19658 + components: + - type: Transform + pos: -42.5,4.5 + parent: 2 + - uid: 19659 + components: + - type: Transform + pos: -40.5,4.5 + parent: 2 + - uid: 19660 + components: + - type: Transform + pos: -41.5,2.5 + parent: 2 - proto: SignEngineering entities: - uid: 10781 @@ -99062,7 +99440,7 @@ entities: rot: 3.141592653589793 rad pos: 17.5,-2.5 parent: 2 -- proto: SignHydro3 +- proto: SignHydro1 entities: - uid: 13719 components: @@ -99071,10 +99449,10 @@ entities: parent: 2 - proto: SignInterrogation entities: - - uid: 13720 + - uid: 14661 components: - type: Transform - pos: -27.5,-7.5 + pos: -29.5,-7.5 parent: 2 - proto: SignLibrary entities: @@ -99123,6 +99501,11 @@ entities: - type: Transform pos: 16.5,9.5 parent: 2 + - uid: 16036 + components: + - type: Transform + pos: -30.5,-11.5 + parent: 2 - proto: SignPrison entities: - uid: 13728 @@ -99257,24 +99640,25 @@ entities: rot: 3.141592653589793 rad pos: 33.5,6.5 parent: 2 -- proto: SignSecureMedRed - entities: - - uid: 13751 + - uid: 16840 components: - type: Transform - pos: -42.5,-3.5 + rot: -1.5707963267948966 rad + pos: -26.5,-9.5 parent: 2 - - uid: 13752 +- proto: SignSecureMedRed + entities: + - uid: 16838 components: - type: Transform - pos: -40.5,-3.5 + rot: -1.5707963267948966 rad + pos: -42.5,-1.5 parent: 2 -- proto: SignSecurity - entities: - - uid: 13753 + - uid: 16839 components: - type: Transform - pos: -43.5,-7.5 + rot: -1.5707963267948966 rad + pos: -40.5,-1.5 parent: 2 - proto: SignSmoking entities: @@ -99436,6 +99820,18 @@ entities: rot: -1.5707963267948966 rad pos: 1.5,10.5 parent: 2 + - uid: 18631 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,13.5 + parent: 2 + - uid: 19595 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -53.5,16.5 + parent: 2 - proto: SMESBasic entities: - uid: 13777 @@ -99526,6 +99922,12 @@ entities: - type: Transform pos: -60.5,2.5 parent: 2 + - uid: 13908 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -55.5,17.5 + parent: 2 - proto: SodaDispenserMachineCircuitboard entities: - uid: 13986 @@ -100178,15 +100580,17 @@ entities: - type: Transform pos: -35.5,43.5 parent: 2 - - uid: 13895 + - uid: 13896 components: - type: Transform - pos: -42.5,-18.5 + pos: 4.5,11.5 parent: 2 - - uid: 13896 +- proto: SpawnMobCat + entities: + - uid: 5038 components: - type: Transform - pos: 4.5,11.5 + pos: -15.5,7.5 parent: 2 - proto: SpawnMobCatBingus entities: @@ -100211,10 +100615,10 @@ entities: parent: 2 - proto: SpawnMobCatRuntime entities: - - uid: 4687 + - uid: 7613 components: - type: Transform - pos: 10.5,27.5 + pos: -48.5,39.5 parent: 2 - proto: SpawnMobCleanBot entities: @@ -100223,6 +100627,13 @@ entities: - type: Transform pos: -17.5,0.5 parent: 2 +- proto: SpawnMobCMOPetSilvia + entities: + - uid: 7605 + components: + - type: Transform + pos: 10.5,27.5 + parent: 2 - proto: SpawnMobCorgi entities: - uid: 13902 @@ -100244,20 +100655,6 @@ entities: - type: Transform pos: -23.5,44.5 parent: 2 -- proto: SpawnMobKangarooWillow - entities: - - uid: 13907 - components: - - type: Transform - pos: -48.5,39.5 - parent: 2 -- proto: SpawnMobMcGriff - entities: - - uid: 13908 - components: - - type: Transform - pos: -37.5,-4.5 - parent: 2 - proto: SpawnMobMedibot entities: - uid: 13909 @@ -100279,12 +100676,12 @@ entities: - type: Transform pos: 26.5,20.5 parent: 2 -- proto: SpawnMobShiva +- proto: SpawnMobSmile entities: - - uid: 13912 + - uid: 19650 components: - type: Transform - pos: -30.5,-15.5 + pos: -52.5,5.5 parent: 2 - proto: SpawnPointAtmos entities: @@ -100349,6 +100746,16 @@ entities: - type: Transform pos: -19.5,9.5 parent: 2 + - uid: 18511 + components: + - type: Transform + pos: -15.5,4.5 + parent: 2 + - uid: 18627 + components: + - type: Transform + pos: -16.5,4.5 + parent: 2 - proto: SpawnPointBoxer entities: - uid: 3134 @@ -100568,10 +100975,10 @@ entities: - type: Transform pos: -30.5,9.5 parent: 2 - - uid: 17815 + - uid: 16871 components: - type: Transform - pos: -42.5,-12.5 + pos: -34.5,-17.5 parent: 2 - uid: 17816 components: @@ -100593,6 +101000,17 @@ entities: - type: Transform pos: -30.5,13.5 parent: 2 + - uid: 19514 + components: + - type: Transform + pos: -7.5,36.5 + parent: 2 + - uid: 19597 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,20.5 + parent: 2 - proto: SpawnPointCourier entities: - uid: 697 @@ -100622,30 +101040,30 @@ entities: parent: 2 - proto: SpawnPointDetective entities: - - uid: 11973 + - uid: 16842 components: - type: Transform - pos: -45.5,-17.5 + pos: -32.5,-4.5 parent: 2 - - uid: 17826 + - uid: 16845 components: - type: Transform - pos: -46.5,-17.5 + pos: -32.5,-5.5 parent: 2 - - uid: 17827 + - uid: 19506 components: - type: Transform - pos: -46.5,-14.5 + pos: -35.5,-9.5 parent: 2 - - uid: 17828 + - uid: 19507 components: - type: Transform - pos: -45.5,-14.5 + pos: -34.5,-9.5 parent: 2 - - uid: 17829 + - uid: 19508 components: - type: Transform - pos: -37.5,-12.5 + pos: -38.5,-14.5 parent: 2 - proto: SpawnPointForensicMantis entities: @@ -100654,6 +101072,26 @@ entities: - type: Transform pos: -36.5,33.5 parent: 2 + - uid: 19510 + components: + - type: Transform + pos: -35.5,32.5 + parent: 2 + - uid: 19511 + components: + - type: Transform + pos: -35.5,31.5 + parent: 2 + - uid: 19512 + components: + - type: Transform + pos: -36.5,34.5 + parent: 2 + - uid: 19513 + components: + - type: Transform + pos: -38.5,27.5 + parent: 2 - proto: SpawnPointHeadOfPersonnel entities: - uid: 13969 @@ -100753,6 +101191,21 @@ entities: parent: 2 - proto: SpawnPointLocationMidRoundAntag entities: + - uid: 4596 + components: + - type: Transform + pos: 42.5,27.5 + parent: 2 + - uid: 4600 + components: + - type: Transform + pos: -36.5,-51.5 + parent: 2 + - uid: 4602 + components: + - type: Transform + pos: -49.5,-31.5 + parent: 2 - uid: 13982 components: - type: Transform @@ -100783,11 +101236,6 @@ entities: - type: Transform pos: -33.5,41.5 parent: 2 - - uid: 13993 - components: - - type: Transform - pos: 34.5,-15.5 - parent: 2 - uid: 13994 components: - type: Transform @@ -100879,6 +101327,26 @@ entities: - type: Transform pos: -51.5,5.5 parent: 2 + - uid: 19653 + components: + - type: Transform + pos: -7.5,32.5 + parent: 2 + - uid: 19654 + components: + - type: Transform + pos: -52.5,6.5 + parent: 2 + - uid: 19655 + components: + - type: Transform + pos: -50.5,5.5 + parent: 2 + - uid: 19656 + components: + - type: Transform + pos: -50.5,6.5 + parent: 2 - proto: SpawnPointMusician entities: - uid: 14009 @@ -100917,66 +101385,21 @@ entities: parent: 2 - proto: SpawnPointPassenger entities: - - uid: 764 - components: - - type: Transform - pos: 20.5,-14.5 - parent: 2 - - uid: 13302 + - uid: 93 components: - type: Transform - pos: 20.5,-12.5 + pos: 18.5,1.5 parent: 2 - uid: 13513 components: - type: Transform pos: 20.5,-13.5 parent: 2 - - uid: 13914 - components: - - type: Transform - pos: -12.5,4.5 - parent: 2 - uid: 13915 components: - type: Transform pos: -48.5,12.5 parent: 2 - - uid: 13919 - components: - - type: Transform - pos: 30.5,-2.5 - parent: 2 - - uid: 13920 - components: - - type: Transform - pos: 35.5,-4.5 - parent: 2 - - uid: 13921 - components: - - type: Transform - pos: -10.5,3.5 - parent: 2 - - uid: 13922 - components: - - type: Transform - pos: -10.5,4.5 - parent: 2 - - uid: 13923 - components: - - type: Transform - pos: -12.5,3.5 - parent: 2 - - uid: 13924 - components: - - type: Transform - pos: -8.5,3.5 - parent: 2 - - uid: 13925 - components: - - type: Transform - pos: -7.5,4.5 - parent: 2 - uid: 13926 components: - type: Transform @@ -101017,25 +101440,35 @@ entities: - type: Transform pos: 21.5,-12.5 parent: 2 - - uid: 17843 + - uid: 16887 components: - type: Transform - pos: 21.5,-13.5 + pos: 19.5,1.5 parent: 2 - - uid: 17846 + - uid: 16890 components: - type: Transform - pos: 21.5,-14.5 + pos: 20.5,1.5 parent: 2 - - uid: 17847 + - uid: 16891 components: - type: Transform - pos: 20.5,-15.5 + pos: 21.5,1.5 parent: 2 - - uid: 17848 + - uid: 16892 components: - type: Transform - pos: 21.5,-15.5 + pos: 22.5,1.5 + parent: 2 + - uid: 16893 + components: + - type: Transform + pos: 23.5,1.5 + parent: 2 + - uid: 17846 + components: + - type: Transform + pos: 21.5,-14.5 parent: 2 - proto: SpawnPointPrisoner entities: @@ -101252,74 +101685,79 @@ entities: parent: 2 - proto: SpawnPointSecurityCadet entities: - - uid: 14039 + - uid: 14959 components: - type: Transform pos: -21.5,-13.5 parent: 2 - - uid: 14040 + - uid: 14962 components: - type: Transform pos: -21.5,-14.5 parent: 2 - - uid: 14041 + - uid: 14964 components: - type: Transform pos: -21.5,-15.5 parent: 2 - - uid: 14042 - components: - - type: Transform - pos: -21.5,-16.5 - parent: 2 - - uid: 14043 + - uid: 14967 components: - type: Transform - pos: -22.5,-7.5 + pos: -35.5,-12.5 parent: 2 - - uid: 14044 + - uid: 14968 components: - type: Transform pos: -35.5,-13.5 parent: 2 - proto: SpawnPointSecurityOfficer entities: - - uid: 14045 + - uid: 14975 components: - type: Transform - pos: -22.5,-13.5 + pos: -39.5,-12.5 parent: 2 - - uid: 14046 + - uid: 15008 components: - type: Transform - pos: -22.5,-14.5 + pos: -39.5,-13.5 parent: 2 - - uid: 14047 + - uid: 15013 components: - type: Transform - pos: -22.5,-15.5 + pos: -38.5,-11.5 parent: 2 - - uid: 14048 + - uid: 15014 components: - type: Transform - pos: -22.5,-16.5 + pos: -36.5,-11.5 parent: 2 - - uid: 14049 + - uid: 15016 components: - type: Transform - pos: -21.5,-7.5 + pos: -23.5,-13.5 parent: 2 - - uid: 14051 + - uid: 15020 components: - type: Transform - pos: -35.5,-12.5 + pos: -23.5,-14.5 + parent: 2 + - uid: 15021 + components: + - type: Transform + pos: -23.5,-15.5 + parent: 2 + - uid: 19509 + components: + - type: Transform + pos: -36.5,-14.5 parent: 2 - proto: SpawnPointServiceWorker entities: - - uid: 17818 + - uid: 10303 components: - type: Transform - pos: -12.5,6.5 + pos: -53.5,17.5 parent: 2 - uid: 17819 components: @@ -101336,16 +101774,6 @@ entities: - type: Transform pos: -8.5,6.5 parent: 2 - - uid: 17822 - components: - - type: Transform - pos: -15.5,6.5 - parent: 2 - - uid: 17823 - components: - - type: Transform - pos: -14.5,6.5 - parent: 2 - uid: 17824 components: - type: Transform @@ -101422,16 +101850,31 @@ entities: parent: 2 - proto: SpawnPointWarden entities: - - uid: 13531 + - uid: 15041 components: - type: Transform - pos: -37.5,-13.5 + pos: -37.5,-5.5 parent: 2 - - uid: 14063 + - uid: 15043 + components: + - type: Transform + pos: -36.5,-5.5 + parent: 2 + - uid: 15044 + components: + - type: Transform + pos: -37.5,-6.5 + parent: 2 + - uid: 15056 components: - type: Transform pos: -36.5,-6.5 parent: 2 + - uid: 15059 + components: + - type: Transform + pos: -37.5,-14.5 + parent: 2 - proto: SpeedLoaderLightRifle entities: - uid: 11170 @@ -101529,6 +101972,14 @@ entities: - type: Transform pos: 23.5,8.5 parent: 2 +- proto: StationAiUploadComputer + entities: + - uid: 11106 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,-82.5 + parent: 2 - proto: StationMap entities: - uid: 14079 @@ -101593,10 +102044,10 @@ entities: - type: Transform pos: -31.5,21.5 parent: 2 - - uid: 17479 + - uid: 16846 components: - type: Transform - pos: -29.5,-7.5 + pos: -31.5,-8.5 parent: 2 - proto: SteelBench entities: @@ -101841,6 +102292,18 @@ entities: rot: -1.5707963267948966 rad pos: -39.5,-23.5 parent: 2 + - uid: 14051 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -50.5,18.5 + parent: 2 + - uid: 14063 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -50.5,17.5 + parent: 2 - uid: 14128 components: - type: Transform @@ -101983,6 +102446,19 @@ entities: - type: Transform pos: 2.5,-36.5 parent: 2 +- proto: Stunbaton + entities: + - uid: 1266 + components: + - type: Transform + pos: -39.531948,-2.5603704 + parent: 2 + - uid: 7210 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -39.483025,-2.5481398 + parent: 2 - proto: SubstationBasic entities: - uid: 14158 @@ -102400,48 +102876,6 @@ entities: - type: Transform pos: 9.5,-40.5 parent: 2 -- proto: SuitStorageEVAPrisoner - entities: - - uid: 14188 - components: - - type: Transform - pos: -47.5,-10.5 - parent: 2 - - uid: 14189 - components: - - type: Transform - pos: -48.5,-10.5 - parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 93.465614 - moles: - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 14190 - components: - - type: Transform - pos: -49.5,-10.5 - parent: 2 -- proto: SuitStorageHOS - entities: - - uid: 14191 - components: - - type: Transform - pos: -31.5,-15.5 - parent: 2 - proto: SuitStorageParamedic entities: - uid: 639 @@ -102456,56 +102890,39 @@ entities: parent: 2 - proto: SuitStorageSec entities: - - uid: 14192 - components: - - type: Transform - pos: -25.5,-15.5 - parent: 2 - - uid: 14193 + - uid: 656 components: - type: Transform - pos: -25.5,-11.5 + pos: -26.5,-15.5 parent: 2 - - uid: 14194 + - uid: 657 components: - type: Transform - pos: -40.5,-0.5 + pos: -25.5,-15.5 parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 75.31249 - moles: - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 14195 + - uid: 5612 components: - type: Transform - pos: -39.5,-2.5 + pos: -39.5,-4.5 parent: 2 - - uid: 14196 + - uid: 8983 components: - type: Transform - pos: -39.5,-0.5 + pos: -40.5,-4.5 parent: 2 - - uid: 14197 +- proto: SurveillanceCameraCommand + entities: + - uid: 13126 components: - type: Transform - pos: -40.5,-2.5 + rot: 3.141592653589793 rad + pos: -15.5,-80.5 parent: 2 -- proto: SurveillanceCameraCommand - entities: + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: AI Upload - uid: 14198 components: - type: Transform @@ -102544,6 +102961,49 @@ entities: - SurveillanceCameraCommand nameSet: True id: command + - uid: 19524 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-75.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: Core East + - uid: 19526 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,-75.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: Core West + - uid: 19598 + components: + - type: Transform + pos: -15.5,-78.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: Central AI Core + - uid: 19629 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,41.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: Vault - proto: SurveillanceCameraEngineering entities: - uid: 14203 @@ -102655,6 +103115,38 @@ entities: - SurveillanceCameraEngineering nameSet: True id: canisters + - uid: 19521 + components: + - type: Transform + pos: -16.5,-61.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: AI Core External + - uid: 19637 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-46.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Atmospherics + - uid: 19638 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,-30.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: North Singularity Control - proto: SurveillanceCameraGeneral entities: - uid: 12251 @@ -102776,6 +103268,71 @@ entities: - SurveillanceCameraGeneral nameSet: True id: crossroads + - uid: 19520 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,-11.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: South-West Halls + - uid: 19600 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -57.5,18.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Evac External + - uid: 19631 + components: + - type: Transform + pos: 0.5,-3.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Park + - uid: 19634 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,1.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: North Arrivals Hallway + - uid: 19635 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,-13.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: West Arrivals Hallway + - uid: 19636 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 40.5,-12.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: East Arrivals Hallway - proto: SurveillanceCameraMedical entities: - uid: 14224 @@ -102855,6 +103412,17 @@ entities: - SurveillanceCameraMedical nameSet: True id: lobby + - uid: 19632 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,10.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraMedical + nameSet: True + id: Virology - proto: SurveillanceCameraRouterCommand entities: - uid: 14230 @@ -103005,6 +103573,17 @@ entities: - SurveillanceCameraScience nameSet: True id: anomaly/robotics lab + - uid: 19626 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -51.5,42.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraScience + nameSet: True + id: Toxins - proto: SurveillanceCameraSecurity entities: - uid: 14246 @@ -103039,17 +103618,6 @@ entities: - SurveillanceCameraSecurity nameSet: True id: perma dorms - - uid: 14249 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -41.5,1.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Heavy Armory - uid: 14250 components: - type: Transform @@ -103083,82 +103651,71 @@ entities: - SurveillanceCameraSecurity nameSet: True id: perma kitchen - - uid: 14253 + - uid: 14256 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -40.5,-13.5 + rot: 3.141592653589793 rad + pos: -27.5,-4.5 parent: 2 - type: SurveillanceCamera setupAvailableNetworks: - SurveillanceCameraSecurity nameSet: True - id: holding cells - - uid: 14254 + id: interrogation + - uid: 14257 components: - type: Transform - rot: 3.141592653589793 rad - pos: -42.5,-4.5 + rot: 1.5707963267948966 rad + pos: -46.5,-3.5 parent: 2 - type: SurveillanceCamera setupAvailableNetworks: - SurveillanceCameraSecurity nameSet: True - id: light armory - - uid: 14255 + id: visiting room + - uid: 14520 components: - type: Transform - pos: -21.5,-9.5 + rot: 3.141592653589793 rad + pos: -34.5,-9.5 parent: 2 - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity nameSet: True - id: reception - - uid: 14256 + id: Brig North + - uid: 14521 components: - type: Transform - rot: 3.141592653589793 rad - pos: -27.5,-4.5 + pos: -38.5,-15.5 parent: 2 - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity nameSet: True - id: interrogation - - uid: 14257 + - uid: 14534 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -46.5,-3.5 + rot: -1.5707963267948966 rad + pos: -47.5,-16.5 parent: 2 - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity nameSet: True - id: visiting room - - uid: 14258 + - uid: 14541 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -27.5,-10.5 + rot: -1.5707963267948966 rad + pos: -43.5,-3.5 parent: 2 - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity nameSet: True - id: less lethal armory - - uid: 14259 + - uid: 19628 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -45.5,-13.5 + rot: -1.5707963267948966 rad + pos: -33.5,43.5 parent: 2 - type: SurveillanceCamera setupAvailableNetworks: - SurveillanceCameraSecurity nameSet: True - id: shooting range + id: Justice Hallway - proto: SurveillanceCameraService entities: - uid: 14261 @@ -103226,6 +103783,38 @@ entities: - SurveillanceCameraService nameSet: True id: head of personnel's office + - uid: 19522 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,-6.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraService + nameSet: True + id: Bar + - uid: 19630 + components: + - type: Transform + pos: 1.5,18.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraService + nameSet: True + id: Salon + - uid: 19633 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 47.5,7.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraService + nameSet: True + id: Boxing Ring - proto: SurveillanceCameraSupply entities: - uid: 14268 @@ -103283,6 +103872,17 @@ entities: - SurveillanceCameraSupply nameSet: True id: conveyors + - uid: 19531 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,-47.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSupply + nameSet: True + id: Salvage Dock - proto: SurveillanceCameraWirelessRouterEntertainment entities: - uid: 14275 @@ -103322,43 +103922,57 @@ entities: parent: 2 - proto: Table entities: - - uid: 7612 + - uid: 205 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,16.5 + rot: 3.141592653589793 rad + pos: -27.5,-5.5 parent: 2 - - uid: 14278 + - uid: 1210 components: - type: Transform - pos: -8.5,-39.5 + rot: -1.5707963267948966 rad + pos: -32.5,-7.5 parent: 2 - - uid: 14279 + - uid: 6043 components: - type: Transform - pos: -19.5,7.5 + rot: -1.5707963267948966 rad + pos: -8.5,4.5 parent: 2 - - uid: 14280 + - uid: 6264 components: - type: Transform - pos: -28.5,-5.5 + rot: -1.5707963267948966 rad + pos: -9.5,4.5 parent: 2 - - uid: 14281 + - uid: 7612 components: - type: Transform - pos: -8.5,4.5 + rot: -1.5707963267948966 rad + pos: -6.5,16.5 parent: 2 - - uid: 14282 + - uid: 12443 components: - type: Transform rot: -1.5707963267948966 rad - pos: -11.5,3.5 + pos: -9.5,3.5 parent: 2 - - uid: 14283 + - uid: 14196 components: - type: Transform rot: -1.5707963267948966 rad - pos: -11.5,4.5 + pos: -8.5,3.5 + parent: 2 + - uid: 14278 + components: + - type: Transform + pos: -8.5,-39.5 + parent: 2 + - uid: 14279 + components: + - type: Transform + pos: -19.5,7.5 parent: 2 - uid: 14284 components: @@ -103382,21 +103996,6 @@ entities: rot: 1.5707963267948966 rad pos: 34.5,-2.5 parent: 2 - - uid: 14288 - components: - - type: Transform - pos: -29.5,-5.5 - parent: 2 - - uid: 14289 - components: - - type: Transform - pos: -36.5,-14.5 - parent: 2 - - uid: 14290 - components: - - type: Transform - pos: -36.5,-13.5 - parent: 2 - uid: 14291 components: - type: Transform @@ -103412,11 +104011,6 @@ entities: - type: Transform pos: -38.5,18.5 parent: 2 - - uid: 14294 - components: - - type: Transform - pos: -36.5,-12.5 - parent: 2 - uid: 14295 components: - type: Transform @@ -103475,22 +104069,12 @@ entities: - type: Transform pos: 29.5,-3.5 parent: 2 - - uid: 14312 - components: - - type: Transform - pos: -39.5,1.5 - parent: 2 - uid: 14313 components: - type: Transform rot: -1.5707963267948966 rad pos: -8.5,42.5 parent: 2 - - uid: 14314 - components: - - type: Transform - pos: -39.5,0.5 - parent: 2 - uid: 14315 components: - type: Transform @@ -103566,11 +104150,6 @@ entities: - type: Transform pos: -1.5,-9.5 parent: 2 - - uid: 14330 - components: - - type: Transform - pos: -35.5,-5.5 - parent: 2 - uid: 14331 components: - type: Transform @@ -103633,6 +104212,24 @@ entities: - type: Transform pos: 6.5,22.5 parent: 2 + - uid: 14506 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,-9.5 + parent: 2 + - uid: 14507 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,-9.5 + parent: 2 + - uid: 16358 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -43.5,-18.5 + parent: 2 - proto: TableBrass entities: - uid: 9400 @@ -103707,11 +104304,6 @@ entities: - type: Transform pos: -52.5,-0.5 parent: 2 - - uid: 14362 - components: - - type: Transform - pos: -32.5,-13.5 - parent: 2 - uid: 14364 components: - type: Transform @@ -103820,11 +104412,6 @@ entities: - type: Transform pos: -3.5,-2.5 parent: 2 - - uid: 14370 - components: - - type: Transform - pos: -31.5,-10.5 - parent: 2 - uid: 14372 components: - type: Transform @@ -103845,12 +104432,6 @@ entities: - type: Transform pos: -10.5,14.5 parent: 2 - - uid: 14376 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -26.5,-13.5 - parent: 2 - uid: 14377 components: - type: Transform @@ -103861,38 +104442,11 @@ entities: - type: Transform pos: -13.5,14.5 parent: 2 - - uid: 14379 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,-15.5 - parent: 2 - - uid: 14380 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,-16.5 - parent: 2 - uid: 14381 components: - type: Transform pos: 30.5,-7.5 parent: 2 - - uid: 14382 - components: - - type: Transform - pos: -32.5,-10.5 - parent: 2 - - uid: 14383 - components: - - type: Transform - pos: -23.5,-12.5 - parent: 2 - - uid: 14384 - components: - - type: Transform - pos: -20.5,-14.5 - parent: 2 - uid: 14387 components: - type: Transform @@ -103903,11 +104457,6 @@ entities: - type: Transform pos: -13.5,-38.5 parent: 2 - - uid: 14389 - components: - - type: Transform - pos: -21.5,-9.5 - parent: 2 - uid: 14391 components: - type: Transform @@ -104005,11 +104554,6 @@ entities: rot: 1.5707963267948966 rad pos: 19.5,21.5 parent: 2 - - uid: 14412 - components: - - type: Transform - pos: -20.5,-9.5 - parent: 2 - uid: 14413 components: - type: Transform @@ -104197,11 +104741,6 @@ entities: - type: Transform pos: -53.5,7.5 parent: 2 - - uid: 16763 - components: - - type: Transform - pos: -52.5,7.5 - parent: 2 - uid: 16764 components: - type: Transform @@ -104227,12 +104766,42 @@ entities: rot: -1.5707963267948966 rad pos: -40.5,-22.5 parent: 2 + - uid: 13635 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -51.5,18.5 + parent: 2 + - uid: 13636 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -51.5,17.5 + parent: 2 + - uid: 13752 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -55.5,18.5 + parent: 2 + - uid: 13753 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -55.5,17.5 + parent: 2 - uid: 13888 components: - type: Transform rot: -1.5707963267948966 rad pos: -40.5,-23.5 parent: 2 + - uid: 13895 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -55.5,16.5 + parent: 2 - uid: 14455 components: - type: Transform @@ -104317,6 +104886,11 @@ entities: rot: -1.5707963267948966 rad pos: -28.5,-51.5 parent: 2 + - uid: 19594 + components: + - type: Transform + pos: -54.5,16.5 + parent: 2 - proto: TableFancyBlack entities: - uid: 12873 @@ -104345,6 +104919,16 @@ entities: parent: 2 - proto: TableFancyRed entities: + - uid: 4278 + components: + - type: Transform + pos: -22.5,-14.5 + parent: 2 + - uid: 16104 + components: + - type: Transform + pos: -43.5,-15.5 + parent: 2 - uid: 18763 components: - type: Transform @@ -104367,6 +104951,16 @@ entities: parent: 2 - proto: TableGlass entities: + - uid: 753 + components: + - type: Transform + pos: -47.5,-13.5 + parent: 2 + - uid: 1370 + components: + - type: Transform + pos: -35.5,-7.5 + parent: 2 - uid: 5529 components: - type: Transform @@ -104617,11 +105211,27 @@ entities: parent: 2 - proto: TableReinforced entities: + - uid: 92 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -41.5,-7.5 + parent: 2 - uid: 741 components: - type: Transform pos: 19.5,-11.5 parent: 2 + - uid: 1196 + components: + - type: Transform + pos: -42.5,-0.5 + parent: 2 + - uid: 1242 + components: + - type: Transform + pos: -43.5,-0.5 + parent: 2 - uid: 3241 components: - type: Transform @@ -104634,11 +105244,22 @@ entities: rot: 3.141592653589793 rad pos: 56.5,1.5 parent: 2 + - uid: 5735 + components: + - type: Transform + pos: -12.5,4.5 + parent: 2 - uid: 5885 components: - type: Transform pos: 21.5,-11.5 parent: 2 + - uid: 6044 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -42.5,-7.5 + parent: 2 - uid: 11727 components: - type: Transform @@ -104649,6 +105270,17 @@ entities: - type: Transform pos: 22.5,-11.5 parent: 2 + - uid: 12165 + components: + - type: Transform + pos: -12.5,5.5 + parent: 2 + - uid: 13011 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -50.5,8.5 + parent: 2 - uid: 13551 components: - type: Transform @@ -104679,16 +105311,6 @@ entities: - type: Transform pos: -8.5,8.5 parent: 2 - - uid: 14506 - components: - - type: Transform - pos: -16.5,5.5 - parent: 2 - - uid: 14507 - components: - - type: Transform - pos: -16.5,4.5 - parent: 2 - uid: 14508 components: - type: Transform @@ -104745,16 +105367,6 @@ entities: rot: 1.5707963267948966 rad pos: -10.5,-24.5 parent: 2 - - uid: 14520 - components: - - type: Transform - pos: -41.5,-7.5 - parent: 2 - - uid: 14521 - components: - - type: Transform - pos: -42.5,-7.5 - parent: 2 - uid: 14522 components: - type: Transform @@ -104796,11 +105408,6 @@ entities: - type: Transform pos: -33.5,29.5 parent: 2 - - uid: 14534 - components: - - type: Transform - pos: -43.5,0.5 - parent: 2 - uid: 14535 components: - type: Transform @@ -104833,12 +105440,6 @@ entities: - type: Transform pos: 14.5,-32.5 parent: 2 - - uid: 14541 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -41.5,1.5 - parent: 2 - uid: 14728 components: - type: Transform @@ -105212,18 +105813,6 @@ entities: rot: 1.5707963267948966 rad pos: -49.5,-0.5 parent: 2 - - uid: 17111 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -47.5,-13.5 - parent: 2 - - uid: 17357 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -47.5,-14.5 - parent: 2 - uid: 17529 components: - type: Transform @@ -105284,6 +105873,35 @@ entities: rot: 1.5707963267948966 rad pos: -26.5,41.5 parent: 2 +- proto: TargetClown + entities: + - uid: 749 + components: + - type: Transform + pos: -24.5,-15.5 + parent: 2 + - uid: 4303 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -47.5,-18.5 + parent: 2 +- proto: TargetStrange + entities: + - uid: 612 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -47.5,-17.5 + parent: 2 +- proto: TargetSyndicate + entities: + - uid: 1244 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -47.5,-15.5 + parent: 2 - proto: TelecomServer entities: - uid: 7260 @@ -105465,19 +106083,31 @@ entities: - type: Transform pos: -11.592051,-26.621416 parent: 2 -- proto: TimerTrigger +- proto: TintedWindow entities: - - uid: 14638 + - uid: 752 components: - type: Transform - pos: 9.392495,21.753458 + pos: -47.5,-11.5 + parent: 2 + - uid: 964 + components: + - type: Transform + pos: -46.5,-11.5 + parent: 2 + - uid: 4301 + components: + - type: Transform + pos: -30.5,-4.5 + parent: 2 + - uid: 4302 + components: + - type: Transform + pos: -30.5,-5.5 parent: 2 -- proto: TintedWindow - entities: - uid: 5311 components: - type: Transform - rot: 3.141592653589793 rad pos: -31.5,12.5 parent: 2 - uid: 7278 @@ -105485,6 +106115,11 @@ entities: - type: Transform pos: 26.5,7.5 parent: 2 + - uid: 8961 + components: + - type: Transform + pos: -30.5,-6.5 + parent: 2 - uid: 11900 components: - type: Transform @@ -105505,21 +106140,6 @@ entities: - type: Transform pos: -3.5,-1.5 parent: 2 - - uid: 14641 - components: - - type: Transform - pos: -30.5,-4.5 - parent: 2 - - uid: 14642 - components: - - type: Transform - pos: -30.5,-5.5 - parent: 2 - - uid: 14643 - components: - - type: Transform - pos: -30.5,-6.5 - parent: 2 - uid: 14646 components: - type: Transform @@ -105576,17 +106196,19 @@ entities: rot: -1.5707963267948966 rad pos: 35.5,-16.5 parent: 2 - - uid: 14657 + - uid: 14658 components: - type: Transform rot: -1.5707963267948966 rad - pos: 1.5,42.5 + pos: -51.5,-6.5 parent: 2 - - uid: 14658 +- proto: ToiletGoldenDirtyWater + entities: + - uid: 13992 components: - type: Transform rot: -1.5707963267948966 rad - pos: -51.5,-6.5 + pos: 1.5,42.5 parent: 2 - proto: ToolboxElectricalFilled entities: @@ -105612,21 +106234,16 @@ entities: parent: 2 - proto: ToolboxEmergencyFilled entities: - - uid: 14661 + - uid: 12578 components: - type: Transform - pos: -29.827248,-10.610678 + pos: -55.493298,6.511406 parent: 2 - uid: 14662 components: - type: Transform pos: 3.6223974,-19.342974 parent: 2 - - uid: 14663 - components: - - type: Transform - pos: -42.5538,-2.7034986 - parent: 2 - uid: 14666 components: - type: Transform @@ -105652,6 +106269,11 @@ entities: - type: Transform pos: 6.6968956,7.356404 parent: 2 + - uid: 16847 + components: + - type: Transform + pos: -43.53581,-5.195364 + parent: 2 - uid: 17482 components: - type: Transform @@ -105688,16 +106310,6 @@ entities: - type: Transform pos: 22.39023,-11.323637 parent: 2 - - uid: 14674 - components: - - type: Transform - pos: -17.440155,-83.509575 - parent: 2 - - uid: 14675 - components: - - type: Transform - pos: -41.22711,-6.611117 - parent: 2 - uid: 14677 components: - type: Transform @@ -105708,12 +106320,24 @@ entities: - type: Transform pos: 26.377935,-21.641388 parent: 2 +- proto: ToolboxSyndicateFilled + entities: + - uid: 19501 + components: + - type: Transform + pos: -46.47863,49.484325 + parent: 2 - proto: ToyAi entities: - - uid: 14680 + - uid: 11107 components: - type: Transform - pos: -8.611491,-76.47475 + pos: -13.592793,64.07503 + parent: 2 + - uid: 19523 + components: + - type: Transform + pos: -8.522076,-76.37506 parent: 2 - proto: ToyAmongPequeno entities: @@ -105826,10 +106450,10 @@ entities: parent: 2 - proto: ToyFigurineMime entities: - - uid: 13018 + - uid: 13598 components: - type: Transform - parent: 13011 + parent: 13414 - type: Physics canCollide: False - type: InsideEntityStorage @@ -105840,6 +106464,13 @@ entities: - type: Transform pos: -39.46178,-23.28794 parent: 2 +- proto: ToyRenault + entities: + - uid: 12894 + components: + - type: Transform + pos: -14.008635,63.921825 + parent: 2 - proto: ToyRubberDuck entities: - uid: 14698 @@ -105951,7 +106582,7 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 13007: + 13018: - Left: Forward - Right: Reverse - Middle: Off @@ -105974,7 +106605,7 @@ entities: - Left: Forward - Right: Reverse - Middle: Off - 13008: + 13125: - Left: Forward - Right: Reverse - Middle: Off @@ -106052,10 +106683,15 @@ entities: parent: 2 - proto: UnstableMutagenChemistryBottle entities: - - uid: 14711 + - uid: 12816 + components: + - type: Transform + pos: -19.65488,7.353116 + parent: 2 + - uid: 14195 components: - type: Transform - pos: -19.285854,6.843782 + pos: -19.540297,7.269783 parent: 2 - proto: Vaccinator entities: @@ -106228,15 +106864,10 @@ entities: parent: 2 - proto: VendingMachineDetDrobe entities: - - uid: 14737 - components: - - type: Transform - pos: -20.5,-11.5 - parent: 2 - - uid: 17417 + - uid: 15996 components: - type: Transform - pos: -46.5,-18.5 + pos: -22.5,-16.5 parent: 2 - proto: VendingMachineDinnerware entities: @@ -106379,10 +107010,17 @@ entities: parent: 2 - proto: VendingMachineRestockChemVend entities: - - uid: 14759 + - uid: 12697 + components: + - type: Transform + pos: 9.611285,21.720526 + parent: 2 +- proto: VendingMachineRestockDonut + entities: + - uid: 16028 components: - type: Transform - pos: 8.652911,19.716545 + pos: -42.92532,-0.4786793 parent: 2 - proto: VendingMachineRoboDrobe entities: @@ -106414,17 +107052,17 @@ entities: parent: 2 - proto: VendingMachineSec entities: - - uid: 14764 + - uid: 737 components: - type: Transform - pos: -25.5,-13.5 + pos: -26.5,-12.5 parent: 2 - proto: VendingMachineSecDrobe entities: - - uid: 14765 + - uid: 4282 components: - type: Transform - pos: -21.5,-11.5 + pos: -23.5,-16.5 parent: 2 - proto: VendingMachineSeeds entities: @@ -106454,6 +107092,11 @@ entities: parent: 2 - proto: VendingMachineTankDispenserEVA entities: + - uid: 8218 + components: + - type: Transform + pos: 26.5,-4.5 + parent: 2 - uid: 14770 components: - type: Transform @@ -106524,6 +107167,16 @@ entities: parent: 2 - proto: WallReinforced entities: + - uid: 91 + components: + - type: Transform + pos: -34.5,-7.5 + parent: 2 + - uid: 180 + components: + - type: Transform + pos: -44.5,-11.5 + parent: 2 - uid: 182 components: - type: Transform @@ -106532,24 +107185,18 @@ entities: - uid: 188 components: - type: Transform - rot: 3.141592653589793 rad pos: 41.5,-3.5 parent: 2 - uid: 206 components: - type: Transform - pos: -52.5,19.5 + pos: -56.5,16.5 parent: 2 - uid: 207 components: - type: Transform pos: -54.5,11.5 parent: 2 - - uid: 208 - components: - - type: Transform - pos: -53.5,19.5 - parent: 2 - uid: 209 components: - type: Transform @@ -106558,35 +107205,31 @@ entities: - uid: 216 components: - type: Transform - rot: 3.141592653589793 rad pos: 41.5,-1.5 parent: 2 - uid: 272 components: - type: Transform - rot: 3.141592653589793 rad pos: 49.5,10.5 parent: 2 - - uid: 523 + - uid: 289 components: - type: Transform - pos: -54.5,15.5 + pos: -56.5,17.5 parent: 2 - - uid: 524 + - uid: 362 components: - type: Transform - pos: -52.5,15.5 + pos: -22.5,-17.5 parent: 2 - uid: 532 components: - type: Transform - rot: 3.141592653589793 rad pos: 41.5,-0.5 parent: 2 - uid: 535 components: - type: Transform - rot: -1.5707963267948966 rad pos: -40.5,51.5 parent: 2 - uid: 536 @@ -106594,147 +107237,169 @@ entities: - type: Transform pos: 36.5,22.5 parent: 2 + - uid: 652 + components: + - type: Transform + pos: -31.5,-13.5 + parent: 2 - uid: 675 components: - type: Transform - rot: 3.141592653589793 rad pos: 12.5,45.5 parent: 2 - uid: 684 components: - type: Transform - rot: 3.141592653589793 rad pos: 12.5,42.5 parent: 2 - uid: 685 components: - type: Transform - rot: 3.141592653589793 rad pos: 16.5,45.5 parent: 2 - uid: 686 components: - type: Transform - rot: 3.141592653589793 rad pos: 17.5,49.5 parent: 2 - uid: 688 components: - type: Transform - rot: 3.141592653589793 rad pos: 12.5,49.5 parent: 2 - uid: 690 components: - type: Transform - rot: 3.141592653589793 rad pos: 13.5,45.5 parent: 2 - uid: 691 components: - type: Transform - rot: 3.141592653589793 rad pos: 12.5,38.5 parent: 2 - uid: 692 components: - type: Transform - rot: 3.141592653589793 rad pos: 17.5,42.5 parent: 2 - uid: 693 components: - type: Transform - rot: 3.141592653589793 rad pos: 13.5,44.5 parent: 2 - uid: 694 components: - type: Transform - rot: 3.141592653589793 rad pos: 17.5,38.5 parent: 2 - uid: 695 components: - type: Transform - rot: 3.141592653589793 rad pos: 16.5,44.5 parent: 2 - uid: 696 components: - type: Transform - rot: 3.141592653589793 rad pos: 17.5,45.5 parent: 2 + - uid: 754 + components: + - type: Transform + pos: -42.5,-13.5 + parent: 2 + - uid: 1154 + components: + - type: Transform + pos: -42.5,-11.5 + parent: 2 - uid: 1162 components: - type: Transform pos: -46.5,4.5 parent: 2 + - uid: 1185 + components: + - type: Transform + pos: -43.5,-14.5 + parent: 2 + - uid: 1186 + components: + - type: Transform + pos: -42.5,-14.5 + parent: 2 + - uid: 1201 + components: + - type: Transform + pos: -38.5,-4.5 + parent: 2 + - uid: 1202 + components: + - type: Transform + pos: -38.5,-5.5 + parent: 2 + - uid: 1226 + components: + - type: Transform + pos: -41.5,-16.5 + parent: 2 + - uid: 1265 + components: + - type: Transform + pos: -33.5,-13.5 + parent: 2 - uid: 1556 components: - type: Transform - rot: 3.141592653589793 rad pos: 43.5,-0.5 parent: 2 - uid: 1561 components: - type: Transform - rot: 3.141592653589793 rad pos: 42.5,-0.5 parent: 2 - uid: 1564 components: - type: Transform - rot: 3.141592653589793 rad pos: 32.5,2.5 parent: 2 - uid: 1566 components: - type: Transform - rot: 3.141592653589793 rad pos: 31.5,12.5 parent: 2 - uid: 1567 components: - type: Transform - rot: 3.141592653589793 rad pos: 33.5,12.5 parent: 2 - uid: 1568 components: - type: Transform - rot: 3.141592653589793 rad pos: 37.5,6.5 parent: 2 - uid: 1571 components: - type: Transform - rot: 3.141592653589793 rad pos: 33.5,14.5 parent: 2 - uid: 1590 components: - type: Transform - rot: -1.5707963267948966 rad pos: 33.5,6.5 parent: 2 - uid: 1597 components: - type: Transform - rot: 3.141592653589793 rad pos: 34.5,12.5 parent: 2 - uid: 1599 components: - type: Transform - rot: 3.141592653589793 rad pos: 36.5,6.5 parent: 2 - uid: 1672 components: - type: Transform - rot: 3.141592653589793 rad pos: 31.5,9.5 parent: 2 - uid: 2129 @@ -106750,33 +107415,53 @@ entities: - uid: 2583 components: - type: Transform - rot: 3.141592653589793 rad pos: -48.5,-50.5 parent: 2 - uid: 3131 components: - type: Transform - rot: 3.141592653589793 rad pos: -48.5,-51.5 parent: 2 - uid: 3132 components: - type: Transform - rot: 3.141592653589793 rad pos: -48.5,-52.5 parent: 2 - uid: 3244 components: - type: Transform - rot: 1.5707963267948966 rad pos: 61.5,2.5 parent: 2 - uid: 3268 components: - type: Transform - rot: 1.5707963267948966 rad pos: 62.5,2.5 parent: 2 + - uid: 3369 + components: + - type: Transform + pos: -44.5,-5.5 + parent: 2 + - uid: 3374 + components: + - type: Transform + pos: -44.5,-7.5 + parent: 2 + - uid: 3375 + components: + - type: Transform + pos: -44.5,-6.5 + parent: 2 + - uid: 3376 + components: + - type: Transform + pos: -40.5,-8.5 + parent: 2 + - uid: 3394 + components: + - type: Transform + pos: -32.5,-13.5 + parent: 2 - uid: 3755 components: - type: Transform @@ -106835,7 +107520,6 @@ entities: - uid: 3768 components: - type: Transform - rot: 3.141592653589793 rad pos: -48.5,-49.5 parent: 2 - uid: 3769 @@ -106851,43 +107535,91 @@ entities: - uid: 3777 components: - type: Transform - rot: 3.141592653589793 rad pos: -41.5,-45.5 parent: 2 - uid: 3779 components: - type: Transform - rot: 3.141592653589793 rad pos: -26.5,-53.5 parent: 2 - uid: 3784 components: - type: Transform - rot: 3.141592653589793 rad pos: -27.5,-53.5 parent: 2 - uid: 3786 components: - type: Transform - rot: 3.141592653589793 rad pos: -25.5,-53.5 parent: 2 - uid: 3787 components: - type: Transform - rot: 3.141592653589793 rad pos: -31.5,-53.5 parent: 2 - uid: 3793 components: - type: Transform - rot: 3.141592653589793 rad pos: -32.5,-53.5 parent: 2 + - uid: 4237 + components: + - type: Transform + pos: -30.5,-11.5 + parent: 2 + - uid: 4239 + components: + - type: Transform + pos: -30.5,-12.5 + parent: 2 + - uid: 4307 + components: + - type: Transform + pos: -34.5,-8.5 + parent: 2 + - uid: 4308 + components: + - type: Transform + pos: -34.5,-5.5 + parent: 2 + - uid: 4309 + components: + - type: Transform + pos: -34.5,-4.5 + parent: 2 + - uid: 4311 + components: + - type: Transform + pos: -56.5,11.5 + parent: 2 + - uid: 4312 + components: + - type: Transform + pos: -55.5,11.5 + parent: 2 + - uid: 4314 + components: + - type: Transform + pos: -59.5,11.5 + parent: 2 + - uid: 4315 + components: + - type: Transform + pos: -58.5,11.5 + parent: 2 + - uid: 4324 + components: + - type: Transform + pos: -60.5,11.5 + parent: 2 + - uid: 4326 + components: + - type: Transform + pos: -56.5,15.5 + parent: 2 - uid: 4575 components: - type: Transform - rot: -1.5707963267948966 rad pos: -32.5,-73.5 parent: 2 - uid: 4612 @@ -106913,37 +107645,31 @@ entities: - uid: 4686 components: - type: Transform - rot: 3.141592653589793 rad pos: -48.5,-30.5 parent: 2 - uid: 4688 components: - type: Transform - rot: -1.5707963267948966 rad pos: -50.5,-32.5 parent: 2 - uid: 4689 components: - type: Transform - rot: -1.5707963267948966 rad pos: -50.5,-31.5 parent: 2 - uid: 4690 components: - type: Transform - rot: 3.141592653589793 rad pos: -45.5,-29.5 parent: 2 - uid: 4691 components: - type: Transform - rot: 3.141592653589793 rad pos: -45.5,-30.5 parent: 2 - uid: 4779 components: - type: Transform - rot: -1.5707963267948966 rad pos: 0.5,17.5 parent: 2 - uid: 4780 @@ -106951,99 +107677,124 @@ entities: - type: Transform pos: -0.5,17.5 parent: 2 + - uid: 5058 + components: + - type: Transform + pos: -57.5,11.5 + parent: 2 + - uid: 5059 + components: + - type: Transform + pos: -55.5,23.5 + parent: 2 + - uid: 5060 + components: + - type: Transform + pos: -58.5,15.5 + parent: 2 + - uid: 5061 + components: + - type: Transform + pos: -56.5,23.5 + parent: 2 - uid: 5065 components: - type: Transform - rot: 3.141592653589793 rad pos: -45.5,-35.5 parent: 2 - uid: 5066 components: - type: Transform - rot: 3.141592653589793 rad pos: -45.5,-34.5 parent: 2 - uid: 5125 components: - type: Transform - rot: 1.5707963267948966 rad pos: -53.5,43.5 parent: 2 - uid: 5179 components: - type: Transform - rot: 3.141592653589793 rad pos: -45.5,-33.5 parent: 2 - uid: 5310 components: - type: Transform - rot: 3.141592653589793 rad pos: -45.5,-32.5 parent: 2 - uid: 5317 components: - type: Transform - rot: 1.5707963267948966 rad pos: 60.5,2.5 parent: 2 - uid: 5762 components: - type: Transform - rot: 3.141592653589793 rad pos: 41.5,-2.5 parent: 2 + - uid: 5823 + components: + - type: Transform + pos: -43.5,-11.5 + parent: 2 - uid: 5875 components: - type: Transform - rot: 3.141592653589793 rad pos: 42.5,21.5 parent: 2 - uid: 6013 components: - type: Transform - rot: 1.5707963267948966 rad pos: -50.5,43.5 parent: 2 - uid: 6065 components: - type: Transform - rot: 3.141592653589793 rad pos: 39.5,19.5 parent: 2 - - uid: 6090 + - uid: 6171 components: - type: Transform - pos: -51.5,11.5 + pos: -27.5,-12.5 + parent: 2 + - uid: 6244 + components: + - type: Transform + pos: -30.5,-14.5 + parent: 2 + - uid: 6274 + components: + - type: Transform + pos: -30.5,-13.5 + parent: 2 + - uid: 6275 + components: + - type: Transform + pos: -38.5,-1.5 parent: 2 - uid: 7125 components: - type: Transform - rot: 3.141592653589793 rad pos: 44.5,21.5 parent: 2 - uid: 7126 components: - type: Transform - rot: 3.141592653589793 rad pos: 45.5,21.5 parent: 2 - uid: 7222 components: - type: Transform - rot: 3.141592653589793 rad pos: 54.5,10.5 parent: 2 - uid: 7377 components: - type: Transform - rot: 1.5707963267948966 rad pos: 60.5,6.5 parent: 2 - uid: 7379 components: - type: Transform - rot: 3.141592653589793 rad pos: 51.5,10.5 parent: 2 - uid: 7410 @@ -107054,19 +107805,16 @@ entities: - uid: 7420 components: - type: Transform - rot: 3.141592653589793 rad pos: 57.5,1.5 parent: 2 - uid: 7434 components: - type: Transform - rot: 3.141592653589793 rad pos: 52.5,10.5 parent: 2 - uid: 7435 components: - type: Transform - rot: 3.141592653589793 rad pos: 53.5,10.5 parent: 2 - uid: 7482 @@ -107077,19 +107825,16 @@ entities: - uid: 7664 components: - type: Transform - rot: 3.141592653589793 rad pos: 57.5,6.5 parent: 2 - uid: 7689 components: - type: Transform - rot: 1.5707963267948966 rad pos: -56.5,39.5 parent: 2 - uid: 7758 components: - type: Transform - rot: 3.141592653589793 rad pos: 46.5,23.5 parent: 2 - uid: 7798 @@ -107100,9 +107845,13 @@ entities: - uid: 7799 components: - type: Transform - rot: 1.5707963267948966 rad pos: 62.5,6.5 parent: 2 + - uid: 7857 + components: + - type: Transform + pos: -44.5,-14.5 + parent: 2 - uid: 8392 components: - type: Transform @@ -107116,73 +107865,61 @@ entities: - uid: 8394 components: - type: Transform - rot: 3.141592653589793 rad pos: 47.5,10.5 parent: 2 - uid: 8397 components: - type: Transform - rot: 3.141592653589793 rad pos: 57.5,7.5 parent: 2 - uid: 8399 components: - type: Transform - rot: 3.141592653589793 rad pos: 35.5,5.5 parent: 2 - uid: 8403 components: - type: Transform - rot: 3.141592653589793 rad pos: 32.5,6.5 parent: 2 - uid: 8404 components: - type: Transform - rot: 3.141592653589793 rad pos: 39.5,6.5 parent: 2 - uid: 8405 components: - type: Transform - rot: 3.141592653589793 rad pos: 31.5,6.5 parent: 2 - uid: 8406 components: - type: Transform - rot: 3.141592653589793 rad pos: 31.5,7.5 parent: 2 - uid: 8423 components: - type: Transform - rot: 3.141592653589793 rad pos: 31.5,10.5 parent: 2 - uid: 8424 components: - type: Transform - rot: 3.141592653589793 rad pos: 31.5,8.5 parent: 2 - uid: 8425 components: - type: Transform - rot: 3.141592653589793 rad pos: 31.5,11.5 parent: 2 - uid: 8426 components: - type: Transform - rot: 3.141592653589793 rad pos: 56.5,10.5 parent: 2 - uid: 8427 components: - type: Transform - rot: 3.141592653589793 rad pos: 55.5,10.5 parent: 2 - uid: 8428 @@ -107190,12 +107927,66 @@ entities: - type: Transform pos: 59.5,6.5 parent: 2 + - uid: 8927 + components: + - type: Transform + pos: -34.5,-6.5 + parent: 2 + - uid: 8928 + components: + - type: Transform + pos: -39.5,-5.5 + parent: 2 + - uid: 8929 + components: + - type: Transform + pos: -40.5,-7.5 + parent: 2 + - uid: 8937 + components: + - type: Transform + pos: -41.5,-14.5 + parent: 2 + - uid: 8957 + components: + - type: Transform + pos: -40.5,-5.5 + parent: 2 + - uid: 8969 + components: + - type: Transform + pos: -35.5,-8.5 + parent: 2 - uid: 8970 components: - type: Transform - rot: -1.5707963267948966 rad pos: -39.5,48.5 parent: 2 + - uid: 8971 + components: + - type: Transform + pos: -27.5,-15.5 + parent: 2 + - uid: 8975 + components: + - type: Transform + pos: -44.5,-10.5 + parent: 2 + - uid: 8980 + components: + - type: Transform + pos: -30.5,-15.5 + parent: 2 + - uid: 8985 + components: + - type: Transform + pos: -45.5,-11.5 + parent: 2 + - uid: 8994 + components: + - type: Transform + pos: -58.5,19.5 + parent: 2 - uid: 9049 components: - type: Transform @@ -107224,7 +108015,6 @@ entities: - uid: 9484 components: - type: Transform - rot: 3.141592653589793 rad pos: 43.5,29.5 parent: 2 - uid: 9518 @@ -107235,19 +108025,16 @@ entities: - uid: 9804 components: - type: Transform - rot: 3.141592653589793 rad pos: 46.5,22.5 parent: 2 - uid: 9821 components: - type: Transform - rot: 3.141592653589793 rad pos: 46.5,25.5 parent: 2 - uid: 9824 components: - type: Transform - rot: 3.141592653589793 rad pos: 46.5,29.5 parent: 2 - uid: 9830 @@ -107258,7 +108045,6 @@ entities: - uid: 9833 components: - type: Transform - rot: 3.141592653589793 rad pos: 46.5,24.5 parent: 2 - uid: 9877 @@ -107269,27 +108055,38 @@ entities: - uid: 9933 components: - type: Transform - rot: 3.141592653589793 rad pos: 35.5,6.5 parent: 2 - uid: 9959 components: - type: Transform - rot: 3.141592653589793 rad pos: 35.5,3.5 parent: 2 - uid: 9960 components: - type: Transform - rot: 3.141592653589793 rad pos: 35.5,2.5 parent: 2 - uid: 9961 components: - type: Transform - rot: 3.141592653589793 rad pos: 32.5,5.5 parent: 2 + - uid: 10055 + components: + - type: Transform + pos: -44.5,-4.5 + parent: 2 + - uid: 10058 + components: + - type: Transform + pos: -56.5,18.5 + parent: 2 + - uid: 10061 + components: + - type: Transform + pos: -43.5,-19.5 + parent: 2 - uid: 10093 components: - type: Transform @@ -107298,19 +108095,16 @@ entities: - uid: 10128 components: - type: Transform - rot: 3.141592653589793 rad pos: 46.5,28.5 parent: 2 - uid: 10168 components: - type: Transform - rot: 3.141592653589793 rad pos: 45.5,29.5 parent: 2 - uid: 10169 components: - type: Transform - rot: 3.141592653589793 rad pos: 46.5,26.5 parent: 2 - uid: 10218 @@ -107326,49 +108120,51 @@ entities: - uid: 10266 components: - type: Transform - rot: 3.141592653589793 rad pos: 32.5,12.5 parent: 2 - uid: 10267 components: - type: Transform - rot: 3.141592653589793 rad pos: 37.5,7.5 parent: 2 + - uid: 10365 + components: + - type: Transform + pos: -56.5,19.5 + parent: 2 + - uid: 10381 + components: + - type: Transform + pos: -60.5,15.5 + parent: 2 - uid: 10577 components: - type: Transform - rot: 3.141592653589793 rad pos: 16.5,33.5 parent: 2 - uid: 10586 components: - type: Transform - rot: 3.141592653589793 rad pos: 13.5,33.5 parent: 2 - uid: 10599 components: - type: Transform - rot: 3.141592653589793 rad pos: 38.5,26.5 parent: 2 - uid: 10608 components: - type: Transform - rot: 3.141592653589793 rad pos: 39.5,26.5 parent: 2 - uid: 10675 components: - type: Transform - rot: 3.141592653589793 rad pos: -28.5,4.5 parent: 2 - uid: 10685 components: - type: Transform - rot: -1.5707963267948966 rad pos: 56.5,-0.5 parent: 2 - uid: 10710 @@ -107389,13 +108185,11 @@ entities: - uid: 10742 components: - type: Transform - rot: 1.5707963267948966 rad pos: 4.5,19.5 parent: 2 - uid: 10743 components: - type: Transform - rot: 1.5707963267948966 rad pos: 4.5,20.5 parent: 2 - uid: 10745 @@ -107411,7 +108205,6 @@ entities: - uid: 10769 components: - type: Transform - rot: 3.141592653589793 rad pos: -42.5,-45.5 parent: 2 - uid: 10777 @@ -107427,7 +108220,6 @@ entities: - uid: 10780 components: - type: Transform - rot: 3.141592653589793 rad pos: -20.5,-52.5 parent: 2 - uid: 10783 @@ -107438,55 +108230,46 @@ entities: - uid: 10794 components: - type: Transform - rot: 3.141592653589793 rad pos: -21.5,-52.5 parent: 2 - uid: 10795 components: - type: Transform - rot: 3.141592653589793 rad pos: -22.5,-52.5 parent: 2 - uid: 10799 components: - type: Transform - rot: 3.141592653589793 rad pos: -23.5,-52.5 parent: 2 - uid: 10803 components: - type: Transform - rot: 3.141592653589793 rad pos: -35.5,-53.5 parent: 2 - uid: 10825 components: - type: Transform - rot: 3.141592653589793 rad pos: -48.5,-22.5 parent: 2 - uid: 10855 components: - type: Transform - rot: 3.141592653589793 rad pos: -48.5,-20.5 parent: 2 - uid: 10863 components: - type: Transform - rot: 3.141592653589793 rad pos: -45.5,-43.5 parent: 2 - uid: 10864 components: - type: Transform - rot: 3.141592653589793 rad pos: -45.5,-44.5 parent: 2 - uid: 10865 components: - type: Transform - rot: 3.141592653589793 rad pos: -45.5,-42.5 parent: 2 - uid: 10885 @@ -107497,7 +108280,6 @@ entities: - uid: 10890 components: - type: Transform - rot: 3.141592653589793 rad pos: -45.5,-45.5 parent: 2 - uid: 10982 @@ -107508,53 +108290,36 @@ entities: - uid: 11039 components: - type: Transform - rot: 3.141592653589793 rad pos: 16.5,36.5 parent: 2 - uid: 11041 components: - type: Transform - rot: 3.141592653589793 rad pos: 39.5,25.5 parent: 2 - uid: 11077 components: - type: Transform - rot: 3.141592653589793 rad pos: 39.5,24.5 parent: 2 - uid: 11092 components: - type: Transform - rot: 1.5707963267948966 rad pos: 61.5,6.5 parent: 2 - - uid: 11106 - components: - - type: Transform - pos: 27.5,-20.5 - parent: 2 - - uid: 11107 - components: - - type: Transform - pos: 27.5,-19.5 - parent: 2 - uid: 11120 components: - type: Transform - rot: 3.141592653589793 rad pos: 39.5,22.5 parent: 2 - uid: 11122 components: - type: Transform - rot: 1.5707963267948966 rad pos: -5.5,44.5 parent: 2 - uid: 11132 components: - type: Transform - rot: 1.5707963267948966 rad pos: -5.5,43.5 parent: 2 - uid: 11134 @@ -107565,85 +108330,71 @@ entities: - uid: 11136 components: - type: Transform - rot: 3.141592653589793 rad pos: 32.5,3.5 parent: 2 - uid: 11138 components: - type: Transform - rot: 3.141592653589793 rad pos: 57.5,2.5 parent: 2 - uid: 11139 components: - type: Transform - rot: 3.141592653589793 rad pos: 55.5,-0.5 parent: 2 - uid: 11140 components: - type: Transform - rot: 3.141592653589793 rad pos: 49.5,-0.5 parent: 2 - uid: 11143 components: - type: Transform - rot: 3.141592653589793 rad pos: -45.5,-41.5 parent: 2 - uid: 11144 components: - type: Transform - rot: 3.141592653589793 rad pos: 46.5,9.5 parent: 2 - uid: 11145 components: - type: Transform - rot: 3.141592653589793 rad pos: 57.5,9.5 parent: 2 - uid: 11146 components: - type: Transform - rot: 3.141592653589793 rad pos: 46.5,10.5 parent: 2 - uid: 11171 components: - type: Transform - rot: 1.5707963267948966 rad pos: -3.5,45.5 parent: 2 - uid: 11172 components: - type: Transform - rot: 1.5707963267948966 rad pos: -4.5,44.5 parent: 2 - uid: 11174 components: - type: Transform - rot: 1.5707963267948966 rad pos: -1.5,43.5 parent: 2 - uid: 11217 components: - type: Transform - rot: 1.5707963267948966 rad pos: -60.5,34.5 parent: 2 - uid: 11220 components: - type: Transform - rot: -1.5707963267948966 rad pos: -40.5,49.5 parent: 2 - uid: 11225 components: - type: Transform - rot: -1.5707963267948966 rad pos: -41.5,52.5 parent: 2 - uid: 11226 @@ -107664,13 +108415,11 @@ entities: - uid: 11255 components: - type: Transform - rot: 1.5707963267948966 rad pos: -59.5,34.5 parent: 2 - uid: 11256 components: - type: Transform - rot: 1.5707963267948966 rad pos: -61.5,34.5 parent: 2 - uid: 11268 @@ -107696,13 +108445,11 @@ entities: - uid: 11294 components: - type: Transform - rot: 3.141592653589793 rad pos: -49.5,-23.5 parent: 2 - uid: 11295 components: - type: Transform - rot: 3.141592653589793 rad pos: -48.5,-21.5 parent: 2 - uid: 11310 @@ -107713,19 +108460,16 @@ entities: - uid: 11312 components: - type: Transform - rot: -1.5707963267948966 rad pos: -32.5,-79.5 parent: 2 - uid: 11326 components: - type: Transform - rot: 3.141592653589793 rad pos: 16.5,34.5 parent: 2 - uid: 11327 components: - type: Transform - rot: 1.5707963267948966 rad pos: 4.5,18.5 parent: 2 - uid: 11329 @@ -107736,49 +108480,41 @@ entities: - uid: 11340 components: - type: Transform - rot: 3.141592653589793 rad pos: 16.5,37.5 parent: 2 - uid: 11342 components: - type: Transform - rot: 3.141592653589793 rad pos: 13.5,35.5 parent: 2 - uid: 11343 components: - type: Transform - rot: 3.141592653589793 rad pos: 13.5,32.5 parent: 2 - uid: 11344 components: - type: Transform - rot: 3.141592653589793 rad pos: 13.5,34.5 parent: 2 - uid: 11345 components: - type: Transform - rot: 3.141592653589793 rad pos: 39.5,21.5 parent: 2 - uid: 11346 components: - type: Transform - rot: 3.141592653589793 rad pos: 39.5,20.5 parent: 2 - uid: 11347 components: - type: Transform - rot: 3.141592653589793 rad pos: 13.5,36.5 parent: 2 - uid: 11349 components: - type: Transform - rot: 1.5707963267948966 rad pos: -2.5,45.5 parent: 2 - uid: 11352 @@ -107789,7 +108525,6 @@ entities: - uid: 11375 components: - type: Transform - rot: -1.5707963267948966 rad pos: -44.5,-29.5 parent: 2 - uid: 11385 @@ -107805,7 +108540,6 @@ entities: - uid: 11399 components: - type: Transform - rot: 3.141592653589793 rad pos: 13.5,37.5 parent: 2 - uid: 11439 @@ -107816,7 +108550,6 @@ entities: - uid: 11441 components: - type: Transform - rot: 3.141592653589793 rad pos: 13.5,38.5 parent: 2 - uid: 11480 @@ -107842,19 +108575,16 @@ entities: - uid: 11522 components: - type: Transform - rot: 3.141592653589793 rad pos: -38.5,-49.5 parent: 2 - uid: 11525 components: - type: Transform - rot: 3.141592653589793 rad pos: -39.5,-49.5 parent: 2 - uid: 11543 components: - type: Transform - rot: 3.141592653589793 rad pos: -18.5,-51.5 parent: 2 - uid: 11555 @@ -107880,9 +108610,13 @@ entities: - uid: 11629 components: - type: Transform - rot: 1.5707963267948966 rad pos: -63.5,31.5 parent: 2 + - uid: 11653 + components: + - type: Transform + pos: -57.5,23.5 + parent: 2 - uid: 11697 components: - type: Transform @@ -107891,42 +108625,56 @@ entities: - uid: 11703 components: - type: Transform - rot: 3.141592653589793 rad pos: 48.5,10.5 parent: 2 + - uid: 11725 + components: + - type: Transform + pos: -58.5,23.5 + parent: 2 - uid: 11740 components: - type: Transform pos: -41.5,-52.5 parent: 2 + - uid: 11747 + components: + - type: Transform + pos: -60.5,23.5 + parent: 2 + - uid: 11761 + components: + - type: Transform + pos: -60.5,19.5 + parent: 2 - uid: 11792 components: - type: Transform - rot: 1.5707963267948966 rad pos: -4.5,45.5 parent: 2 - uid: 11793 components: - type: Transform - rot: 3.141592653589793 rad pos: 42.5,17.5 parent: 2 - uid: 11794 components: - type: Transform - rot: 1.5707963267948966 rad pos: -55.5,38.5 parent: 2 - uid: 11810 components: - type: Transform - rot: 1.5707963267948966 rad pos: -1.5,44.5 parent: 2 + - uid: 11922 + components: + - type: Transform + pos: -59.5,23.5 + parent: 2 - uid: 11979 components: - type: Transform - rot: -1.5707963267948966 rad pos: -35.5,48.5 parent: 2 - uid: 12007 @@ -107937,19 +108685,16 @@ entities: - uid: 12009 components: - type: Transform - rot: 3.141592653589793 rad pos: 43.5,21.5 parent: 2 - uid: 12011 components: - type: Transform - rot: 3.141592653589793 rad pos: 38.5,29.5 parent: 2 - uid: 12057 components: - type: Transform - rot: 1.5707963267948966 rad pos: -59.5,30.5 parent: 2 - uid: 12131 @@ -107960,13 +108705,11 @@ entities: - uid: 12137 components: - type: Transform - rot: -1.5707963267948966 rad pos: -40.5,50.5 parent: 2 - uid: 12145 components: - type: Transform - rot: 3.141592653589793 rad pos: 46.5,27.5 parent: 2 - uid: 12197 @@ -107992,7 +108735,6 @@ entities: - uid: 12701 components: - type: Transform - rot: -1.5707963267948966 rad pos: -42.5,-29.5 parent: 2 - uid: 12724 @@ -108003,37 +108745,31 @@ entities: - uid: 12734 components: - type: Transform - rot: 3.141592653589793 rad pos: -25.5,-49.5 parent: 2 - uid: 12763 components: - type: Transform - rot: -1.5707963267948966 rad pos: -43.5,-29.5 parent: 2 - uid: 12780 components: - type: Transform - rot: 3.141592653589793 rad pos: 16.5,35.5 parent: 2 - uid: 12813 components: - type: Transform - rot: 3.141592653589793 rad pos: 16.5,38.5 parent: 2 - uid: 12818 components: - type: Transform - rot: 1.5707963267948966 rad pos: -1.5,45.5 parent: 2 - uid: 12942 components: - type: Transform - rot: 3.141592653589793 rad pos: 47.5,-0.5 parent: 2 - uid: 12962 @@ -108044,7 +108780,6 @@ entities: - uid: 13071 components: - type: Transform - rot: 3.141592653589793 rad pos: 37.5,10.5 parent: 2 - uid: 13074 @@ -108060,31 +108795,26 @@ entities: - uid: 13084 components: - type: Transform - rot: -1.5707963267948966 rad pos: -40.5,52.5 parent: 2 - uid: 13100 components: - type: Transform - rot: 3.141592653589793 rad pos: -23.5,-53.5 parent: 2 - uid: 13135 components: - type: Transform - rot: 3.141592653589793 rad pos: -24.5,-53.5 parent: 2 - uid: 13137 components: - type: Transform - rot: 3.141592653589793 rad pos: -33.5,-53.5 parent: 2 - uid: 13138 components: - type: Transform - rot: 3.141592653589793 rad pos: -34.5,-53.5 parent: 2 - uid: 13154 @@ -108095,37 +108825,31 @@ entities: - uid: 13156 components: - type: Transform - rot: 3.141592653589793 rad pos: -48.5,-23.5 parent: 2 - uid: 13160 components: - type: Transform - rot: 3.141592653589793 rad pos: -50.5,-23.5 parent: 2 - uid: 13166 components: - type: Transform - rot: 1.5707963267948966 rad pos: -62.5,34.5 parent: 2 - uid: 13167 components: - type: Transform - rot: 1.5707963267948966 rad pos: -63.5,34.5 parent: 2 - uid: 13257 components: - type: Transform - rot: 3.141592653589793 rad pos: 44.5,-0.5 parent: 2 - uid: 13313 components: - type: Transform - rot: 3.141592653589793 rad pos: -19.5,-51.5 parent: 2 - uid: 13314 @@ -108136,7 +108860,6 @@ entities: - uid: 13375 components: - type: Transform - rot: 3.141592653589793 rad pos: 13.5,42.5 parent: 2 - uid: 13377 @@ -108147,55 +108870,41 @@ entities: - uid: 13400 components: - type: Transform - rot: 1.5707963267948966 rad pos: -63.5,37.5 parent: 2 - - uid: 13461 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -63.5,32.5 - parent: 2 - uid: 13462 components: - type: Transform - rot: 1.5707963267948966 rad pos: -63.5,33.5 parent: 2 - uid: 13488 components: - type: Transform - rot: 3.141592653589793 rad pos: 53.5,-0.5 parent: 2 - uid: 13489 components: - type: Transform - rot: 3.141592653589793 rad pos: 54.5,-0.5 parent: 2 - uid: 13536 components: - type: Transform - rot: 3.141592653589793 rad pos: 16.5,43.5 parent: 2 - uid: 13583 components: - type: Transform - rot: -1.5707963267948966 rad pos: -34.5,-25.5 parent: 2 - uid: 13644 components: - type: Transform - rot: 3.141592653589793 rad pos: 57.5,8.5 parent: 2 - uid: 13676 components: - type: Transform - rot: 3.141592653589793 rad pos: 57.5,10.5 parent: 2 - uid: 13695 @@ -108211,13 +108920,11 @@ entities: - uid: 13701 components: - type: Transform - rot: 3.141592653589793 rad pos: -44.5,-45.5 parent: 2 - uid: 13732 components: - type: Transform - rot: 3.141592653589793 rad pos: -19.5,-52.5 parent: 2 - uid: 13736 @@ -108233,13 +108940,11 @@ entities: - uid: 14078 components: - type: Transform - rot: 1.5707963267948966 rad pos: -59.5,38.5 parent: 2 - uid: 14371 components: - type: Transform - rot: 3.141592653589793 rad pos: 46.5,21.5 parent: 2 - uid: 14386 @@ -108255,7 +108960,6 @@ entities: - uid: 14605 components: - type: Transform - rot: 3.141592653589793 rad pos: 56.5,0.5 parent: 2 - uid: 14606 @@ -108266,536 +108970,443 @@ entities: - uid: 14607 components: - type: Transform - rot: 3.141592653589793 rad pos: 35.5,13.5 parent: 2 - uid: 14609 components: - type: Transform - rot: 3.141592653589793 rad pos: 38.5,11.5 parent: 2 - uid: 14611 components: - type: Transform - rot: 3.141592653589793 rad pos: 38.5,4.5 parent: 2 - uid: 14615 components: - type: Transform - rot: 3.141592653589793 rad pos: 38.5,13.5 parent: 2 - uid: 14616 components: - type: Transform - rot: 3.141592653589793 rad pos: 39.5,2.5 parent: 2 - uid: 14617 components: - type: Transform - rot: 3.141592653589793 rad pos: 34.5,13.5 parent: 2 - uid: 14619 components: - type: Transform - rot: 3.141592653589793 rad pos: 38.5,2.5 parent: 2 - uid: 14620 components: - type: Transform - rot: 3.141592653589793 rad pos: 38.5,12.5 parent: 2 - uid: 14621 components: - type: Transform - rot: 3.141592653589793 rad pos: 38.5,10.5 parent: 2 - uid: 14625 components: - type: Transform - rot: 3.141592653589793 rad pos: 37.5,2.5 parent: 2 - uid: 14627 components: - type: Transform - rot: 3.141592653589793 rad pos: 39.5,7.5 parent: 2 - uid: 14629 components: - type: Transform - rot: 3.141592653589793 rad pos: 36.5,13.5 parent: 2 - uid: 14630 components: - type: Transform - rot: 3.141592653589793 rad pos: 39.5,5.5 parent: 2 - uid: 14632 components: - type: Transform - rot: 3.141592653589793 rad pos: 39.5,8.5 parent: 2 - uid: 14633 components: - type: Transform - rot: -1.5707963267948966 rad pos: 33.5,2.5 parent: 2 - uid: 14714 components: - type: Transform - rot: 3.141592653589793 rad pos: 39.5,9.5 parent: 2 - uid: 14720 components: - type: Transform - rot: 3.141592653589793 rad pos: 29.5,2.5 parent: 2 - uid: 14736 components: - type: Transform - rot: 3.141592653589793 rad pos: 42.5,18.5 parent: 2 - uid: 14774 components: - type: Transform - rot: 3.141592653589793 rad pos: 42.5,19.5 parent: 2 - uid: 14778 components: - type: Transform - rot: 1.5707963267948966 rad pos: -3.5,-34.5 parent: 2 - uid: 14779 components: - type: Transform - rot: 1.5707963267948966 rad pos: 4.5,-50.5 parent: 2 - uid: 14780 components: - type: Transform - rot: 1.5707963267948966 rad pos: -8.5,-41.5 parent: 2 - uid: 14781 components: - type: Transform - rot: 1.5707963267948966 rad pos: -2.5,-52.5 parent: 2 - uid: 14782 components: - type: Transform - rot: 1.5707963267948966 rad pos: -5.5,-52.5 parent: 2 - uid: 14783 components: - type: Transform - rot: 1.5707963267948966 rad pos: -5.5,-46.5 parent: 2 - uid: 14784 components: - type: Transform - rot: 1.5707963267948966 rad pos: 1.5,-54.5 parent: 2 - uid: 14785 components: - type: Transform - rot: 1.5707963267948966 rad pos: 3.5,-54.5 parent: 2 - uid: 14786 components: - type: Transform - rot: 1.5707963267948966 rad pos: 5.5,-50.5 parent: 2 - uid: 14787 components: - type: Transform - rot: 1.5707963267948966 rad pos: -4.5,-34.5 parent: 2 - uid: 14788 components: - type: Transform - rot: 1.5707963267948966 rad pos: 2.5,-44.5 parent: 2 - uid: 14789 components: - type: Transform - rot: 3.141592653589793 rad pos: -6.5,-50.5 parent: 2 - uid: 14790 components: - type: Transform - rot: -1.5707963267948966 rad pos: 4.5,-39.5 parent: 2 - uid: 14791 components: - type: Transform - rot: -1.5707963267948966 rad pos: -1.5,-34.5 parent: 2 - uid: 14792 components: - type: Transform - rot: 1.5707963267948966 rad pos: -9.5,-51.5 parent: 2 - uid: 14793 components: - type: Transform - rot: 1.5707963267948966 rad pos: 2.5,-52.5 parent: 2 - uid: 14794 components: - type: Transform - rot: 1.5707963267948966 rad pos: -3.5,-52.5 parent: 2 - uid: 14795 components: - type: Transform - rot: 1.5707963267948966 rad pos: -7.5,-41.5 parent: 2 - uid: 14796 components: - type: Transform - rot: 1.5707963267948966 rad pos: 4.5,-44.5 parent: 2 - uid: 14797 components: - type: Transform - rot: 1.5707963267948966 rad pos: 4.5,-42.5 parent: 2 - uid: 14798 components: - type: Transform - rot: 1.5707963267948966 rad pos: 5.5,-42.5 parent: 2 - uid: 14799 components: - type: Transform - rot: -1.5707963267948966 rad pos: -1.5,-36.5 parent: 2 - uid: 14800 components: - type: Transform - rot: 1.5707963267948966 rad pos: -2.5,-34.5 parent: 2 - uid: 14801 components: - type: Transform - rot: 1.5707963267948966 rad pos: 6.5,-42.5 parent: 2 - uid: 14802 components: - type: Transform - rot: 1.5707963267948966 rad pos: 7.5,-42.5 parent: 2 - uid: 14803 components: - type: Transform - rot: 1.5707963267948966 rad pos: 0.5,-53.5 parent: 2 - uid: 14804 components: - type: Transform - rot: 1.5707963267948966 rad pos: 2.5,-48.5 parent: 2 - uid: 14805 components: - type: Transform - rot: 1.5707963267948966 rad pos: 2.5,-40.5 parent: 2 - uid: 14806 components: - type: Transform - rot: 1.5707963267948966 rad pos: 6.5,-50.5 parent: 2 - uid: 14807 components: - type: Transform - rot: 3.141592653589793 rad pos: -5.5,-50.5 parent: 2 - uid: 14808 components: - type: Transform - rot: 1.5707963267948966 rad pos: 6.5,-52.5 parent: 2 - uid: 14809 components: - type: Transform - rot: 1.5707963267948966 rad pos: 4.5,-53.5 parent: 2 - uid: 14810 components: - type: Transform - rot: 1.5707963267948966 rad pos: 8.5,-52.5 parent: 2 - uid: 14811 components: - type: Transform - rot: 3.141592653589793 rad pos: -7.5,-50.5 parent: 2 - uid: 14812 components: - type: Transform - rot: 1.5707963267948966 rad pos: -7.5,-52.5 parent: 2 - uid: 14813 components: - type: Transform - rot: -1.5707963267948966 rad pos: -1.5,-35.5 parent: 2 - uid: 14814 components: - type: Transform - rot: 1.5707963267948966 rad pos: 0.5,-54.5 parent: 2 - uid: 14815 components: - type: Transform - rot: 1.5707963267948966 rad pos: 0.5,-52.5 parent: 2 - uid: 14816 components: - type: Transform - rot: 1.5707963267948966 rad pos: -4.5,-35.5 parent: 2 - uid: 14817 components: - type: Transform - rot: 1.5707963267948966 rad pos: -9.5,-52.5 parent: 2 - uid: 14818 components: - type: Transform - rot: 1.5707963267948966 rad pos: -8.5,-52.5 parent: 2 - uid: 14819 components: - type: Transform - rot: 1.5707963267948966 rad pos: 7.5,-52.5 parent: 2 - uid: 14820 components: - type: Transform - rot: 1.5707963267948966 rad pos: -5.5,-41.5 parent: 2 - uid: 14821 components: - type: Transform - rot: 3.141592653589793 rad pos: -9.5,-50.5 parent: 2 - uid: 14822 components: - type: Transform - rot: 1.5707963267948966 rad pos: 7.5,-48.5 parent: 2 - uid: 14823 components: - type: Transform - rot: 1.5707963267948966 rad pos: 7.5,-50.5 parent: 2 - uid: 14824 components: - type: Transform - rot: 1.5707963267948966 rad pos: -6.5,-41.5 parent: 2 - uid: 14825 components: - type: Transform - rot: 1.5707963267948966 rad pos: 6.5,-48.5 parent: 2 - uid: 14826 components: - type: Transform - rot: 1.5707963267948966 rad pos: 5.5,-46.5 parent: 2 - uid: 14827 components: - type: Transform - rot: 3.141592653589793 rad pos: 2.5,-39.5 parent: 2 - uid: 14828 components: - type: Transform - rot: 1.5707963267948966 rad pos: 8.5,-49.5 parent: 2 - uid: 14829 components: - type: Transform - rot: 1.5707963267948966 rad pos: 8.5,-51.5 parent: 2 - uid: 14830 components: - type: Transform - rot: 1.5707963267948966 rad pos: 8.5,-46.5 parent: 2 - uid: 14831 components: - type: Transform - rot: 1.5707963267948966 rad pos: 8.5,-48.5 parent: 2 - uid: 14832 components: - type: Transform - rot: 1.5707963267948966 rad pos: 5.5,-52.5 parent: 2 - uid: 14833 components: - type: Transform - rot: 1.5707963267948966 rad pos: 8.5,-50.5 parent: 2 - uid: 14834 components: - type: Transform - rot: 1.5707963267948966 rad pos: 8.5,-47.5 parent: 2 - uid: 14835 components: - type: Transform - rot: 1.5707963267948966 rad pos: -4.5,-52.5 parent: 2 - uid: 14836 components: - type: Transform - rot: 1.5707963267948966 rad pos: -6.5,-52.5 parent: 2 - uid: 14837 components: - type: Transform - rot: 1.5707963267948966 rad pos: -4.5,-41.5 parent: 2 - uid: 14838 components: - type: Transform - rot: 1.5707963267948966 rad pos: 4.5,-52.5 parent: 2 - uid: 14839 components: - type: Transform - rot: 1.5707963267948966 rad pos: 5.5,-48.5 parent: 2 - uid: 14840 components: - type: Transform - rot: 1.5707963267948966 rad pos: 6.5,-46.5 parent: 2 - uid: 14841 components: - type: Transform - rot: 3.141592653589793 rad pos: 3.5,-39.5 parent: 2 - uid: 14842 components: - type: Transform - rot: 1.5707963267948966 rad pos: -4.5,-36.5 parent: 2 - uid: 14843 components: - type: Transform - rot: 1.5707963267948966 rad pos: 6.5,-44.5 parent: 2 - uid: 14844 components: - type: Transform - rot: 1.5707963267948966 rad pos: 7.5,-44.5 parent: 2 - uid: 14845 components: - type: Transform - rot: 1.5707963267948966 rad pos: 5.5,-44.5 parent: 2 - uid: 14846 components: - type: Transform - rot: 1.5707963267948966 rad pos: 4.5,-54.5 parent: 2 - - uid: 14847 - components: - - type: Transform - pos: -30.5,-11.5 - parent: 2 - uid: 14848 components: - type: Transform @@ -108811,26 +109422,11 @@ entities: - type: Transform pos: -19.5,-9.5 parent: 2 - - uid: 14851 - components: - - type: Transform - pos: -32.5,-11.5 - parent: 2 - - uid: 14852 - components: - - type: Transform - pos: -33.5,-11.5 - parent: 2 - uid: 14853 components: - type: Transform pos: 15.5,-2.5 parent: 2 - - uid: 14854 - components: - - type: Transform - pos: -29.5,-12.5 - parent: 2 - uid: 14855 components: - type: Transform @@ -108891,11 +109487,6 @@ entities: - type: Transform pos: 16.5,-7.5 parent: 2 - - uid: 14867 - components: - - type: Transform - pos: -31.5,-11.5 - parent: 2 - uid: 14868 components: - type: Transform @@ -108936,11 +109527,6 @@ entities: - type: Transform pos: 0.5,-15.5 parent: 2 - - uid: 14876 - components: - - type: Transform - pos: -29.5,-15.5 - parent: 2 - uid: 14877 components: - type: Transform @@ -109031,16 +109617,6 @@ entities: - type: Transform pos: -32.5,-19.5 parent: 2 - - uid: 14895 - components: - - type: Transform - pos: -45.5,-7.5 - parent: 2 - - uid: 14896 - components: - - type: Transform - pos: -29.5,-11.5 - parent: 2 - uid: 14897 components: - type: Transform @@ -109161,11 +109737,6 @@ entities: - type: Transform pos: -30.5,-3.5 parent: 2 - - uid: 14922 - components: - - type: Transform - pos: -42.5,-16.5 - parent: 2 - uid: 14923 components: - type: Transform @@ -109201,11 +109772,6 @@ entities: - type: Transform pos: -0.5,-15.5 parent: 2 - - uid: 14930 - components: - - type: Transform - pos: -41.5,-16.5 - parent: 2 - uid: 14931 components: - type: Transform @@ -109286,21 +109852,6 @@ entities: - type: Transform pos: -19.5,-17.5 parent: 2 - - uid: 14947 - components: - - type: Transform - pos: -34.5,-4.5 - parent: 2 - - uid: 14948 - components: - - type: Transform - pos: -33.5,-14.5 - parent: 2 - - uid: 14949 - components: - - type: Transform - pos: -45.5,-6.5 - parent: 2 - uid: 14950 components: - type: Transform @@ -109346,11 +109897,6 @@ entities: - type: Transform pos: -33.5,-16.5 parent: 2 - - uid: 14959 - components: - - type: Transform - pos: -33.5,-15.5 - parent: 2 - uid: 14960 components: - type: Transform @@ -109361,46 +109907,21 @@ entities: - type: Transform pos: -38.5,-3.5 parent: 2 - - uid: 14962 - components: - - type: Transform - pos: -39.5,-3.5 - parent: 2 - uid: 14963 components: - type: Transform pos: -38.5,-19.5 parent: 2 - - uid: 14964 - components: - - type: Transform - pos: -34.5,-7.5 - parent: 2 - uid: 14966 components: - type: Transform pos: -39.5,-19.5 parent: 2 - - uid: 14967 - components: - - type: Transform - pos: -39.5,-7.5 - parent: 2 - - uid: 14968 - components: - - type: Transform - pos: -39.5,-6.5 - parent: 2 - uid: 14969 components: - type: Transform pos: -36.5,-19.5 parent: 2 - - uid: 14970 - components: - - type: Transform - pos: -39.5,-4.5 - parent: 2 - uid: 14971 components: - type: Transform @@ -109416,16 +109937,6 @@ entities: - type: Transform pos: -2.5,-14.5 parent: 2 - - uid: 14974 - components: - - type: Transform - pos: -43.5,-3.5 - parent: 2 - - uid: 14975 - components: - - type: Transform - pos: -43.5,-16.5 - parent: 2 - uid: 14977 components: - type: Transform @@ -109534,19 +110045,16 @@ entities: - uid: 15002 components: - type: Transform - rot: -1.5707963267948966 rad pos: -35.5,-21.5 parent: 2 - uid: 15003 components: - type: Transform - rot: 3.141592653589793 rad pos: 39.5,10.5 parent: 2 - uid: 15004 components: - type: Transform - rot: -1.5707963267948966 rad pos: -34.5,-22.5 parent: 2 - uid: 15005 @@ -109564,11 +110072,6 @@ entities: - type: Transform pos: -29.5,-19.5 parent: 2 - - uid: 15008 - components: - - type: Transform - pos: -38.5,-1.5 - parent: 2 - uid: 15009 components: - type: Transform @@ -109577,7 +110080,6 @@ entities: - uid: 15011 components: - type: Transform - rot: -1.5707963267948966 rad pos: -35.5,-22.5 parent: 2 - uid: 15012 @@ -109585,26 +110087,11 @@ entities: - type: Transform pos: -44.5,-3.5 parent: 2 - - uid: 15013 - components: - - type: Transform - pos: -44.5,-7.5 - parent: 2 - - uid: 15014 - components: - - type: Transform - pos: -43.5,-7.5 - parent: 2 - uid: 15015 components: - type: Transform pos: 2.5,-34.5 parent: 2 - - uid: 15016 - components: - - type: Transform - pos: -40.5,-7.5 - parent: 2 - uid: 15017 components: - type: Transform @@ -109620,16 +110107,6 @@ entities: - type: Transform pos: -44.5,-0.5 parent: 2 - - uid: 15020 - components: - - type: Transform - pos: -41.5,-10.5 - parent: 2 - - uid: 15021 - components: - - type: Transform - pos: -40.5,-10.5 - parent: 2 - uid: 15022 components: - type: Transform @@ -109673,7 +110150,6 @@ entities: - uid: 15031 components: - type: Transform - rot: 1.5707963267948966 rad pos: -1.5,-29.5 parent: 2 - uid: 15032 @@ -109721,26 +110197,11 @@ entities: - type: Transform pos: -45.5,-0.5 parent: 2 - - uid: 15041 - components: - - type: Transform - pos: -41.5,-13.5 - parent: 2 - uid: 15042 components: - type: Transform pos: -36.5,-16.5 parent: 2 - - uid: 15043 - components: - - type: Transform - pos: -42.5,-13.5 - parent: 2 - - uid: 15044 - components: - - type: Transform - pos: -44.5,-16.5 - parent: 2 - uid: 15046 components: - type: Transform @@ -109759,7 +110220,6 @@ entities: - uid: 15049 components: - type: Transform - rot: 3.141592653589793 rad pos: 42.5,20.5 parent: 2 - uid: 15050 @@ -109790,14 +110250,8 @@ entities: - uid: 15055 components: - type: Transform - rot: -1.5707963267948966 rad pos: -21.5,-35.5 parent: 2 - - uid: 15056 - components: - - type: Transform - pos: -43.5,-13.5 - parent: 2 - uid: 15057 components: - type: Transform @@ -109808,20 +110262,9 @@ entities: - type: Transform pos: 1.5,-34.5 parent: 2 - - uid: 15059 - components: - - type: Transform - pos: -42.5,-10.5 - parent: 2 - - uid: 15060 - components: - - type: Transform - pos: -43.5,-10.5 - parent: 2 - uid: 15061 components: - type: Transform - rot: 3.141592653589793 rad pos: 38.5,3.5 parent: 2 - uid: 15062 @@ -109837,19 +110280,16 @@ entities: - uid: 15064 components: - type: Transform - rot: 1.5707963267948966 rad pos: -32.5,-24.5 parent: 2 - uid: 15065 components: - type: Transform - rot: 1.5707963267948966 rad pos: -31.5,-24.5 parent: 2 - uid: 15067 components: - type: Transform - rot: 1.5707963267948966 rad pos: -52.5,-10.5 parent: 2 - uid: 15068 @@ -109900,13 +110340,11 @@ entities: - uid: 15079 components: - type: Transform - rot: 3.141592653589793 rad pos: 23.5,-27.5 parent: 2 - uid: 15080 components: - type: Transform - rot: 3.141592653589793 rad pos: 23.5,-26.5 parent: 2 - uid: 15085 @@ -109929,21 +110367,11 @@ entities: - type: Transform pos: -19.5,-20.5 parent: 2 - - uid: 15096 - components: - - type: Transform - pos: -44.5,-10.5 - parent: 2 - uid: 15097 components: - type: Transform pos: -23.5,-17.5 parent: 2 - - uid: 15098 - components: - - type: Transform - pos: -44.5,-14.5 - parent: 2 - uid: 15099 components: - type: Transform @@ -109957,24 +110385,8 @@ entities: - uid: 15101 components: - type: Transform - rot: -1.5707963267948966 rad pos: -22.5,-35.5 parent: 2 - - uid: 15102 - components: - - type: Transform - pos: -44.5,-12.5 - parent: 2 - - uid: 15103 - components: - - type: Transform - pos: -44.5,-13.5 - parent: 2 - - uid: 15104 - components: - - type: Transform - pos: -44.5,-15.5 - parent: 2 - uid: 15105 components: - type: Transform @@ -110028,13 +110440,11 @@ entities: - uid: 15115 components: - type: Transform - rot: -1.5707963267948966 rad pos: -8.5,-80.5 parent: 2 - uid: 15117 components: - type: Transform - rot: -1.5707963267948966 rad pos: -60.5,-2.5 parent: 2 - uid: 15118 @@ -110042,11 +110452,6 @@ entities: - type: Transform pos: 17.5,9.5 parent: 2 - - uid: 15120 - components: - - type: Transform - pos: -44.5,-11.5 - parent: 2 - uid: 15121 components: - type: Transform @@ -110115,7 +110520,6 @@ entities: - uid: 15134 components: - type: Transform - rot: -1.5707963267948966 rad pos: -56.5,-18.5 parent: 2 - uid: 15136 @@ -110126,7 +110530,6 @@ entities: - uid: 15137 components: - type: Transform - rot: 3.141592653589793 rad pos: -48.5,-18.5 parent: 2 - uid: 15138 @@ -110137,7 +110540,6 @@ entities: - uid: 15139 components: - type: Transform - rot: 3.141592653589793 rad pos: -48.5,-19.5 parent: 2 - uid: 15140 @@ -110148,43 +110550,36 @@ entities: - uid: 15141 components: - type: Transform - rot: 3.141592653589793 rad pos: -48.5,-17.5 parent: 2 - uid: 15142 components: - type: Transform - rot: 3.141592653589793 rad pos: -48.5,-16.5 parent: 2 - uid: 15143 components: - type: Transform - rot: 3.141592653589793 rad pos: -48.5,-15.5 parent: 2 - uid: 15144 components: - type: Transform - rot: 3.141592653589793 rad pos: -48.5,-14.5 parent: 2 - uid: 15145 components: - type: Transform - rot: 3.141592653589793 rad pos: -48.5,-13.5 parent: 2 - uid: 15146 components: - type: Transform - rot: 3.141592653589793 rad pos: -48.5,-12.5 parent: 2 - uid: 15147 components: - type: Transform - rot: 3.141592653589793 rad pos: -48.5,-11.5 parent: 2 - uid: 15148 @@ -110210,13 +110605,11 @@ entities: - uid: 15152 components: - type: Transform - rot: -1.5707963267948966 rad pos: -49.5,4.5 parent: 2 - uid: 15153 components: - type: Transform - rot: -1.5707963267948966 rad pos: -52.5,3.5 parent: 2 - uid: 15154 @@ -110227,13 +110620,11 @@ entities: - uid: 15155 components: - type: Transform - rot: 1.5707963267948966 rad pos: -52.5,-7.5 parent: 2 - uid: 15156 components: - type: Transform - rot: 1.5707963267948966 rad pos: -53.5,-10.5 parent: 2 - uid: 15157 @@ -110299,13 +110690,11 @@ entities: - uid: 15170 components: - type: Transform - rot: -1.5707963267948966 rad pos: -17.5,-26.5 parent: 2 - uid: 15171 components: - type: Transform - rot: 1.5707963267948966 rad pos: 7.5,-46.5 parent: 2 - uid: 15172 @@ -110321,7 +110710,6 @@ entities: - uid: 15174 components: - type: Transform - rot: -1.5707963267948966 rad pos: -24.5,-41.5 parent: 2 - uid: 15175 @@ -110402,7 +110790,6 @@ entities: - uid: 15191 components: - type: Transform - rot: -1.5707963267948966 rad pos: -24.5,-35.5 parent: 2 - uid: 15192 @@ -110443,55 +110830,46 @@ entities: - uid: 15199 components: - type: Transform - rot: 1.5707963267948966 rad pos: 4.5,-46.5 parent: 2 - uid: 15200 components: - type: Transform - rot: 3.141592653589793 rad pos: -39.5,-29.5 parent: 2 - uid: 15203 components: - type: Transform - rot: 3.141592653589793 rad pos: -28.5,-29.5 parent: 2 - uid: 15204 components: - type: Transform - rot: 3.141592653589793 rad pos: -29.5,-29.5 parent: 2 - uid: 15205 components: - type: Transform - rot: -1.5707963267948966 rad pos: -20.5,-41.5 parent: 2 - uid: 15206 components: - type: Transform - rot: -1.5707963267948966 rad pos: -21.5,-41.5 parent: 2 - uid: 15207 components: - type: Transform - rot: -1.5707963267948966 rad pos: -22.5,-41.5 parent: 2 - uid: 15208 components: - type: Transform - rot: -1.5707963267948966 rad pos: -20.5,-35.5 parent: 2 - uid: 15209 components: - type: Transform - rot: -1.5707963267948966 rad pos: -23.5,-45.5 parent: 2 - uid: 15210 @@ -110502,7 +110880,6 @@ entities: - uid: 15211 components: - type: Transform - rot: 3.141592653589793 rad pos: -25.5,-29.5 parent: 2 - uid: 15212 @@ -110513,25 +110890,21 @@ entities: - uid: 15213 components: - type: Transform - rot: -1.5707963267948966 rad pos: -27.5,-29.5 parent: 2 - uid: 15214 components: - type: Transform - rot: 3.141592653589793 rad pos: -24.5,-29.5 parent: 2 - uid: 15215 components: - type: Transform - rot: 3.141592653589793 rad pos: -24.5,-47.5 parent: 2 - uid: 15216 components: - type: Transform - rot: 3.141592653589793 rad pos: -23.5,-47.5 parent: 2 - uid: 15217 @@ -110542,7 +110915,6 @@ entities: - uid: 15218 components: - type: Transform - rot: 3.141592653589793 rad pos: -29.5,-47.5 parent: 2 - uid: 15219 @@ -110553,13 +110925,11 @@ entities: - uid: 15220 components: - type: Transform - rot: 3.141592653589793 rad pos: -33.5,-47.5 parent: 2 - uid: 15221 components: - type: Transform - rot: 3.141592653589793 rad pos: -34.5,-47.5 parent: 2 - uid: 15222 @@ -110570,25 +110940,21 @@ entities: - uid: 15223 components: - type: Transform - rot: -1.5707963267948966 rad pos: -23.5,-30.5 parent: 2 - uid: 15224 components: - type: Transform - rot: 3.141592653589793 rad pos: -23.5,-29.5 parent: 2 - uid: 15225 components: - type: Transform - rot: 3.141592653589793 rad pos: -38.5,-47.5 parent: 2 - uid: 15226 components: - type: Transform - rot: 3.141592653589793 rad pos: -39.5,-47.5 parent: 2 - uid: 15227 @@ -110684,13 +111050,11 @@ entities: - uid: 15258 components: - type: Transform - rot: 3.141592653589793 rad pos: -33.5,-29.5 parent: 2 - uid: 15260 components: - type: Transform - rot: 3.141592653589793 rad pos: -33.5,-28.5 parent: 2 - uid: 15261 @@ -110711,43 +111075,36 @@ entities: - uid: 15264 components: - type: Transform - rot: 1.5707963267948966 rad pos: -21.5,-48.5 parent: 2 - uid: 15265 components: - type: Transform - rot: -1.5707963267948966 rad pos: -13.5,-47.5 parent: 2 - uid: 15266 components: - type: Transform - rot: -1.5707963267948966 rad pos: -12.5,-47.5 parent: 2 - uid: 15267 components: - type: Transform - rot: -1.5707963267948966 rad pos: -9.5,-47.5 parent: 2 - uid: 15268 components: - type: Transform - rot: -1.5707963267948966 rad pos: -10.5,-47.5 parent: 2 - uid: 15269 components: - type: Transform - rot: -1.5707963267948966 rad pos: -11.5,-47.5 parent: 2 - uid: 15270 components: - type: Transform - rot: 1.5707963267948966 rad pos: 4.5,-48.5 parent: 2 - uid: 15271 @@ -110763,7 +111120,6 @@ entities: - uid: 15273 components: - type: Transform - rot: 1.5707963267948966 rad pos: -20.5,-48.5 parent: 2 - uid: 15274 @@ -110774,7 +111130,6 @@ entities: - uid: 15275 components: - type: Transform - rot: -1.5707963267948966 rad pos: -23.5,-28.5 parent: 2 - uid: 15276 @@ -110790,13 +111145,11 @@ entities: - uid: 15278 components: - type: Transform - rot: 3.141592653589793 rad pos: -34.5,-29.5 parent: 2 - uid: 15279 components: - type: Transform - rot: -1.5707963267948966 rad pos: -26.5,-29.5 parent: 2 - uid: 15280 @@ -110822,7 +111175,6 @@ entities: - uid: 15284 components: - type: Transform - rot: 3.141592653589793 rad pos: -53.5,-15.5 parent: 2 - uid: 15285 @@ -110858,13 +111210,11 @@ entities: - uid: 15291 components: - type: Transform - rot: 1.5707963267948966 rad pos: -51.5,-10.5 parent: 2 - uid: 15292 components: - type: Transform - rot: 1.5707963267948966 rad pos: -51.5,-7.5 parent: 2 - uid: 15293 @@ -110880,97 +111230,81 @@ entities: - uid: 15295 components: - type: Transform - rot: 1.5707963267948966 rad pos: -53.5,-7.5 parent: 2 - uid: 15296 components: - type: Transform - rot: 1.5707963267948966 rad pos: -53.5,-5.5 parent: 2 - uid: 15297 components: - type: Transform - rot: 1.5707963267948966 rad pos: -53.5,-1.5 parent: 2 - uid: 15298 components: - type: Transform - rot: -1.5707963267948966 rad pos: -52.5,4.5 parent: 2 - uid: 15299 components: - type: Transform - rot: -1.5707963267948966 rad pos: -57.5,-18.5 parent: 2 - uid: 15300 components: - type: Transform - rot: -1.5707963267948966 rad pos: -60.5,-17.5 parent: 2 - uid: 15301 components: - type: Transform - rot: 3.141592653589793 rad pos: -59.5,-15.5 parent: 2 - uid: 15302 components: - type: Transform - rot: 3.141592653589793 rad pos: -54.5,-17.5 parent: 2 - uid: 15303 components: - type: Transform - rot: 3.141592653589793 rad pos: -57.5,-16.5 parent: 2 - uid: 15304 components: - type: Transform - rot: -1.5707963267948966 rad pos: -60.5,-18.5 parent: 2 - uid: 15305 components: - type: Transform - rot: -1.5707963267948966 rad pos: -49.5,-11.5 parent: 2 - uid: 15306 components: - type: Transform - rot: -1.5707963267948966 rad pos: -59.5,-18.5 parent: 2 - uid: 15307 components: - type: Transform - rot: -1.5707963267948966 rad pos: -51.5,-18.5 parent: 2 - uid: 15308 components: - type: Transform - rot: -1.5707963267948966 rad pos: -50.5,-11.5 parent: 2 - uid: 15309 components: - type: Transform - rot: -1.5707963267948966 rad pos: -54.5,-18.5 parent: 2 - uid: 15310 components: - type: Transform - rot: 3.141592653589793 rad pos: -53.5,-18.5 parent: 2 - uid: 15311 @@ -111016,7 +111350,6 @@ entities: - uid: 15319 components: - type: Transform - rot: -1.5707963267948966 rad pos: -59.5,-3.5 parent: 2 - uid: 15320 @@ -111047,25 +111380,21 @@ entities: - uid: 15326 components: - type: Transform - rot: -1.5707963267948966 rad pos: -59.5,-2.5 parent: 2 - uid: 15327 components: - type: Transform - rot: -1.5707963267948966 rad pos: -60.5,3.5 parent: 2 - uid: 15328 components: - type: Transform - rot: -1.5707963267948966 rad pos: -56.5,3.5 parent: 2 - uid: 15330 components: - type: Transform - rot: -1.5707963267948966 rad pos: -59.5,3.5 parent: 2 - uid: 15331 @@ -111106,19 +111435,16 @@ entities: - uid: 15338 components: - type: Transform - rot: -1.5707963267948966 rad pos: -48.5,3.5 parent: 2 - uid: 15339 components: - type: Transform - rot: 1.5707963267948966 rad pos: -50.5,2.5 parent: 2 - uid: 15340 components: - type: Transform - rot: 1.5707963267948966 rad pos: -49.5,2.5 parent: 2 - uid: 15341 @@ -111134,25 +111460,21 @@ entities: - uid: 15343 components: - type: Transform - rot: 1.5707963267948966 rad pos: 41.5,-12.5 parent: 2 - uid: 15344 components: - type: Transform - rot: 1.5707963267948966 rad pos: 41.5,-4.5 parent: 2 - uid: 15345 components: - type: Transform - rot: -1.5707963267948966 rad pos: -51.5,4.5 parent: 2 - uid: 15346 components: - type: Transform - rot: -1.5707963267948966 rad pos: -57.5,-10.5 parent: 2 - uid: 15347 @@ -111163,277 +111485,231 @@ entities: - uid: 15348 components: - type: Transform - rot: -1.5707963267948966 rad pos: -50.5,4.5 parent: 2 - uid: 15349 components: - type: Transform - rot: -1.5707963267948966 rad pos: -48.5,4.5 parent: 2 - uid: 15350 components: - type: Transform - rot: 3.141592653589793 rad pos: -52.5,2.5 parent: 2 - uid: 15351 components: - type: Transform - rot: -1.5707963267948966 rad pos: -57.5,-4.5 parent: 2 - uid: 15352 components: - type: Transform - rot: -1.5707963267948966 rad pos: -57.5,-5.5 parent: 2 - uid: 15353 components: - type: Transform - rot: -1.5707963267948966 rad pos: -57.5,-9.5 parent: 2 - uid: 15354 components: - type: Transform - rot: 3.141592653589793 rad pos: -57.5,-11.5 parent: 2 - uid: 15355 components: - type: Transform - rot: -1.5707963267948966 rad pos: -60.5,-12.5 parent: 2 - uid: 15356 components: - type: Transform - rot: -1.5707963267948966 rad pos: -50.5,-18.5 parent: 2 - uid: 15357 components: - type: Transform - rot: -1.5707963267948966 rad pos: -60.5,-13.5 parent: 2 - uid: 15358 components: - type: Transform - rot: -1.5707963267948966 rad pos: -60.5,-14.5 parent: 2 - uid: 15359 components: - type: Transform - rot: -1.5707963267948966 rad pos: -60.5,-15.5 parent: 2 - uid: 15360 components: - type: Transform - rot: -1.5707963267948966 rad pos: -60.5,-16.5 parent: 2 - uid: 15361 components: - type: Transform - rot: -1.5707963267948966 rad pos: -51.5,44.5 parent: 2 - uid: 15362 components: - type: Transform - rot: 3.141592653589793 rad pos: -51.5,-17.5 parent: 2 - uid: 15363 components: - type: Transform - rot: 3.141592653589793 rad pos: -54.5,-16.5 parent: 2 - uid: 15364 components: - type: Transform - rot: 3.141592653589793 rad pos: -51.5,-16.5 parent: 2 - uid: 15365 components: - type: Transform - rot: 3.141592653589793 rad pos: -50.5,-15.5 parent: 2 - uid: 15366 components: - type: Transform - rot: 3.141592653589793 rad pos: -54.5,-15.5 parent: 2 - uid: 15367 components: - type: Transform - rot: 3.141592653589793 rad pos: -57.5,-15.5 parent: 2 - uid: 15368 components: - type: Transform - rot: 3.141592653589793 rad pos: -56.5,-15.5 parent: 2 - uid: 15369 components: - type: Transform - rot: 3.141592653589793 rad pos: -57.5,-17.5 parent: 2 - uid: 15370 components: - type: Transform - rot: -1.5707963267948966 rad pos: -61.5,3.5 parent: 2 - uid: 15371 components: - type: Transform - rot: -1.5707963267948966 rad pos: -61.5,2.5 parent: 2 - uid: 15372 components: - type: Transform - rot: -1.5707963267948966 rad pos: -61.5,1.5 parent: 2 - uid: 15373 components: - type: Transform - rot: -1.5707963267948966 rad pos: -61.5,0.5 parent: 2 - uid: 15374 components: - type: Transform - rot: -1.5707963267948966 rad pos: -61.5,-2.5 parent: 2 - uid: 15375 components: - type: Transform - rot: 3.141592653589793 rad pos: -57.5,-12.5 parent: 2 - uid: 15376 components: - type: Transform - rot: 3.141592653589793 rad pos: -57.5,-13.5 parent: 2 - uid: 15377 components: - type: Transform - rot: -1.5707963267948966 rad pos: -59.5,-13.5 parent: 2 - uid: 15378 components: - type: Transform - rot: 1.5707963267948966 rad pos: 43.5,-20.5 parent: 2 - uid: 15379 components: - type: Transform - rot: 1.5707963267948966 rad pos: 42.5,-20.5 parent: 2 - uid: 15380 components: - type: Transform - rot: 1.5707963267948966 rad pos: 41.5,-20.5 parent: 2 - uid: 15381 components: - type: Transform - rot: 1.5707963267948966 rad pos: 43.5,-16.5 parent: 2 - uid: 15382 components: - type: Transform - rot: 1.5707963267948966 rad pos: 42.5,-16.5 parent: 2 - uid: 15383 components: - type: Transform - rot: 1.5707963267948966 rad pos: 41.5,-16.5 parent: 2 - uid: 15384 components: - type: Transform - rot: 1.5707963267948966 rad pos: 43.5,-12.5 parent: 2 - uid: 15385 components: - type: Transform - rot: 1.5707963267948966 rad pos: 42.5,-12.5 parent: 2 - uid: 15386 components: - type: Transform - rot: 1.5707963267948966 rad pos: 43.5,-4.5 parent: 2 - uid: 15387 components: - type: Transform - rot: 1.5707963267948966 rad pos: 43.5,-8.5 parent: 2 - uid: 15388 components: - type: Transform - rot: 1.5707963267948966 rad pos: 42.5,-8.5 parent: 2 - uid: 15389 components: - type: Transform - rot: 1.5707963267948966 rad pos: 41.5,-8.5 parent: 2 - uid: 15390 components: - type: Transform - rot: 1.5707963267948966 rad pos: 42.5,-4.5 parent: 2 - uid: 15391 components: - type: Transform - rot: 3.141592653589793 rad pos: 39.5,4.5 parent: 2 - uid: 15392 components: - type: Transform - rot: 3.141592653589793 rad pos: 36.5,2.5 parent: 2 - uid: 15393 components: - type: Transform - rot: 3.141592653589793 rad pos: 37.5,13.5 parent: 2 - uid: 15394 @@ -111444,7 +111720,6 @@ entities: - uid: 15396 components: - type: Transform - rot: 3.141592653589793 rad pos: 17.5,-35.5 parent: 2 - uid: 15397 @@ -111455,7 +111730,6 @@ entities: - uid: 15398 components: - type: Transform - rot: 3.141592653589793 rad pos: 17.5,-33.5 parent: 2 - uid: 15399 @@ -111478,12 +111752,6 @@ entities: - type: Transform pos: 39.5,-23.5 parent: 2 - - uid: 15403 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -34.5,-5.5 - parent: 2 - uid: 15404 components: - type: Transform @@ -111572,7 +111840,6 @@ entities: - uid: 15434 components: - type: Transform - rot: -1.5707963267948966 rad pos: -7.5,-80.5 parent: 2 - uid: 15435 @@ -111888,13 +112155,11 @@ entities: - uid: 15497 components: - type: Transform - rot: 3.141592653589793 rad pos: 16.5,32.5 parent: 2 - uid: 15498 components: - type: Transform - rot: 3.141592653589793 rad pos: 13.5,43.5 parent: 2 - uid: 15499 @@ -112425,55 +112690,46 @@ entities: - uid: 15604 components: - type: Transform - rot: -1.5707963267948966 rad pos: -9.5,-76.5 parent: 2 - uid: 15605 components: - type: Transform - rot: -1.5707963267948966 rad pos: -6.5,-75.5 parent: 2 - uid: 15606 components: - type: Transform - rot: -1.5707963267948966 rad pos: -6.5,-77.5 parent: 2 - uid: 15607 components: - type: Transform - rot: -1.5707963267948966 rad pos: -8.5,-77.5 parent: 2 - uid: 15608 components: - type: Transform - rot: -1.5707963267948966 rad pos: -9.5,-77.5 parent: 2 - uid: 15609 components: - type: Transform - rot: -1.5707963267948966 rad pos: -9.5,-75.5 parent: 2 - uid: 15610 components: - type: Transform - rot: -1.5707963267948966 rad pos: -8.5,-75.5 parent: 2 - uid: 15613 components: - type: Transform - rot: 3.141592653589793 rad pos: -35.5,-25.5 parent: 2 - uid: 15614 components: - type: Transform - rot: 3.141592653589793 rad pos: -35.5,-24.5 parent: 2 - uid: 15615 @@ -112484,25 +112740,21 @@ entities: - uid: 15616 components: - type: Transform - rot: 3.141592653589793 rad pos: -24.5,-49.5 parent: 2 - uid: 15617 components: - type: Transform - rot: -1.5707963267948966 rad pos: -26.5,0.5 parent: 2 - uid: 15618 components: - type: Transform - rot: -1.5707963267948966 rad pos: -26.5,3.5 parent: 2 - uid: 15619 components: - type: Transform - rot: -1.5707963267948966 rad pos: -26.5,4.5 parent: 2 - uid: 15620 @@ -112548,7 +112800,6 @@ entities: - uid: 15630 components: - type: Transform - rot: -1.5707963267948966 rad pos: -27.5,4.5 parent: 2 - uid: 15631 @@ -112579,7 +112830,6 @@ entities: - uid: 15636 components: - type: Transform - rot: -1.5707963267948966 rad pos: -29.5,4.5 parent: 2 - uid: 15637 @@ -112595,13 +112845,11 @@ entities: - uid: 15639 components: - type: Transform - rot: -1.5707963267948966 rad pos: -29.5,0.5 parent: 2 - uid: 15640 components: - type: Transform - rot: -1.5707963267948966 rad pos: -27.5,0.5 parent: 2 - uid: 15641 @@ -112652,13 +112900,11 @@ entities: - uid: 15651 components: - type: Transform - rot: 1.5707963267948966 rad pos: 11.5,23.5 parent: 2 - uid: 15652 components: - type: Transform - rot: -1.5707963267948966 rad pos: -54.5,49.5 parent: 2 - uid: 15653 @@ -112674,7 +112920,6 @@ entities: - uid: 15655 components: - type: Transform - rot: -1.5707963267948966 rad pos: 12.5,-36.5 parent: 2 - uid: 15656 @@ -112700,7 +112945,6 @@ entities: - uid: 15660 components: - type: Transform - rot: 1.5707963267948966 rad pos: -30.5,-24.5 parent: 2 - uid: 15661 @@ -112741,7 +112985,6 @@ entities: - uid: 15669 components: - type: Transform - rot: 1.5707963267948966 rad pos: 22.5,-23.5 parent: 2 - uid: 15670 @@ -112947,15 +113190,8 @@ entities: - uid: 15714 components: - type: Transform - rot: 1.5707963267948966 rad pos: -63.5,35.5 parent: 2 - - uid: 15715 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -63.5,36.5 - parent: 2 - uid: 15716 components: - type: Transform @@ -113074,7 +113310,6 @@ entities: - uid: 15739 components: - type: Transform - rot: -1.5707963267948966 rad pos: -13.5,-82.5 parent: 2 - uid: 15740 @@ -113100,7 +113335,6 @@ entities: - uid: 15744 components: - type: Transform - rot: -1.5707963267948966 rad pos: 22.5,30.5 parent: 2 - uid: 15745 @@ -113121,13 +113355,11 @@ entities: - uid: 15759 components: - type: Transform - rot: 3.141592653589793 rad pos: -35.5,-23.5 parent: 2 - uid: 15762 components: - type: Transform - rot: -1.5707963267948966 rad pos: -48.5,38.5 parent: 2 - uid: 15764 @@ -113215,11 +113447,6 @@ entities: - type: Transform pos: -2.5,31.5 parent: 2 - - uid: 15782 - components: - - type: Transform - pos: -53.5,15.5 - parent: 2 - uid: 15783 components: - type: Transform @@ -113303,7 +113530,6 @@ entities: - uid: 15803 components: - type: Transform - rot: 3.141592653589793 rad pos: -11.5,40.5 parent: 2 - uid: 15804 @@ -113509,7 +113735,6 @@ entities: - uid: 15844 components: - type: Transform - rot: 3.141592653589793 rad pos: -10.5,40.5 parent: 2 - uid: 15845 @@ -113520,13 +113745,11 @@ entities: - uid: 15846 components: - type: Transform - rot: 3.141592653589793 rad pos: -9.5,40.5 parent: 2 - uid: 15847 components: - type: Transform - rot: 3.141592653589793 rad pos: -8.5,40.5 parent: 2 - uid: 15848 @@ -113657,7 +113880,6 @@ entities: - uid: 15876 components: - type: Transform - rot: -1.5707963267948966 rad pos: -53.5,49.5 parent: 2 - uid: 15877 @@ -113720,21 +113942,6 @@ entities: - type: Transform pos: 8.5,-17.5 parent: 2 - - uid: 15894 - components: - - type: Transform - pos: -53.5,11.5 - parent: 2 - - uid: 15895 - components: - - type: Transform - pos: -54.5,19.5 - parent: 2 - - uid: 15896 - components: - - type: Transform - pos: -52.5,11.5 - parent: 2 - uid: 15900 components: - type: Transform @@ -113753,7 +113960,6 @@ entities: - uid: 15903 components: - type: Transform - rot: -1.5707963267948966 rad pos: -53.5,44.5 parent: 2 - uid: 15904 @@ -113774,13 +113980,11 @@ entities: - uid: 15910 components: - type: Transform - rot: -1.5707963267948966 rad pos: -37.5,40.5 parent: 2 - uid: 15911 components: - type: Transform - rot: -1.5707963267948966 rad pos: -37.5,39.5 parent: 2 - uid: 15912 @@ -113831,7 +114035,6 @@ entities: - uid: 15922 components: - type: Transform - rot: -1.5707963267948966 rad pos: -34.5,45.5 parent: 2 - uid: 15923 @@ -113877,7 +114080,6 @@ entities: - uid: 15931 components: - type: Transform - rot: -1.5707963267948966 rad pos: -34.5,46.5 parent: 2 - uid: 15932 @@ -113895,11 +114097,6 @@ entities: - type: Transform pos: -48.5,42.5 parent: 2 - - uid: 15935 - components: - - type: Transform - pos: -49.5,42.5 - parent: 2 - uid: 15936 components: - type: Transform @@ -113943,7 +114140,6 @@ entities: - uid: 15948 components: - type: Transform - rot: -1.5707963267948966 rad pos: -46.5,48.5 parent: 2 - uid: 15950 @@ -113964,25 +114160,21 @@ entities: - uid: 15953 components: - type: Transform - rot: -1.5707963267948966 rad pos: -52.5,51.5 parent: 2 - uid: 15954 components: - type: Transform - rot: -1.5707963267948966 rad pos: -47.5,48.5 parent: 2 - uid: 15955 components: - type: Transform - rot: -1.5707963267948966 rad pos: -47.5,45.5 parent: 2 - uid: 15956 components: - type: Transform - rot: -1.5707963267948966 rad pos: -41.5,48.5 parent: 2 - uid: 15957 @@ -113998,7 +114190,6 @@ entities: - uid: 15960 components: - type: Transform - rot: -1.5707963267948966 rad pos: -53.5,47.5 parent: 2 - uid: 15961 @@ -114009,13 +114200,11 @@ entities: - uid: 15962 components: - type: Transform - rot: -1.5707963267948966 rad pos: -49.5,44.5 parent: 2 - uid: 15963 components: - type: Transform - rot: -1.5707963267948966 rad pos: -49.5,51.5 parent: 2 - uid: 15965 @@ -114036,7 +114225,6 @@ entities: - uid: 15968 components: - type: Transform - rot: -1.5707963267948966 rad pos: 1.5,17.5 parent: 2 - uid: 15970 @@ -114047,7 +114235,6 @@ entities: - uid: 15971 components: - type: Transform - rot: -1.5707963267948966 rad pos: -53.5,51.5 parent: 2 - uid: 15972 @@ -114063,13 +114250,11 @@ entities: - uid: 15974 components: - type: Transform - rot: -1.5707963267948966 rad pos: -48.5,51.5 parent: 2 - uid: 15975 components: - type: Transform - rot: -1.5707963267948966 rad pos: -54.5,47.5 parent: 2 - uid: 15976 @@ -114080,19 +114265,16 @@ entities: - uid: 15977 components: - type: Transform - rot: -1.5707963267948966 rad pos: -43.5,48.5 parent: 2 - uid: 15978 components: - type: Transform - rot: -1.5707963267948966 rad pos: -50.5,51.5 parent: 2 - uid: 15979 components: - type: Transform - rot: -1.5707963267948966 rad pos: -51.5,51.5 parent: 2 - uid: 15980 @@ -114103,67 +114285,56 @@ entities: - uid: 15981 components: - type: Transform - rot: -1.5707963267948966 rad pos: -48.5,44.5 parent: 2 - uid: 15982 components: - type: Transform - rot: -1.5707963267948966 rad pos: -53.5,50.5 parent: 2 - uid: 15983 components: - type: Transform - rot: -1.5707963267948966 rad pos: -50.5,44.5 parent: 2 - uid: 15984 components: - type: Transform - rot: -1.5707963267948966 rad pos: -47.5,51.5 parent: 2 - uid: 15985 components: - type: Transform - rot: -1.5707963267948966 rad pos: -53.5,46.5 parent: 2 - uid: 15986 components: - type: Transform - rot: -1.5707963267948966 rad pos: -48.5,45.5 parent: 2 - uid: 15987 components: - type: Transform - rot: -1.5707963267948966 rad pos: -48.5,43.5 parent: 2 - uid: 15988 components: - type: Transform - rot: -1.5707963267948966 rad pos: -47.5,49.5 parent: 2 - uid: 15989 components: - type: Transform - rot: -1.5707963267948966 rad pos: -47.5,50.5 parent: 2 - uid: 15990 components: - type: Transform - rot: -1.5707963267948966 rad pos: -52.5,44.5 parent: 2 - uid: 15991 components: - type: Transform - rot: -1.5707963267948966 rad pos: -53.5,45.5 parent: 2 - uid: 15995 @@ -114184,7 +114355,6 @@ entities: - uid: 16000 components: - type: Transform - rot: -1.5707963267948966 rad pos: -55.5,47.5 parent: 2 - uid: 16001 @@ -114255,13 +114425,11 @@ entities: - uid: 16014 components: - type: Transform - rot: 3.141592653589793 rad pos: 23.5,-35.5 parent: 2 - uid: 16015 components: - type: Transform - rot: 3.141592653589793 rad pos: 23.5,-34.5 parent: 2 - uid: 16016 @@ -114277,7 +114445,6 @@ entities: - uid: 16019 components: - type: Transform - rot: 3.141592653589793 rad pos: -14.5,-49.5 parent: 2 - uid: 16020 @@ -114288,7 +114455,6 @@ entities: - uid: 16021 components: - type: Transform - rot: -1.5707963267948966 rad pos: -55.5,49.5 parent: 2 - uid: 16022 @@ -114311,12 +114477,6 @@ entities: - type: Transform pos: -6.5,-14.5 parent: 2 - - uid: 16028 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -34.5,-6.5 - parent: 2 - uid: 16029 components: - type: Transform @@ -114347,11 +114507,6 @@ entities: - type: Transform pos: 12.5,-40.5 parent: 2 - - uid: 16036 - components: - - type: Transform - pos: -38.5,-7.5 - parent: 2 - uid: 16037 components: - type: Transform @@ -114607,11 +114762,6 @@ entities: - type: Transform pos: 24.5,-17.5 parent: 2 - - uid: 16091 - components: - - type: Transform - pos: -44.5,-17.5 - parent: 2 - uid: 16092 components: - type: Transform @@ -114632,11 +114782,6 @@ entities: - type: Transform pos: -15.5,-20.5 parent: 2 - - uid: 16096 - components: - - type: Transform - pos: 27.5,-21.5 - parent: 2 - uid: 16097 components: - type: Transform @@ -114665,7 +114810,6 @@ entities: - uid: 16103 components: - type: Transform - rot: 1.5707963267948966 rad pos: -0.5,-34.5 parent: 2 - uid: 16107 @@ -114701,7 +114845,6 @@ entities: - uid: 16294 components: - type: Transform - rot: 3.141592653589793 rad pos: -33.5,-1.5 parent: 2 - uid: 16309 @@ -114712,85 +114855,71 @@ entities: - uid: 16329 components: - type: Transform - rot: 3.141592653589793 rad pos: -29.5,-0.5 parent: 2 - uid: 16347 components: - type: Transform - rot: 3.141592653589793 rad pos: -34.5,3.5 parent: 2 - uid: 16367 components: - type: Transform - rot: 3.141592653589793 rad pos: -32.5,-1.5 parent: 2 - uid: 16368 components: - type: Transform - rot: 3.141592653589793 rad pos: -34.5,2.5 parent: 2 - uid: 16369 components: - type: Transform - rot: 3.141592653589793 rad pos: -34.5,1.5 parent: 2 - uid: 16370 components: - type: Transform - rot: 3.141592653589793 rad pos: -34.5,0.5 parent: 2 - uid: 16371 components: - type: Transform - rot: 3.141592653589793 rad pos: -29.5,-1.5 parent: 2 - uid: 16372 components: - type: Transform - rot: 3.141592653589793 rad pos: -30.5,-1.5 parent: 2 - uid: 16373 components: - type: Transform - rot: 3.141592653589793 rad pos: -34.5,4.5 parent: 2 - uid: 16374 components: - type: Transform - rot: 3.141592653589793 rad pos: -34.5,-1.5 parent: 2 - uid: 16551 components: - type: Transform - rot: 3.141592653589793 rad pos: 29.5,7.5 parent: 2 - uid: 16553 components: - type: Transform - rot: 3.141592653589793 rad pos: 29.5,5.5 parent: 2 - uid: 16555 components: - type: Transform - rot: 3.141592653589793 rad pos: 29.5,6.5 parent: 2 - uid: 16585 components: - type: Transform - rot: 3.141592653589793 rad pos: 29.5,4.5 parent: 2 - uid: 16587 @@ -114811,25 +114940,21 @@ entities: - uid: 16591 components: - type: Transform - rot: 3.141592653589793 rad pos: 29.5,3.5 parent: 2 - uid: 16593 components: - type: Transform - rot: 3.141592653589793 rad pos: 29.5,10.5 parent: 2 - uid: 16596 components: - type: Transform - rot: 3.141592653589793 rad pos: 29.5,9.5 parent: 2 - uid: 16598 components: - type: Transform - rot: 3.141592653589793 rad pos: 29.5,8.5 parent: 2 - uid: 16611 @@ -114855,7 +114980,6 @@ entities: - uid: 16628 components: - type: Transform - rot: 3.141592653589793 rad pos: -34.5,-0.5 parent: 2 - uid: 16629 @@ -114896,7 +115020,6 @@ entities: - uid: 16649 components: - type: Transform - rot: 1.5707963267948966 rad pos: 8.5,28.5 parent: 2 - uid: 16650 @@ -114922,7 +115045,6 @@ entities: - uid: 16654 components: - type: Transform - rot: 3.141592653589793 rad pos: 57.5,0.5 parent: 2 - uid: 16655 @@ -114933,31 +115055,26 @@ entities: - uid: 16657 components: - type: Transform - rot: 3.141592653589793 rad pos: 47.5,0.5 parent: 2 - uid: 16658 components: - type: Transform - rot: 3.141592653589793 rad pos: 29.5,12.5 parent: 2 - uid: 16659 components: - type: Transform - rot: 3.141592653589793 rad pos: 29.5,14.5 parent: 2 - uid: 16660 components: - type: Transform - rot: 3.141592653589793 rad pos: 29.5,13.5 parent: 2 - uid: 16661 components: - type: Transform - rot: 3.141592653589793 rad pos: 29.5,11.5 parent: 2 - uid: 16662 @@ -114968,25 +115085,21 @@ entities: - uid: 16664 components: - type: Transform - rot: 3.141592653589793 rad pos: 30.5,14.5 parent: 2 - uid: 16669 components: - type: Transform - rot: 3.141592653589793 rad pos: 34.5,14.5 parent: 2 - uid: 16670 components: - type: Transform - rot: 3.141592653589793 rad pos: 32.5,14.5 parent: 2 - uid: 16671 components: - type: Transform - rot: 3.141592653589793 rad pos: 31.5,14.5 parent: 2 - uid: 16673 @@ -114994,34 +115107,24 @@ entities: - type: Transform pos: 44.5,1.5 parent: 2 - - uid: 16676 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -51.5,8.5 - parent: 2 - uid: 16762 components: - type: Transform - rot: 3.141592653589793 rad pos: 39.5,29.5 parent: 2 - uid: 16875 components: - type: Transform - rot: 3.141592653589793 rad pos: 38.5,28.5 parent: 2 - uid: 16912 components: - type: Transform - rot: 3.141592653589793 rad pos: 41.5,29.5 parent: 2 - uid: 16964 components: - type: Transform - rot: 3.141592653589793 rad pos: 38.5,27.5 parent: 2 - uid: 16976 @@ -115034,6 +115137,11 @@ entities: - type: Transform pos: -14.5,-65.5 parent: 2 + - uid: 17054 + components: + - type: Transform + pos: -16.5,-62.5 + parent: 2 - uid: 17086 components: - type: Transform @@ -115047,19 +115155,16 @@ entities: - uid: 17469 components: - type: Transform - rot: 3.141592653589793 rad pos: 47.5,1.5 parent: 2 - uid: 17470 components: - type: Transform - rot: 3.141592653589793 rad pos: 48.5,-0.5 parent: 2 - uid: 17471 components: - type: Transform - rot: 3.141592653589793 rad pos: 50.5,10.5 parent: 2 - uid: 17472 @@ -115070,7 +115175,6 @@ entities: - uid: 17814 components: - type: Transform - rot: 3.141592653589793 rad pos: -43.5,-45.5 parent: 2 - uid: 17860 @@ -115081,73 +115185,61 @@ entities: - uid: 17873 components: - type: Transform - rot: 3.141592653589793 rad pos: 16.5,42.5 parent: 2 - uid: 18371 components: - type: Transform - rot: 3.141592653589793 rad pos: -45.5,-31.5 parent: 2 - uid: 18378 components: - type: Transform - rot: 3.141592653589793 rad pos: -48.5,-48.5 parent: 2 - uid: 18379 components: - type: Transform - rot: 3.141592653589793 rad pos: -48.5,-47.5 parent: 2 - uid: 18380 components: - type: Transform - rot: 3.141592653589793 rad pos: -48.5,-46.5 parent: 2 - uid: 18381 components: - type: Transform - rot: 3.141592653589793 rad pos: -48.5,-45.5 parent: 2 - uid: 18382 components: - type: Transform - rot: 3.141592653589793 rad pos: -48.5,-44.5 parent: 2 - uid: 18383 components: - type: Transform - rot: 3.141592653589793 rad pos: -48.5,-43.5 parent: 2 - uid: 18384 components: - type: Transform - rot: -1.5707963267948966 rad pos: -48.5,-42.5 parent: 2 - uid: 18385 components: - type: Transform - rot: -1.5707963267948966 rad pos: -49.5,-42.5 parent: 2 - uid: 18386 components: - type: Transform - rot: -1.5707963267948966 rad pos: -49.5,-38.5 parent: 2 - uid: 18389 components: - type: Transform - rot: 3.141592653589793 rad pos: -48.5,-37.5 parent: 2 - uid: 18390 @@ -115168,19 +115260,16 @@ entities: - uid: 18393 components: - type: Transform - rot: 3.141592653589793 rad pos: -48.5,-33.5 parent: 2 - uid: 18399 components: - type: Transform - rot: 3.141592653589793 rad pos: -50.5,-30.5 parent: 2 - uid: 18400 components: - type: Transform - rot: 3.141592653589793 rad pos: -49.5,-30.5 parent: 2 - uid: 18543 @@ -115196,55 +115285,46 @@ entities: - uid: 18580 components: - type: Transform - rot: -1.5707963267948966 rad pos: -49.5,-32.5 parent: 2 - uid: 18593 components: - type: Transform - rot: 3.141592653589793 rad pos: -36.5,-49.5 parent: 2 - uid: 18594 components: - type: Transform - rot: 3.141592653589793 rad pos: -37.5,-49.5 parent: 2 - uid: 18597 components: - type: Transform - rot: 3.141592653589793 rad pos: -32.5,-49.5 parent: 2 - uid: 18599 components: - type: Transform - rot: 3.141592653589793 rad pos: -35.5,-49.5 parent: 2 - uid: 18615 components: - type: Transform - rot: 3.141592653589793 rad pos: -31.5,-49.5 parent: 2 - uid: 18616 components: - type: Transform - rot: 3.141592653589793 rad pos: -26.5,-49.5 parent: 2 - uid: 18617 components: - type: Transform - rot: 3.141592653589793 rad pos: -27.5,-49.5 parent: 2 - uid: 18618 components: - type: Transform - rot: 3.141592653589793 rad pos: -28.5,-49.5 parent: 2 - uid: 18724 @@ -115255,19 +115335,16 @@ entities: - uid: 18725 components: - type: Transform - rot: 1.5707963267948966 rad pos: -47.5,-52.5 parent: 2 - uid: 18726 components: - type: Transform - rot: 1.5707963267948966 rad pos: -37.5,-52.5 parent: 2 - uid: 18727 components: - type: Transform - rot: 1.5707963267948966 rad pos: -36.5,-52.5 parent: 2 - uid: 18947 @@ -115278,37 +115355,26 @@ entities: - uid: 18974 components: - type: Transform - rot: -1.5707963267948966 rad pos: -52.5,-38.5 parent: 2 - uid: 18975 components: - type: Transform - rot: -1.5707963267948966 rad pos: -52.5,-42.5 parent: 2 - uid: 18976 components: - type: Transform - rot: -1.5707963267948966 rad pos: -49.5,-41.5 parent: 2 - - uid: 18977 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -49.5,-39.5 - parent: 2 - uid: 18980 components: - type: Transform - rot: 3.141592653589793 rad pos: -51.5,-42.5 parent: 2 - uid: 18984 components: - type: Transform - rot: 3.141592653589793 rad pos: -51.5,-38.5 parent: 2 - uid: 18987 @@ -115423,6 +115489,26 @@ entities: - type: Transform pos: -34.5,-28.5 parent: 2 + - uid: 19480 + components: + - type: Transform + pos: -35.5,-52.5 + parent: 2 + - uid: 19533 + components: + - type: Transform + pos: -54.5,9.5 + parent: 2 + - uid: 19536 + components: + - type: Transform + pos: -54.5,10.5 + parent: 2 + - uid: 19552 + components: + - type: Transform + pos: -6.5,-76.5 + parent: 2 - proto: WallReinforcedDiagonal entities: - uid: 11200 @@ -115442,7 +115528,6 @@ entities: - uid: 397 components: - type: Transform - rot: 3.141592653589793 rad pos: -43.5,17.5 parent: 2 - uid: 430 @@ -115455,22 +115540,24 @@ entities: - type: Transform pos: -31.5,42.5 parent: 2 + - uid: 760 + components: + - type: Transform + pos: -14.5,8.5 + parent: 2 - uid: 2582 components: - type: Transform - rot: 3.141592653589793 rad pos: -14.5,18.5 parent: 2 - uid: 5410 components: - type: Transform - rot: 1.5707963267948966 rad pos: 58.5,5.5 parent: 2 - uid: 5822 components: - type: Transform - rot: -1.5707963267948966 rad pos: -32.5,17.5 parent: 2 - uid: 5883 @@ -115486,13 +115573,11 @@ entities: - uid: 7493 components: - type: Transform - rot: 3.141592653589793 rad pos: -42.5,24.5 parent: 2 - uid: 7551 components: - type: Transform - rot: 3.141592653589793 rad pos: -41.5,24.5 parent: 2 - uid: 7644 @@ -115508,37 +115593,31 @@ entities: - uid: 7735 components: - type: Transform - rot: 1.5707963267948966 rad pos: -10.5,19.5 parent: 2 - uid: 10733 components: - type: Transform - rot: 1.5707963267948966 rad pos: 24.5,7.5 parent: 2 - uid: 10892 components: - type: Transform - rot: 3.141592653589793 rad pos: -45.5,-48.5 parent: 2 - uid: 10961 components: - type: Transform - rot: 3.141592653589793 rad pos: -39.5,18.5 parent: 2 - uid: 10968 components: - type: Transform - rot: 1.5707963267948966 rad pos: 18.5,2.5 parent: 2 - uid: 10969 components: - type: Transform - rot: 1.5707963267948966 rad pos: 19.5,2.5 parent: 2 - uid: 11227 @@ -115549,15 +115628,23 @@ entities: - uid: 11267 components: - type: Transform - rot: 3.141592653589793 rad pos: -39.5,19.5 parent: 2 - uid: 11388 components: - type: Transform - rot: 3.141592653589793 rad pos: -40.5,24.5 parent: 2 + - uid: 11472 + components: + - type: Transform + pos: 30.5,-13.5 + parent: 2 + - uid: 11473 + components: + - type: Transform + pos: 29.5,-13.5 + parent: 2 - uid: 11625 components: - type: Transform @@ -115603,6 +115690,11 @@ entities: - type: Transform pos: -34.5,43.5 parent: 2 + - uid: 13679 + components: + - type: Transform + pos: 34.5,-13.5 + parent: 2 - uid: 13694 components: - type: Transform @@ -115613,6 +115705,71 @@ entities: - type: Transform pos: 42.5,5.5 parent: 2 + - uid: 13907 + components: + - type: Transform + pos: -30.5,-8.5 + parent: 2 + - uid: 13914 + components: + - type: Transform + pos: -24.5,-11.5 + parent: 2 + - uid: 13922 + components: + - type: Transform + pos: -22.5,-10.5 + parent: 2 + - uid: 13923 + components: + - type: Transform + pos: -26.5,-11.5 + parent: 2 + - uid: 13924 + components: + - type: Transform + pos: -27.5,-7.5 + parent: 2 + - uid: 13925 + components: + - type: Transform + pos: -27.5,-11.5 + parent: 2 + - uid: 14151 + components: + - type: Transform + pos: -30.5,-7.5 + parent: 2 + - uid: 14188 + components: + - type: Transform + pos: -21.5,-10.5 + parent: 2 + - uid: 14189 + components: + - type: Transform + pos: -32.5,-8.5 + parent: 2 + - uid: 14190 + components: + - type: Transform + pos: -23.5,-10.5 + parent: 2 + - uid: 14191 + components: + - type: Transform + pos: -31.5,-8.5 + parent: 2 + - uid: 14192 + components: + - type: Transform + pos: -25.5,-11.5 + parent: 2 + - uid: 14193 + components: + - type: Transform + pos: -29.5,-7.5 + parent: 2 - uid: 14327 components: - type: Transform @@ -115726,43 +115883,36 @@ entities: - uid: 15244 components: - type: Transform - rot: 3.141592653589793 rad pos: -44.5,-25.5 parent: 2 - uid: 15246 components: - type: Transform - rot: 3.141592653589793 rad pos: -44.5,-24.5 parent: 2 - uid: 15253 components: - type: Transform - rot: 3.141592653589793 rad pos: -41.5,-21.5 parent: 2 - uid: 15255 components: - type: Transform - rot: 3.141592653589793 rad pos: -44.5,-21.5 parent: 2 - uid: 15257 components: - type: Transform - rot: 3.141592653589793 rad pos: -40.5,-21.5 parent: 2 - uid: 15259 components: - type: Transform - rot: 3.141592653589793 rad pos: -44.5,-22.5 parent: 2 - uid: 15324 components: - type: Transform - rot: 3.141592653589793 rad pos: -44.5,-23.5 parent: 2 - uid: 15411 @@ -115933,37 +116083,31 @@ entities: - uid: 16132 components: - type: Transform - rot: -1.5707963267948966 rad pos: -6.5,3.5 parent: 2 - uid: 16133 components: - type: Transform - rot: -1.5707963267948966 rad pos: -11.5,2.5 parent: 2 - uid: 16134 components: - type: Transform - rot: -1.5707963267948966 rad pos: -7.5,2.5 parent: 2 - uid: 16135 components: - type: Transform - rot: -1.5707963267948966 rad pos: -6.5,2.5 parent: 2 - uid: 16136 components: - type: Transform - rot: -1.5707963267948966 rad pos: -11.5,9.5 parent: 2 - uid: 16137 components: - type: Transform - rot: -1.5707963267948966 rad pos: -11.5,13.5 parent: 2 - uid: 16138 @@ -116124,13 +116268,11 @@ entities: - uid: 16169 components: - type: Transform - rot: 1.5707963267948966 rad pos: -6.5,-2.5 parent: 2 - uid: 16170 components: - type: Transform - rot: -1.5707963267948966 rad pos: -6.5,7.5 parent: 2 - uid: 16171 @@ -116183,11 +116325,6 @@ entities: - type: Transform pos: -12.5,2.5 parent: 2 - - uid: 16181 - components: - - type: Transform - pos: -16.5,3.5 - parent: 2 - uid: 16182 components: - type: Transform @@ -116236,7 +116373,6 @@ entities: - uid: 16191 components: - type: Transform - rot: -1.5707963267948966 rad pos: -11.5,8.5 parent: 2 - uid: 16192 @@ -116284,11 +116420,6 @@ entities: - type: Transform pos: -16.5,8.5 parent: 2 - - uid: 16201 - components: - - type: Transform - pos: -50.5,8.5 - parent: 2 - uid: 16203 components: - type: Transform @@ -116357,7 +116488,6 @@ entities: - uid: 16216 components: - type: Transform - rot: -1.5707963267948966 rad pos: -44.5,8.5 parent: 2 - uid: 16217 @@ -116643,7 +116773,6 @@ entities: - uid: 16274 components: - type: Transform - rot: -1.5707963267948966 rad pos: -45.5,8.5 parent: 2 - uid: 16275 @@ -116739,7 +116868,6 @@ entities: - uid: 16293 components: - type: Transform - rot: 3.141592653589793 rad pos: -36.5,-21.5 parent: 2 - uid: 16295 @@ -117027,11 +117155,6 @@ entities: - type: Transform pos: -29.5,20.5 parent: 2 - - uid: 16358 - components: - - type: Transform - pos: -29.5,-7.5 - parent: 2 - uid: 16359 components: - type: Transform @@ -117055,24 +117178,8 @@ entities: - uid: 16366 components: - type: Transform - rot: 1.5707963267948966 rad pos: 21.5,-16.5 parent: 2 - - uid: 16375 - components: - - type: Transform - pos: -20.5,-10.5 - parent: 2 - - uid: 16376 - components: - - type: Transform - pos: -21.5,-10.5 - parent: 2 - - uid: 16377 - components: - - type: Transform - pos: -23.5,-10.5 - parent: 2 - uid: 16378 components: - type: Transform @@ -117093,11 +117200,6 @@ entities: - type: Transform pos: -26.5,-7.5 parent: 2 - - uid: 16382 - components: - - type: Transform - pos: -27.5,-7.5 - parent: 2 - uid: 16383 components: - type: Transform @@ -117158,11 +117260,6 @@ entities: - type: Transform pos: 23.5,-6.5 parent: 2 - - uid: 16396 - components: - - type: Transform - pos: -30.5,-7.5 - parent: 2 - uid: 16397 components: - type: Transform @@ -117298,16 +117395,6 @@ entities: - type: Transform pos: -15.5,-16.5 parent: 2 - - uid: 16424 - components: - - type: Transform - pos: -33.5,-10.5 - parent: 2 - - uid: 16425 - components: - - type: Transform - pos: -34.5,-10.5 - parent: 2 - uid: 16426 components: - type: Transform @@ -117386,13 +117473,11 @@ entities: - uid: 16441 components: - type: Transform - rot: 1.5707963267948966 rad pos: 28.5,-1.5 parent: 2 - uid: 16442 components: - type: Transform - rot: 1.5707963267948966 rad pos: 27.5,-2.5 parent: 2 - uid: 16443 @@ -117413,7 +117498,6 @@ entities: - uid: 16446 components: - type: Transform - rot: 3.141592653589793 rad pos: 36.5,-6.5 parent: 2 - uid: 16447 @@ -117434,19 +117518,16 @@ entities: - uid: 16450 components: - type: Transform - rot: 3.141592653589793 rad pos: 27.5,-6.5 parent: 2 - uid: 16451 components: - type: Transform - rot: 3.141592653589793 rad pos: 35.5,-10.5 parent: 2 - uid: 16452 components: - type: Transform - rot: 3.141592653589793 rad pos: 36.5,-12.5 parent: 2 - uid: 16453 @@ -117457,7 +117538,6 @@ entities: - uid: 16454 components: - type: Transform - rot: 1.5707963267948966 rad pos: 27.5,-1.5 parent: 2 - uid: 16455 @@ -117468,7 +117548,6 @@ entities: - uid: 16456 components: - type: Transform - rot: -1.5707963267948966 rad pos: 18.5,23.5 parent: 2 - uid: 16457 @@ -117541,11 +117620,6 @@ entities: - type: Transform pos: -9.5,-31.5 parent: 2 - - uid: 16471 - components: - - type: Transform - pos: -35.5,-10.5 - parent: 2 - uid: 16472 components: - type: Transform @@ -117699,7 +117773,6 @@ entities: - uid: 16502 components: - type: Transform - rot: 1.5707963267948966 rad pos: -22.5,-45.5 parent: 2 - uid: 16503 @@ -117730,7 +117803,6 @@ entities: - uid: 16508 components: - type: Transform - rot: 1.5707963267948966 rad pos: -21.5,-45.5 parent: 2 - uid: 16509 @@ -117746,7 +117818,6 @@ entities: - uid: 16511 components: - type: Transform - rot: 1.5707963267948966 rad pos: -20.5,-45.5 parent: 2 - uid: 16512 @@ -117754,16 +117825,6 @@ entities: - type: Transform pos: -14.5,-31.5 parent: 2 - - uid: 16513 - components: - - type: Transform - pos: -45.5,-11.5 - parent: 2 - - uid: 16514 - components: - - type: Transform - pos: -47.5,-11.5 - parent: 2 - uid: 16515 components: - type: Transform @@ -117772,7 +117833,6 @@ entities: - uid: 16516 components: - type: Transform - rot: 3.141592653589793 rad pos: 22.5,-8.5 parent: 2 - uid: 16517 @@ -117853,7 +117913,6 @@ entities: - uid: 16532 components: - type: Transform - rot: 3.141592653589793 rad pos: 24.5,12.5 parent: 2 - uid: 16533 @@ -117944,7 +118003,6 @@ entities: - uid: 16556 components: - type: Transform - rot: 3.141592653589793 rad pos: 34.5,-17.5 parent: 2 - uid: 16557 @@ -117975,7 +118033,6 @@ entities: - uid: 16562 components: - type: Transform - rot: 1.5707963267948966 rad pos: 36.5,-1.5 parent: 2 - uid: 16563 @@ -117986,7 +118043,6 @@ entities: - uid: 16564 components: - type: Transform - rot: 1.5707963267948966 rad pos: -8.5,-25.5 parent: 2 - uid: 16565 @@ -118012,19 +118068,16 @@ entities: - uid: 16569 components: - type: Transform - rot: 1.5707963267948966 rad pos: 36.5,-2.5 parent: 2 - uid: 16570 components: - type: Transform - rot: 1.5707963267948966 rad pos: 35.5,-1.5 parent: 2 - uid: 16571 components: - type: Transform - rot: 3.141592653589793 rad pos: 31.5,-7.5 parent: 2 - uid: 16572 @@ -118075,7 +118128,6 @@ entities: - uid: 16581 components: - type: Transform - rot: -1.5707963267948966 rad pos: -33.5,21.5 parent: 2 - uid: 16582 @@ -118091,13 +118143,11 @@ entities: - uid: 16584 components: - type: Transform - rot: 3.141592653589793 rad pos: 24.5,17.5 parent: 2 - uid: 16586 components: - type: Transform - rot: 3.141592653589793 rad pos: 29.5,17.5 parent: 2 - uid: 16590 @@ -118108,19 +118158,16 @@ entities: - uid: 16592 components: - type: Transform - rot: 3.141592653589793 rad pos: 27.5,17.5 parent: 2 - uid: 16594 components: - type: Transform - rot: 3.141592653589793 rad pos: 28.5,17.5 parent: 2 - uid: 16595 components: - type: Transform - rot: 3.141592653589793 rad pos: 25.5,17.5 parent: 2 - uid: 16597 @@ -118231,7 +118278,6 @@ entities: - uid: 16623 components: - type: Transform - rot: -1.5707963267948966 rad pos: 17.5,27.5 parent: 2 - uid: 16624 @@ -118257,31 +118303,26 @@ entities: - uid: 16637 components: - type: Transform - rot: -1.5707963267948966 rad pos: 18.5,24.5 parent: 2 - uid: 16638 components: - type: Transform - rot: -1.5707963267948966 rad pos: 18.5,25.5 parent: 2 - uid: 16639 components: - type: Transform - rot: -1.5707963267948966 rad pos: 18.5,26.5 parent: 2 - uid: 16640 components: - type: Transform - rot: -1.5707963267948966 rad pos: 18.5,27.5 parent: 2 - uid: 16641 components: - type: Transform - rot: -1.5707963267948966 rad pos: 14.5,26.5 parent: 2 - uid: 16642 @@ -118342,7 +118383,6 @@ entities: - uid: 16680 components: - type: Transform - rot: -1.5707963267948966 rad pos: 42.5,12.5 parent: 2 - uid: 16681 @@ -118388,25 +118428,21 @@ entities: - uid: 16690 components: - type: Transform - rot: 1.5707963267948966 rad pos: -47.5,24.5 parent: 2 - uid: 16691 components: - type: Transform - rot: 3.141592653589793 rad pos: -25.5,27.5 parent: 2 - uid: 16692 components: - type: Transform - rot: 1.5707963267948966 rad pos: 36.5,-14.5 parent: 2 - uid: 16693 components: - type: Transform - rot: 1.5707963267948966 rad pos: -44.5,24.5 parent: 2 - uid: 16694 @@ -118582,13 +118618,11 @@ entities: - uid: 16729 components: - type: Transform - rot: 3.141592653589793 rad pos: -33.5,25.5 parent: 2 - uid: 16730 components: - type: Transform - rot: 3.141592653589793 rad pos: -33.5,24.5 parent: 2 - uid: 16731 @@ -118669,49 +118703,41 @@ entities: - uid: 16746 components: - type: Transform - rot: 3.141592653589793 rad pos: -33.5,23.5 parent: 2 - uid: 16747 components: - type: Transform - rot: 3.141592653589793 rad pos: -32.5,23.5 parent: 2 - uid: 16748 components: - type: Transform - rot: 3.141592653589793 rad pos: -31.5,23.5 parent: 2 - uid: 16749 components: - type: Transform - rot: 3.141592653589793 rad pos: -30.5,23.5 parent: 2 - uid: 16750 components: - type: Transform - rot: 3.141592653589793 rad pos: -28.5,23.5 parent: 2 - uid: 16751 components: - type: Transform - rot: 3.141592653589793 rad pos: -27.5,23.5 parent: 2 - uid: 16752 components: - type: Transform - rot: 3.141592653589793 rad pos: -26.5,23.5 parent: 2 - uid: 16753 components: - type: Transform - rot: 1.5707963267948966 rad pos: -45.5,24.5 parent: 2 - uid: 16754 @@ -118747,109 +118773,91 @@ entities: - uid: 16768 components: - type: Transform - rot: -1.5707963267948966 rad pos: -44.5,12.5 parent: 2 - uid: 16769 components: - type: Transform - rot: -1.5707963267948966 rad pos: -43.5,11.5 parent: 2 - uid: 16770 components: - type: Transform - rot: -1.5707963267948966 rad pos: -43.5,8.5 parent: 2 - uid: 16771 components: - type: Transform - rot: -1.5707963267948966 rad pos: -43.5,9.5 parent: 2 - uid: 16772 components: - type: Transform - rot: -1.5707963267948966 rad pos: -43.5,10.5 parent: 2 - uid: 16773 components: - type: Transform - rot: -1.5707963267948966 rad pos: -43.5,22.5 parent: 2 - uid: 16774 components: - type: Transform - rot: -1.5707963267948966 rad pos: -43.5,21.5 parent: 2 - uid: 16775 components: - type: Transform - rot: -1.5707963267948966 rad pos: -43.5,18.5 parent: 2 - uid: 16776 components: - type: Transform - rot: -1.5707963267948966 rad pos: -44.5,13.5 parent: 2 - uid: 16777 components: - type: Transform - rot: -1.5707963267948966 rad pos: -49.5,8.5 parent: 2 - uid: 16778 components: - type: Transform - rot: -1.5707963267948966 rad pos: -44.5,11.5 parent: 2 - uid: 16779 components: - type: Transform - rot: -1.5707963267948966 rad pos: -44.5,14.5 parent: 2 - uid: 16780 components: - type: Transform - rot: -1.5707963267948966 rad pos: -44.5,21.5 parent: 2 - uid: 16781 components: - type: Transform - rot: -1.5707963267948966 rad pos: -44.5,18.5 parent: 2 - uid: 16782 components: - type: Transform - rot: -1.5707963267948966 rad pos: -44.5,20.5 parent: 2 - uid: 16783 components: - type: Transform - rot: -1.5707963267948966 rad pos: -44.5,19.5 parent: 2 - uid: 16784 components: - type: Transform - rot: -1.5707963267948966 rad pos: -43.5,14.5 parent: 2 - uid: 16785 components: - type: Transform - rot: -1.5707963267948966 rad pos: -43.5,23.5 parent: 2 - uid: 16786 @@ -118870,7 +118878,6 @@ entities: - uid: 16789 components: - type: Transform - rot: 1.5707963267948966 rad pos: 27.5,27.5 parent: 2 - uid: 16790 @@ -118911,25 +118918,21 @@ entities: - uid: 16797 components: - type: Transform - rot: 1.5707963267948966 rad pos: -30.5,34.5 parent: 2 - uid: 16798 components: - type: Transform - rot: 1.5707963267948966 rad pos: -30.5,35.5 parent: 2 - uid: 16799 components: - type: Transform - rot: 1.5707963267948966 rad pos: -30.5,36.5 parent: 2 - uid: 16800 components: - type: Transform - rot: 1.5707963267948966 rad pos: -30.5,37.5 parent: 2 - uid: 16801 @@ -118945,7 +118948,6 @@ entities: - uid: 16803 components: - type: Transform - rot: 1.5707963267948966 rad pos: -34.5,37.5 parent: 2 - uid: 16804 @@ -118981,19 +118983,8 @@ entities: - uid: 16810 components: - type: Transform - rot: 1.5707963267948966 rad pos: 22.5,-16.5 parent: 2 - - uid: 16811 - components: - - type: Transform - pos: -24.5,-12.5 - parent: 2 - - uid: 16812 - components: - - type: Transform - pos: -24.5,-10.5 - parent: 2 - uid: 16813 components: - type: Transform @@ -119097,7 +119088,6 @@ entities: - uid: 16833 components: - type: Transform - rot: 1.5707963267948966 rad pos: 20.5,-16.5 parent: 2 - uid: 16834 @@ -119105,130 +119095,84 @@ entities: - type: Transform pos: 13.5,-33.5 parent: 2 - - uid: 16835 - components: - - type: Transform - pos: -25.5,-10.5 - parent: 2 - - uid: 16836 - components: - - type: Transform - pos: -24.5,-13.5 - parent: 2 - - uid: 16837 - components: - - type: Transform - pos: -24.5,-11.5 - parent: 2 - - uid: 16838 - components: - - type: Transform - pos: -24.5,-14.5 - parent: 2 - - uid: 16839 - components: - - type: Transform - pos: -24.5,-15.5 - parent: 2 - - uid: 16840 - components: - - type: Transform - pos: -26.5,-10.5 - parent: 2 - uid: 16923 components: - type: Transform - rot: 3.141592653589793 rad pos: -39.5,-25.5 parent: 2 - uid: 16979 components: - type: Transform - rot: 3.141592653589793 rad pos: -40.5,-25.5 parent: 2 - uid: 16982 components: - type: Transform - rot: 3.141592653589793 rad pos: -36.5,-25.5 parent: 2 - uid: 17010 components: - type: Transform - rot: 3.141592653589793 rad pos: -43.5,-25.5 parent: 2 - uid: 17032 components: - type: Transform - rot: 3.141592653589793 rad pos: -42.5,-21.5 parent: 2 - uid: 17033 components: - type: Transform - rot: 3.141592653589793 rad pos: -43.5,-21.5 parent: 2 - uid: 17045 components: - type: Transform - rot: 1.5707963267948966 rad pos: 22.5,2.5 parent: 2 - uid: 17046 components: - type: Transform - rot: 1.5707963267948966 rad pos: 21.5,2.5 parent: 2 - uid: 17095 components: - type: Transform - rot: 3.141592653589793 rad pos: -39.5,-21.5 parent: 2 - uid: 17660 components: - type: Transform - rot: 1.5707963267948966 rad pos: -29.5,49.5 parent: 2 - uid: 17813 components: - type: Transform - rot: 3.141592653589793 rad pos: -38.5,-21.5 parent: 2 - uid: 17830 components: - type: Transform - rot: 3.141592653589793 rad pos: -15.5,18.5 parent: 2 - uid: 18044 components: - type: Transform - rot: 1.5707963267948966 rad pos: -10.5,24.5 parent: 2 - uid: 18373 components: - type: Transform - rot: 3.141592653589793 rad pos: -44.5,-48.5 parent: 2 - uid: 18374 components: - type: Transform - rot: 3.141592653589793 rad pos: -43.5,-48.5 parent: 2 - uid: 18375 components: - type: Transform - rot: 3.141592653589793 rad pos: -42.5,-48.5 parent: 2 - uid: 18709 @@ -119251,29 +119195,46 @@ entities: - type: Transform pos: -35.5,-51.5 parent: 2 - - uid: 18714 + - uid: 19406 components: - type: Transform - pos: -35.5,-52.5 + pos: -13.5,18.5 parent: 2 - - uid: 19406 + - uid: 19532 components: - type: Transform - rot: 3.141592653589793 rad - pos: -13.5,18.5 + pos: -52.5,8.5 + parent: 2 + - uid: 19565 + components: + - type: Transform + pos: -53.5,8.5 + parent: 2 + - uid: 19568 + components: + - type: Transform + pos: -51.5,8.5 + parent: 2 +- proto: WallSolidDiagonal + entities: + - uid: 14382 + components: + - type: Transform + pos: -24.5,-10.5 parent: 2 - proto: WallWeaponCapacitorRecharger entities: - - uid: 16841 + - uid: 19604 components: - type: Transform - pos: -31.5,-11.5 + rot: 1.5707963267948966 rad + pos: -44.5,-6.5 parent: 2 - - uid: 16842 + - uid: 19605 components: - type: Transform - rot: 3.141592653589793 rad - pos: -33.5,-10.5 + rot: 1.5707963267948966 rad + pos: -44.5,-5.5 parent: 2 - proto: WardrobeAtmosphericsFilled entities: @@ -119298,25 +119259,20 @@ entities: parent: 2 - proto: WardrobePrisonFilled entities: - - uid: 16845 - components: - - type: Transform - pos: -42.5,-11.5 - parent: 2 - - uid: 16846 + - uid: 7280 components: - type: Transform - pos: -42.5,-14.5 + pos: -31.5,-15.5 parent: 2 - - uid: 16847 + - uid: 7937 components: - type: Transform - pos: -40.5,-17.5 + pos: -40.5,-18.5 parent: 2 - - uid: 16848 + - uid: 8986 components: - type: Transform - pos: -34.5,-17.5 + pos: -35.5,-18.5 parent: 2 - proto: WardrobeSalvageFilled entities: @@ -119349,6 +119305,27 @@ entities: rot: 3.141592653589793 rad pos: 4.5,-42.5 parent: 2 + - uid: 19573 + components: + - type: MetaData + desc: Warning! Nitrogen only atmosphere beyond this point! + - type: Transform + pos: 27.5,-5.5 + parent: 2 + - uid: 19574 + components: + - type: MetaData + desc: Warning! Nitrogen only atmosphere beyond this point! + - type: Transform + pos: 36.5,-5.5 + parent: 2 + - uid: 19576 + components: + - type: MetaData + desc: Warning! Nitrogen only atmosphere beyond this point! + - type: Transform + pos: 29.5,-1.5 + parent: 2 - proto: WarningO2 entities: - uid: 16853 @@ -119465,13 +119442,6 @@ entities: parent: 2 - type: WarpPoint location: logistics - - uid: 16871 - components: - - type: Transform - pos: -30.5,-9.5 - parent: 2 - - type: WarpPoint - location: security - uid: 16872 components: - type: Transform @@ -119514,12 +119484,27 @@ entities: parent: 2 - type: WarpPoint location: engineering +- proto: WarpPointBotany + entities: + - uid: 16848 + components: + - type: Transform + pos: -17.5,5.5 + parent: 2 - proto: WarpPointDetective entities: - - uid: 7323 + - uid: 1195 components: - type: Transform - pos: -46.5,-13.5 + rot: 1.5707963267948966 rad + pos: -32.5,-6.5 + parent: 2 +- proto: WarpPointSecurity + entities: + - uid: 14974 + components: + - type: Transform + pos: -37.5,-11.5 parent: 2 - proto: WarpPointSingulo entities: @@ -119544,6 +119529,11 @@ entities: parent: 2 - proto: WaterCooler entities: + - uid: 611 + components: + - type: Transform + pos: -29.5,-5.5 + parent: 2 - uid: 5092 components: - type: Transform @@ -119615,15 +119605,15 @@ entities: parent: 2 - proto: WaterTankHighCapacity entities: - - uid: 13904 + - uid: 5731 components: - type: Transform - pos: -12.5,-21.5 + pos: -16.5,3.5 parent: 2 - - uid: 16887 + - uid: 13904 components: - type: Transform - pos: -17.5,3.5 + pos: -12.5,-21.5 parent: 2 - uid: 16888 components: @@ -119649,27 +119639,22 @@ entities: parent: 2 - proto: WeaponCapacitorRecharger entities: - - uid: 16890 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -26.5,-13.5 - parent: 2 - - uid: 16891 + - uid: 962 components: - type: Transform - pos: -23.5,-12.5 + pos: -42.5,-0.5 parent: 2 - - uid: 16892 + - uid: 16361 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -39.5,0.5 + rot: 1.5707963267948966 rad + pos: -41.5,-7.5 parent: 2 - - uid: 16893 + - uid: 16375 components: - type: Transform - pos: -31.5,-10.5 + rot: 1.5707963267948966 rad + pos: -43.5,-18.5 parent: 2 - proto: WeaponCapacitorRechargerCircuitboard entities: @@ -119678,24 +119663,71 @@ entities: - type: Transform pos: 8.398281,-31.671444 parent: 2 +- proto: WeaponDisabler + entities: + - uid: 738 + components: + - type: Transform + pos: -25.539753,-12.327817 + parent: 2 + - uid: 746 + components: + - type: Transform + pos: -25.417446,-12.511275 + parent: 2 +- proto: WeaponDisablerPractice + entities: + - uid: 16181 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -43.63609,-15.39107 + parent: 2 + - uid: 16349 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -43.477093,-15.39107 + parent: 2 + - uid: 16350 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -43.293633,-15.39107 + parent: 2 - proto: WeaponLauncherRocket entities: - - uid: 16895 + - uid: 6241 components: - type: Transform - pos: -41.49494,1.6153598 + pos: -41.486843,1.4964085 parent: 2 -- proto: WeaponShotgunKammererNonLethal +- proto: WeaponPistolMk58 entities: - - uid: 16898 + - uid: 1198 components: - type: Transform - pos: -26.271503,-15.564819 + pos: -40.39832,-2.405152 parent: 2 - - uid: 16899 + - uid: 7775 + components: + - type: Transform + pos: -40.508392,-2.282846 + parent: 2 + - uid: 10512 + components: + - type: Transform + pos: -40.288242,-2.5519192 + parent: 2 +- proto: WeaponRevolverInspector + entities: + - uid: 4238 components: + - type: MetaData + desc: An extremely old Swiss-made revolver, chambered in .45 magnum. + name: Ordonnanzrevolver 1872 - type: Transform - pos: -26.388712,-15.330445 + pos: -44.484955,-13.278492 parent: 2 - proto: WeaponSniperCeremonial entities: @@ -119748,11 +119780,6 @@ entities: parent: 2 - proto: WeaponWaterPistol entities: - - uid: 11436 - components: - - type: Transform - pos: -32.507557,-13.474558 - parent: 2 - uid: 16908 components: - type: Transform @@ -119860,13 +119887,6 @@ entities: - type: Transform pos: -1.2002304,12.663462 parent: 2 -- proto: WheatSeeds - entities: - - uid: 16924 - components: - - type: Transform - pos: 32.33082,-12.661961 - parent: 2 - proto: WhoopieCushion entities: - uid: 7159 @@ -119905,6 +119925,18 @@ entities: parent: 2 - proto: WindoorHydroponicsLocked entities: + - uid: 5734 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,4.5 + parent: 2 + - uid: 6029 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,5.5 + parent: 2 - uid: 16928 components: - type: Transform @@ -119923,18 +119955,6 @@ entities: rot: 1.5707963267948966 rad pos: -22.5,6.5 parent: 2 - - uid: 16931 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,4.5 - parent: 2 - - uid: 16932 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,5.5 - parent: 2 - proto: WindoorKitchenLocked entities: - uid: 16933 @@ -119964,30 +119984,30 @@ entities: rot: 3.141592653589793 rad pos: 18.5,-2.5 parent: 2 - - uid: 19251 + - uid: 18714 components: - type: Transform - pos: 15.5,9.5 + rot: 3.141592653589793 rad + pos: -50.5,8.5 parent: 2 -- proto: WindoorSecureArmoryLocked - entities: - - uid: 16938 + - uid: 19251 components: - type: Transform - rot: 3.141592653589793 rad - pos: -41.5,-7.5 + pos: 15.5,9.5 parent: 2 - - uid: 16939 +- proto: WindoorSecureAtmosphericsLocked + entities: + - uid: 17075 components: - type: Transform - rot: 3.141592653589793 rad - pos: -42.5,-7.5 + rot: -1.5707963267948966 rad + pos: 35.5,-11.5 parent: 2 - - uid: 16940 + - uid: 19575 components: - type: Transform - rot: 3.141592653589793 rad - pos: -41.5,0.5 + rot: -1.5707963267948966 rad + pos: 35.5,-12.5 parent: 2 - proto: WindoorSecureCargoLocked entities: @@ -120083,14 +120103,6 @@ entities: rot: 3.141592653589793 rad pos: -6.5,-73.5 parent: 2 -- proto: WindoorSecureDetectiveLocked - entities: - - uid: 12612 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -46.5,-16.5 - parent: 2 - proto: WindoorSecureEngineeringLocked entities: - uid: 16962 @@ -120134,6 +120146,13 @@ entities: rot: 3.141592653589793 rad pos: 36.5,10.5 parent: 2 +- proto: WindoorSecureMimeLocked + entities: + - uid: 13008 + components: + - type: Transform + pos: -50.5,8.5 + parent: 2 - proto: WindoorSecureSalvageLocked entities: - uid: 16968 @@ -120157,18 +120176,6 @@ entities: parent: 2 - proto: WindoorSecureSecurityLawyerLocked entities: - - uid: 6241 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -38.5,-10.5 - parent: 2 - - uid: 6244 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -37.5,-10.5 - parent: 2 - uid: 16941 components: - type: Transform @@ -120186,20 +120193,33 @@ entities: parent: 2 - proto: WindoorSecureSecurityLocked entities: - - uid: 16974 + - uid: 9847 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -26.5,-12.5 + rot: 1.5707963267948966 rad + pos: -24.5,-14.5 parent: 2 - - uid: 16975 + - uid: 10060 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -26.5,-14.5 + rot: 1.5707963267948966 rad + pos: -24.5,-13.5 + parent: 2 +- proto: WindoorSecureServiceLocked + entities: + - uid: 4604 + components: + - type: Transform + pos: -0.5,20.5 parent: 2 - proto: WindoorServiceLocked entities: + - uid: 13751 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -51.5,16.5 + parent: 2 - uid: 16978 components: - type: Transform @@ -120208,10 +120228,29 @@ entities: parent: 2 - proto: Window entities: + - uid: 72 + components: + - type: Transform + pos: -54.5,19.5 + parent: 2 + - uid: 82 + components: + - type: Transform + pos: -53.5,15.5 + parent: 2 + - uid: 84 + components: + - type: Transform + pos: -52.5,19.5 + parent: 2 + - uid: 85 + components: + - type: Transform + pos: -55.5,15.5 + parent: 2 - uid: 294 components: - type: Transform - rot: 1.5707963267948966 rad pos: -10.5,21.5 parent: 2 - uid: 3068 @@ -120222,7 +120261,6 @@ entities: - uid: 4574 components: - type: Transform - rot: -1.5707963267948966 rad pos: -42.5,18.5 parent: 2 - uid: 5710 @@ -120230,16 +120268,51 @@ entities: - type: Transform pos: 14.5,-7.5 parent: 2 + - uid: 7412 + components: + - type: Transform + pos: -12.5,6.5 + parent: 2 + - uid: 7662 + components: + - type: Transform + pos: -12.5,3.5 + parent: 2 + - uid: 7666 + components: + - type: Transform + pos: -12.5,7.5 + parent: 2 - uid: 8395 components: - type: Transform pos: 46.5,3.5 parent: 2 + - uid: 8987 + components: + - type: Transform + pos: -54.5,15.5 + parent: 2 + - uid: 9000 + components: + - type: Transform + pos: -55.5,19.5 + parent: 2 - uid: 10221 components: - type: Transform pos: -1.5,20.5 parent: 2 + - uid: 10361 + components: + - type: Transform + pos: -52.5,15.5 + parent: 2 + - uid: 10367 + components: + - type: Transform + pos: -53.5,19.5 + parent: 2 - uid: 12561 components: - type: Transform @@ -120253,7 +120326,6 @@ entities: - uid: 13535 components: - type: Transform - rot: 3.141592653589793 rad pos: -40.5,18.5 parent: 2 - uid: 13698 @@ -120279,7 +120351,6 @@ entities: - uid: 16053 components: - type: Transform - rot: 1.5707963267948966 rad pos: -10.5,20.5 parent: 2 - uid: 16980 @@ -120297,11 +120368,6 @@ entities: - type: Transform pos: -9.5,-29.5 parent: 2 - - uid: 16984 - components: - - type: Transform - pos: -16.5,6.5 - parent: 2 - uid: 16985 components: - type: Transform @@ -120367,12 +120433,6 @@ entities: - type: Transform pos: -5.5,16.5 parent: 2 - - uid: 16999 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 36.5,-4.5 - parent: 2 - uid: 17000 components: - type: Transform @@ -120463,12 +120523,6 @@ entities: - type: Transform pos: 24.5,15.5 parent: 2 - - uid: 17021 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 36.5,-3.5 - parent: 2 - uid: 17022 components: - type: Transform @@ -120477,13 +120531,11 @@ entities: - uid: 17023 components: - type: Transform - rot: 1.5707963267948966 rad pos: -9.5,-30.5 parent: 2 - uid: 17024 components: - type: Transform - rot: 1.5707963267948966 rad pos: -9.5,-26.5 parent: 2 - uid: 17025 @@ -120511,30 +120563,6 @@ entities: - type: Transform pos: -36.5,16.5 parent: 2 - - uid: 17035 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,-3.5 - parent: 2 - - uid: 17036 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 34.5,-1.5 - parent: 2 - - uid: 17037 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 33.5,-1.5 - parent: 2 - - uid: 17039 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,-1.5 - parent: 2 - uid: 17040 components: - type: Transform @@ -120543,15 +120571,8 @@ entities: - uid: 17041 components: - type: Transform - rot: 3.141592653589793 rad pos: 28.5,-7.5 parent: 2 - - uid: 17042 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 29.5,-1.5 - parent: 2 - uid: 17043 components: - type: Transform @@ -120580,14 +120601,8 @@ entities: - uid: 17052 components: - type: Transform - rot: 1.5707963267948966 rad pos: 14.5,23.5 parent: 2 - - uid: 17054 - components: - - type: Transform - pos: 27.5,-5.5 - parent: 2 - uid: 17055 components: - type: Transform @@ -120678,16 +120693,6 @@ entities: - type: Transform pos: 14.5,19.5 parent: 2 - - uid: 17075 - components: - - type: Transform - pos: 29.5,-13.5 - parent: 2 - - uid: 17076 - components: - - type: Transform - pos: 30.5,-13.5 - parent: 2 - uid: 17077 components: - type: Transform @@ -120751,29 +120756,33 @@ entities: - uid: 18332 components: - type: Transform - rot: -1.5707963267948966 rad pos: 58.5,3.5 parent: 2 - uid: 18357 components: - type: Transform - rot: 1.5707963267948966 rad pos: -10.5,23.5 parent: 2 - uid: 18358 components: - type: Transform - rot: 1.5707963267948966 rad pos: -10.5,22.5 parent: 2 - uid: 19399 components: - type: Transform - rot: -1.5707963267948966 rad pos: -33.5,-52.5 parent: 2 - proto: WindowDirectional entities: + - uid: 14867 + components: + - type: MetaData + desc: In case of emergency, apply hammer to front + name: RPG Access + - type: Transform + pos: -41.5,1.5 + parent: 2 - uid: 17089 components: - type: Transform @@ -120811,6 +120820,12 @@ entities: rot: 3.141592653589793 rad pos: 5.5,-5.5 parent: 2 + - uid: 723 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,-15.5 + parent: 2 - uid: 733 components: - type: Transform @@ -120821,6 +120836,12 @@ entities: - type: Transform pos: -47.5,-0.5 parent: 2 + - uid: 1192 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -44.5,-15.5 + parent: 2 - uid: 1573 components: - type: Transform @@ -120833,16 +120854,28 @@ entities: rot: 3.141592653589793 rad pos: 35.5,10.5 parent: 2 + - uid: 4298 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,-12.5 + parent: 2 + - uid: 4606 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,20.5 + parent: 2 - uid: 6960 components: - type: Transform pos: -7.5,46.5 parent: 2 - - uid: 7280 + - uid: 8625 components: - type: Transform - rot: 3.141592653589793 rad - pos: -45.5,-16.5 + rot: 1.5707963267948966 rad + pos: -44.5,-18.5 parent: 2 - uid: 9967 components: @@ -120888,12 +120921,6 @@ entities: rot: 3.141592653589793 rad pos: 4.5,-5.5 parent: 2 - - uid: 14701 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -47.5,-16.5 - parent: 2 - uid: 15885 components: - type: Transform @@ -120923,36 +120950,6 @@ entities: rot: -1.5707963267948966 rad pos: -24.5,48.5 parent: 2 - - uid: 17098 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -26.5,-13.5 - parent: 2 - - uid: 17100 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -26.5,-15.5 - parent: 2 - - uid: 17101 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -26.5,-11.5 - parent: 2 - - uid: 17102 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -39.5,-10.5 - parent: 2 - - uid: 17103 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -36.5,-10.5 - parent: 2 - uid: 17104 components: - type: Transform @@ -122712,4 +122709,9 @@ entities: - type: Transform pos: 4.4012365,-10.410826 parent: 2 + - uid: 19563 + components: + - type: Transform + pos: 29.327902,-12.402073 + parent: 2 ... diff --git a/Resources/Maps/glacier.yml b/Resources/Maps/glacier.yml index 700363736dd..4efcaa14f91 100644 --- a/Resources/Maps/glacier.yml +++ b/Resources/Maps/glacier.yml @@ -59,6 +59,10 @@ tilemap: 96: Lattice 97: Plating 5: PlatingAsteroid + 11: PlatingBurnt + 12: PlatingDamaged + 14: PlatingSnow + 13: TrainLattice entities: - proto: "" entities: @@ -108,11 +112,11 @@ entities: version: 6 -1,0: ind: -1,0 - tiles: YQAAAAAACQAAAAAASwAAAAACSwAAAAAACQAAAAAAYQAAAAAARwAAAAACRwAAAAAARwAAAAAAFQAAAAABFQAAAAAEFQAAAAACFgAAAAAGFQAAAAAEYQAAAAAAVAAAAAABNwAAAAAASwAAAAACSwAAAAACSwAAAAADCQAAAAAAYQAAAAAARwAAAAACRwAAAAABRwAAAAABRwAAAAAAFQAAAAADFQAAAAAAFQAAAAAEFQAAAAAAYQAAAAAAVAAAAAACYQAAAAAACQAAAAAGSwAAAAAASwAAAAABCQAAAAAAYQAAAAAARwAAAAACRwAAAAAARwAAAAAARwAAAAAAFQAAAAABFQAAAAAFFQAAAAAAFQAAAAAAYQAAAAAAVAAAAAADCQAAAAAJCQAAAAAASwAAAAABSwAAAAACCQAAAAAHYQAAAAAAYQAAAAAAYQAAAAAANwAAAAAAFQAAAAADFQAAAAABFQAAAAABCQAAAAAHCQAAAAAAYQAAAAAAYQAAAAAASwAAAAABSwAAAAABSwAAAAACSwAAAAADCQAAAAAFCQAAAAAACQAAAAAASwAAAAAASwAAAAADCQAAAAAACQAAAAAACQAAAAAKCQAAAAAACQAAAAAACQAAAAAACQAAAAADSwAAAAACSwAAAAADSwAAAAACSwAAAAACSwAAAAAASwAAAAAASwAAAAACSwAAAAABSwAAAAACSwAAAAAASwAAAAADSwAAAAAASwAAAAADSwAAAAADCQAAAAAACQAAAAAACQAAAAAASwAAAAAASwAAAAABSwAAAAADSwAAAAADSwAAAAACSwAAAAAASwAAAAABSwAAAAADSwAAAAACSwAAAAABSwAAAAAASwAAAAACSwAAAAAASwAAAAADSwAAAAABFQAAAAACCQAAAAADCQAAAAAACQAAAAAACQAAAAAHSwAAAAACSwAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAASwAAAAAASwAAAAADSwAAAAACSwAAAAABSwAAAAAAYQAAAAAAFQAAAAACPQAAAAAAPQAAAAAAYQAAAAAASwAAAAABSwAAAAADCQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAFSwAAAAACSwAAAAADCQAAAAAACQAAAAAIPgAAAAAAYQAAAAAAXgAAAAAAXgAAAAAAYQAAAAAANwAAAAAAPQAAAAAAIwAAAAACIwAAAAABIwAAAAACCQAAAAAACQAAAAAASwAAAAABSwAAAAAACQAAAAAACQAAAAAAPgAAAAAAYQAAAAAAXgAAAAAAXgAAAAABPgAAAAAACQAAAAAACQAAAAAACQAAAAABCQAAAAAAIwAAAAABIwAAAAABYQAAAAAANwAAAAAAPQAAAAAAYQAAAAAAYQAAAAAAPgAAAAAAYQAAAAAAYQAAAAAANwAAAAAAYQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAYQAAAAAAYQAAAAAABwAAAAAABwAAAAADBwAAAAABBwAAAAABPgAAAAAAYQAAAAAAYQAAAAAACQAAAAALCQAAAAAACQAAAAAKCQAAAAAACQAAAAAACQAAAAAACQAAAAAAUQAAAAAAYQAAAAAAVAAAAAACVAAAAAAAVAAAAAADBwAAAAABPQAAAAAAYQAAAAAAYQAAAAAACQAAAAAACQAAAAAACQAAAAAJCQAAAAAKYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAVAAAAAACVAAAAAAAVAAAAAACBwAAAAADGAAAAAABYQAAAAAAYQAAAAAAPQAAAAAAPQAAAAAANwAAAAAAYQAAAAAAYQAAAAAAGAAAAAADGAAAAAACGAAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAANwAAAAAAGAAAAAADYQAAAAAAIQAAAAADIQAAAAABIQAAAAAAGAAAAAAAYQAAAAAAGAAAAAABGAAAAAABGAAAAAACGAAAAAACGAAAAAAAYQAAAAAABwAAAAAABwAAAAAABwAAAAAA + tiles: YQAAAAAACQAAAAAASwAAAAACSwAAAAAACQAAAAAAYQAAAAAARwAAAAACRwAAAAAARwAAAAAAFQAAAAABFQAAAAAEFQAAAAACFgAAAAAGFQAAAAAEYQAAAAAAVAAAAAABNwAAAAAASwAAAAACSwAAAAACSwAAAAADCQAAAAAAYQAAAAAARwAAAAACRwAAAAABRwAAAAABRwAAAAAAFQAAAAADFQAAAAAAFQAAAAAEFQAAAAAAYQAAAAAAVAAAAAACYQAAAAAACQAAAAAGSwAAAAAASwAAAAABCQAAAAAAYQAAAAAARwAAAAACRwAAAAAARwAAAAAARwAAAAAAFQAAAAABFQAAAAAFFQAAAAAAFQAAAAAAYQAAAAAAVAAAAAADCQAAAAAJCQAAAAAASwAAAAABSwAAAAACCQAAAAAHYQAAAAAAYQAAAAAAYQAAAAAANwAAAAAAFQAAAAADFQAAAAABFQAAAAABCQAAAAAHCQAAAAAAYQAAAAAAYQAAAAAASwAAAAABSwAAAAABSwAAAAACSwAAAAADCQAAAAAFCQAAAAAACQAAAAAASwAAAAAASwAAAAADCQAAAAAACQAAAAAACQAAAAAKCQAAAAAACQAAAAAACQAAAAAACQAAAAADSwAAAAACSwAAAAADSwAAAAACSwAAAAACSwAAAAAASwAAAAAASwAAAAACSwAAAAABSwAAAAACSwAAAAAASwAAAAADSwAAAAAASwAAAAADSwAAAAADCQAAAAAACQAAAAAACQAAAAAASwAAAAAASwAAAAABSwAAAAADSwAAAAADSwAAAAACSwAAAAAASwAAAAABSwAAAAADSwAAAAACSwAAAAABSwAAAAAASwAAAAACSwAAAAAASwAAAAADSwAAAAABFQAAAAACCQAAAAADCQAAAAAACQAAAAAACQAAAAAHSwAAAAACSwAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAASwAAAAAASwAAAAADSwAAAAACSwAAAAABSwAAAAAAYQAAAAAAFQAAAAACPQAAAAAAPQAAAAAAYQAAAAAASwAAAAABSwAAAAADCQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAFSwAAAAACSwAAAAADCQAAAAAACQAAAAAIPgAAAAAAYQAAAAAAXgAAAAAAXgAAAAAAYQAAAAAANwAAAAAAPQAAAAAAIwAAAAACIwAAAAABIwAAAAACCQAAAAAACQAAAAAASwAAAAABSwAAAAAACQAAAAAACQAAAAAAPgAAAAAAYQAAAAAAXgAAAAAAXgAAAAABPgAAAAAACQAAAAAACQAAAAAACQAAAAABCQAAAAAAIwAAAAABIwAAAAABYQAAAAAANwAAAAAAPQAAAAAAYQAAAAAAYQAAAAAAPgAAAAAAYQAAAAAAYQAAAAAANwAAAAAAYQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAYQAAAAAAYQAAAAAABwAAAAAABwAAAAADBwAAAAABBwAAAAABPgAAAAAAYQAAAAAAYQAAAAAACQAAAAALCQAAAAAACQAAAAAKCQAAAAAACQAAAAAACQAAAAAACQAAAAAAUQAAAAAAYQAAAAAAVAAAAAACVAAAAAAAVAAAAAADBwAAAAABPQAAAAAAYQAAAAAAYQAAAAAACQAAAAAACQAAAAAACQAAAAAJCQAAAAAKYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAVAAAAAACVAAAAAAAVAAAAAACBwAAAAADGAAAAAABYQAAAAAAYQAAAAAAPQAAAAAAPQAAAAAANwAAAAAAYQAAAAAAYQAAAAAAGAAAAAADYQAAAAAAGAAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAANwAAAAAAGAAAAAADYQAAAAAAIQAAAAADIQAAAAABIQAAAAAAGAAAAAAAYQAAAAAAGAAAAAABGAAAAAABPQAAAAAAGAAAAAACGAAAAAAAYQAAAAAABwAAAAAABwAAAAAABwAAAAAA version: 6 -1,1: ind: -1,1 - tiles: NwAAAAAAYQAAAAAAGAAAAAACGAAAAAAAGAAAAAABGAAAAAAAYQAAAAAAGAAAAAABGAAAAAADGAAAAAABGAAAAAADGAAAAAADYQAAAAAABwAAAAAABwAAAAABBwAAAAADGAAAAAACGAAAAAABGAAAAAABGAAAAAAAGAAAAAAAGAAAAAAAYQAAAAAAYQAAAAAANwAAAAAAYQAAAAAAGAAAAAADGAAAAAADYQAAAAAAXwAAAAADXwAAAAACXwAAAAABGAAAAAACGAAAAAABGAAAAAACGAAAAAADGAAAAAAAGAAAAAACGAAAAAABGAAAAAACGAAAAAACYQAAAAAAPQAAAAAAPQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAANwAAAAAAYQAAAAAAGAAAAAADGAAAAAACGAAAAAAAGAAAAAACGAAAAAADGAAAAAABGAAAAAABGAAAAAABYQAAAAAACAAAAAADCAAAAAAACAAAAAABGAAAAAAAGAAAAAABGAAAAAAAYQAAAAAAYQAAAAAAGAAAAAACGAAAAAAAGAAAAAACGAAAAAAAGAAAAAAAGAAAAAACGAAAAAACYQAAAAAAVAAAAAACVAAAAAAAVAAAAAABGAAAAAABGAAAAAADGAAAAAADGAAAAAAAYQAAAAAAGAAAAAADGAAAAAADGAAAAAADGAAAAAACGAAAAAABGAAAAAAAGAAAAAADYQAAAAAAVAAAAAADVAAAAAABVAAAAAADGAAAAAACGAAAAAADGAAAAAAAGAAAAAACYQAAAAAAGAAAAAACGAAAAAACGAAAAAADIQAAAAABGAAAAAABGAAAAAACGAAAAAAAYQAAAAAAVAAAAAABVAAAAAAAVAAAAAAAPQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAPQAAAAAAPQAAAAAAYQAAAAAANwAAAAAANwAAAAAAYQAAAAAAVAAAAAAAVAAAAAABVAAAAAAAIwAAAAABIwAAAAAAIwAAAAADCQAAAAAACQAAAAALYQAAAAAAGAAAAAABGAAAAAACGAAAAAADGAAAAAACGAAAAAAAGAAAAAABYQAAAAAANwAAAAAAYQAAAAAAYQAAAAAACQAAAAAJCQAAAAAACQAAAAAACQAAAAAACQAAAAAAPQAAAAAAGAAAAAACGAAAAAAAGAAAAAACGAAAAAACGAAAAAABGAAAAAAAGAAAAAABGAAAAAAAGAAAAAACGAAAAAABCQAAAAAECQAAAAAACQAAAAAACQAAAAAACQAAAAAAPQAAAAAAGAAAAAABGAAAAAABGAAAAAACGAAAAAADGAAAAAADGAAAAAAAGAAAAAABGAAAAAAAGAAAAAADGAAAAAACCQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAPQAAAAAAGAAAAAABGAAAAAAAGAAAAAABGAAAAAABGAAAAAADGAAAAAACGAAAAAABGAAAAAACGAAAAAACGAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAYQAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAADGAAAAAAAGAAAAAAAGAAAAAADGAAAAAACYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAANwAAAAAAYQAAAAAAGAAAAAAAGAAAAAAAGAAAAAACGAAAAAACGAAAAAAAGAAAAAACGAAAAAAAPQAAAAAAGAAAAAADGAAAAAABGAAAAAADGAAAAAAAGAAAAAADGAAAAAACGAAAAAACPQAAAAAAGAAAAAADGAAAAAABGAAAAAADGAAAAAADGAAAAAACGAAAAAAAGAAAAAACPQAAAAAAGAAAAAACGAAAAAACGAAAAAACGAAAAAADGAAAAAADGAAAAAADGAAAAAABYQAAAAAANwAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAA + tiles: NwAAAAAAYQAAAAAAGAAAAAACGAAAAAAAGAAAAAABGAAAAAAAYQAAAAAAGAAAAAABGAAAAAADYQAAAAAAGAAAAAADGAAAAAADYQAAAAAABwAAAAAABwAAAAABBwAAAAADGAAAAAACGAAAAAABGAAAAAABGAAAAAAAGAAAAAAAGAAAAAAAYQAAAAAAPQAAAAAANwAAAAAAYQAAAAAANwAAAAAAPQAAAAAAYQAAAAAAXwAAAAADXwAAAAACXwAAAAABGAAAAAACGAAAAAABGAAAAAACGAAAAAADGAAAAAAAGAAAAAACGAAAAAABGAAAAAACGAAAAAACGAAAAAAAGAAAAAAAGAAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAANwAAAAAAYQAAAAAAGAAAAAADGAAAAAACGAAAAAAAGAAAAAACGAAAAAADGAAAAAABGAAAAAABGAAAAAABYQAAAAAACAAAAAADCAAAAAAACAAAAAABGAAAAAAAGAAAAAABGAAAAAAAYQAAAAAAYQAAAAAAGAAAAAACGAAAAAAAGAAAAAACGAAAAAAAGAAAAAAAGAAAAAACGAAAAAACYQAAAAAAVAAAAAACVAAAAAAAVAAAAAABGAAAAAABGAAAAAADGAAAAAADGAAAAAAAYQAAAAAAGAAAAAADGAAAAAADGAAAAAADGAAAAAACGAAAAAABGAAAAAAAGAAAAAADYQAAAAAAVAAAAAADVAAAAAABVAAAAAADGAAAAAACGAAAAAADGAAAAAAAGAAAAAACYQAAAAAAGAAAAAACGAAAAAACGAAAAAADIQAAAAABGAAAAAABGAAAAAACGAAAAAAAYQAAAAAAVAAAAAABVAAAAAAAVAAAAAAAPQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAPQAAAAAAPQAAAAAAYQAAAAAANwAAAAAANwAAAAAAYQAAAAAAVAAAAAAAVAAAAAABVAAAAAAAIwAAAAABIwAAAAAAIwAAAAADCQAAAAAACQAAAAALYQAAAAAAGAAAAAABGAAAAAACGAAAAAADGAAAAAACGAAAAAAAGAAAAAABYQAAAAAANwAAAAAAYQAAAAAAYQAAAAAACQAAAAAJCQAAAAAACQAAAAAACQAAAAAACQAAAAAAPQAAAAAAGAAAAAACGAAAAAAAGAAAAAACGAAAAAACGAAAAAABGAAAAAAAGAAAAAABGAAAAAAAGAAAAAACGAAAAAABCQAAAAAECQAAAAAACQAAAAAACQAAAAAACQAAAAAAPQAAAAAAGAAAAAABGAAAAAABGAAAAAACGAAAAAADGAAAAAADGAAAAAAAGAAAAAABGAAAAAAAGAAAAAADGAAAAAACCQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAPQAAAAAAGAAAAAABGAAAAAAAGAAAAAABGAAAAAABGAAAAAADGAAAAAACGAAAAAABGAAAAAACGAAAAAACGAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAYQAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAADGAAAAAAAGAAAAAAAGAAAAAADGAAAAAACYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAANwAAAAAAYQAAAAAAGAAAAAAAGAAAAAAAGAAAAAACGAAAAAACGAAAAAAAGAAAAAACGAAAAAAAPQAAAAAAGAAAAAADGAAAAAABGAAAAAADGAAAAAAAGAAAAAADGAAAAAACGAAAAAACPQAAAAAAGAAAAAADGAAAAAABGAAAAAADGAAAAAADGAAAAAACGAAAAAAAGAAAAAACPQAAAAAAGAAAAAACGAAAAAACGAAAAAACGAAAAAADGAAAAAADGAAAAAADGAAAAAABYQAAAAAANwAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAA version: 6 -1,2: ind: -1,2 @@ -156,7 +160,7 @@ entities: version: 6 2,0: ind: 2,0 - tiles: YQAAAAAARwAAAAAARwAAAAADRwAAAAAAYQAAAAAAYQAAAAAAUQAAAAAAFQAAAAAGFQAAAAAAFgAAAAAAFQAAAAAFFQAAAAAFFQAAAAAGFQAAAAAAFQAAAAADFQAAAAABPQAAAAAARwAAAAAARwAAAAADRwAAAAADYQAAAAAARwAAAAABRwAAAAADRwAAAAABFQAAAAADFQAAAAAEFQAAAAACFQAAAAAAFQAAAAABFQAAAAADYQAAAAAAYQAAAAAAPQAAAAAARwAAAAAARwAAAAADRwAAAAADYQAAAAAAYQAAAAAARwAAAAABRwAAAAACYQAAAAAAFQAAAAABFQAAAAAEFQAAAAAEFQAAAAAGFQAAAAADGAAAAAAAGAAAAAAAPQAAAAAARwAAAAAARwAAAAACRwAAAAAARwAAAAABNwAAAAAARwAAAAADRwAAAAACFQAAAAAGFQAAAAAEYQAAAAAAFQAAAAADFQAAAAAEFQAAAAADNQAAAAAANQAAAAAAYQAAAAAARwAAAAAARwAAAAADRwAAAAAARwAAAAAARwAAAAADRwAAAAADRwAAAAAAYQAAAAAAFQAAAAABUQAAAAAAFQAAAAABFQAAAAADYQAAAAAANQAAAAAANQAAAAAAPQAAAAAARwAAAAAARwAAAAACRwAAAAAARwAAAAADYQAAAAAARwAAAAABRwAAAAABYQAAAAAAFQAAAAABYQAAAAAAFQAAAAAFFQAAAAAFYQAAAAAANQAAAAAANQAAAAAAPQAAAAAARwAAAAADRwAAAAABRwAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAUQAAAAAAYQAAAAAAGAAAAAADGAAAAAAAPQAAAAAARwAAAAACRwAAAAAARwAAAAABYQAAAAAARwAAAAABRwAAAAAARwAAAAABRwAAAAADRwAAAAADPQAAAAAARwAAAAADRwAAAAAARwAAAAADRwAAAAABRwAAAAABPQAAAAAARwAAAAACRwAAAAABRwAAAAAANwAAAAAARwAAAAABRwAAAAADRwAAAAADRwAAAAACRwAAAAADRwAAAAACRwAAAAACRwAAAAACRwAAAAADRwAAAAACRwAAAAADYQAAAAAARwAAAAACRwAAAAACRwAAAAABNwAAAAAARwAAAAADRwAAAAAARwAAAAADRwAAAAABRwAAAAADPQAAAAAARwAAAAAARwAAAAADRwAAAAAARwAAAAADRwAAAAADRwAAAAACRwAAAAAARwAAAAABRwAAAAABYQAAAAAAPQAAAAAAPQAAAAAAYQAAAAAANwAAAAAAYQAAAAAAYQAAAAAARwAAAAADRwAAAAADRwAAAAAARwAAAAADRwAAAAABRwAAAAAARwAAAAADRwAAAAAARwAAAAAARwAAAAABRwAAAAAARwAAAAACRwAAAAADRwAAAAACRwAAAAABRwAAAAAARwAAAAAARwAAAAABRwAAAAADRwAAAAACRwAAAAAARwAAAAACRwAAAAABRwAAAAABRwAAAAACRwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAACRwAAAAAARwAAAAADRwAAAAABRwAAAAAARwAAAAADRwAAAAAARwAAAAADYQAAAAAARwAAAAADRwAAAAABRwAAAAABYQAAAAAARwAAAAABRwAAAAABRwAAAAADYQAAAAAANwAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAANwAAAAAARwAAAAADRwAAAAACRwAAAAABYQAAAAAARwAAAAAARwAAAAABYQAAAAAAYQAAAAAARwAAAAADRwAAAAADRwAAAAACRwAAAAABPQAAAAAANQAAAAAAUQAAAAAAYQAAAAAARwAAAAABRwAAAAADRwAAAAABYQAAAAAARwAAAAABRwAAAAADYQAAAAAARwAAAAADRwAAAAABRwAAAAAARwAAAAAARwAAAAABPQAAAAAANQAAAAAAUQAAAAAA + tiles: YQAAAAAARwAAAAAARwAAAAADRwAAAAAAYQAAAAAAYQAAAAAAUQAAAAAAFQAAAAAGFQAAAAAAFgAAAAAAFQAAAAAFFQAAAAAFFQAAAAAGFQAAAAAAFQAAAAADFQAAAAABPQAAAAAARwAAAAAARwAAAAADRwAAAAADYQAAAAAARwAAAAABRwAAAAADRwAAAAABFQAAAAADFQAAAAAEFQAAAAACFQAAAAAAFQAAAAABFQAAAAADYQAAAAAAYQAAAAAAPQAAAAAARwAAAAAARwAAAAADRwAAAAADYQAAAAAAYQAAAAAARwAAAAABRwAAAAACYQAAAAAAFQAAAAABFQAAAAAEFQAAAAAEFQAAAAAGFQAAAAADGAAAAAAAGAAAAAAAPQAAAAAARwAAAAAARwAAAAACRwAAAAAARwAAAAABNwAAAAAARwAAAAADRwAAAAACFQAAAAAGFQAAAAAEYQAAAAAAFQAAAAADFQAAAAAEFQAAAAADNQAAAAAANQAAAAAAYQAAAAAARwAAAAAARwAAAAADRwAAAAAARwAAAAAARwAAAAADRwAAAAADRwAAAAAAYQAAAAAAFQAAAAABUQAAAAAAFQAAAAABFQAAAAADYQAAAAAANQAAAAAANQAAAAAAPQAAAAAARwAAAAAARwAAAAACRwAAAAAARwAAAAADYQAAAAAARwAAAAABRwAAAAABYQAAAAAAFQAAAAABYQAAAAAAFQAAAAAFFQAAAAAFYQAAAAAANQAAAAAANQAAAAAAPQAAAAAARwAAAAADRwAAAAABRwAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAUQAAAAAAYQAAAAAAGAAAAAADGAAAAAAAPQAAAAAARwAAAAACRwAAAAAARwAAAAABYQAAAAAARwAAAAABRwAAAAAARwAAAAABRwAAAAADNQAAAAAANQAAAAAANQAAAAAANQAAAAAARwAAAAADRwAAAAABRwAAAAABPQAAAAAARwAAAAACRwAAAAABRwAAAAAANwAAAAAARwAAAAABRwAAAAADRwAAAAADRwAAAAACRwAAAAADRwAAAAACRwAAAAACRwAAAAACRwAAAAADRwAAAAACRwAAAAADYQAAAAAARwAAAAACRwAAAAACRwAAAAABNwAAAAAARwAAAAADRwAAAAAARwAAAAADRwAAAAABRwAAAAADPQAAAAAARwAAAAAARwAAAAADRwAAAAAARwAAAAADRwAAAAADRwAAAAACRwAAAAAARwAAAAABRwAAAAABYQAAAAAAPQAAAAAAPQAAAAAAYQAAAAAANwAAAAAAYQAAAAAAYQAAAAAARwAAAAADRwAAAAADRwAAAAAARwAAAAADRwAAAAABRwAAAAAARwAAAAADRwAAAAAARwAAAAAARwAAAAABRwAAAAAARwAAAAACRwAAAAADRwAAAAACRwAAAAABRwAAAAAARwAAAAAARwAAAAABRwAAAAADRwAAAAACRwAAAAAARwAAAAACRwAAAAABRwAAAAABRwAAAAACRwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAACRwAAAAAARwAAAAADRwAAAAABRwAAAAAARwAAAAADRwAAAAAARwAAAAADYQAAAAAARwAAAAADRwAAAAABRwAAAAABYQAAAAAARwAAAAABRwAAAAABRwAAAAADYQAAAAAANwAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAANwAAAAAARwAAAAADRwAAAAACRwAAAAABYQAAAAAARwAAAAAARwAAAAABYQAAAAAAYQAAAAAARwAAAAADRwAAAAADRwAAAAACRwAAAAABPQAAAAAANQAAAAAAUQAAAAAAYQAAAAAARwAAAAABRwAAAAADRwAAAAABYQAAAAAARwAAAAABRwAAAAADYQAAAAAARwAAAAADRwAAAAABRwAAAAAARwAAAAAARwAAAAABPQAAAAAANQAAAAAAUQAAAAAA version: 6 2,1: ind: 2,1 @@ -172,7 +176,7 @@ entities: version: 6 1,3: ind: 1,3 - tiles: YQAAAAAANQAAAAAAGAAAAAAAGAAAAAADGAAAAAADGAAAAAAAGAAAAAACGAAAAAACGAAAAAAAGAAAAAAAYQAAAAAACQAAAAAACQAAAAAAPQAAAAAAGAAAAAADPAAAAAACNQAAAAAAGAAAAAAAGAAAAAADGAAAAAADGAAAAAACGAAAAAAAGAAAAAADGAAAAAADGAAAAAABGAAAAAACYQAAAAAACQAAAAAACQAAAAAAYQAAAAAAYQAAAAAAGAAAAAAAYQAAAAAAPQAAAAAAPQAAAAAAYQAAAAAAPQAAAAAANwAAAAAAPQAAAAAAYQAAAAAAYQAAAAAAGAAAAAADYQAAAAAACQAAAAAACQAAAAAACQAAAAAAYQAAAAAAYQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAANQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAANQAAAAAANwAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAYQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAANQAAAAAAPQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAYQAAAAAAYAAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAANQAAAAAAPQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAYQAAAAAAYAAAAAAAPQAAAAAAPQAAAAAAYQAAAAAANQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAANQAAAAAAYQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAYQAAAAAAYAAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAANQAAAAAAYQAAAAAAYQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAYQAAAAAAYQAAAAAAYAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAANQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAANQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAANQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAANQAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAAAAAAAAAAAAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAAYAAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAAFQAAAAAEFQAAAAABFQAAAAAGFQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFQAAAAAAFQAAAAAAFQAAAAAGFQAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFQAAAAACFQAAAAAGFQAAAAAFFQAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFQAAAAAEFQAAAAADFQAAAAACFQAAAAAD + tiles: YQAAAAAANQAAAAAAGAAAAAAAGAAAAAADGAAAAAADGAAAAAAAGAAAAAACGAAAAAACGAAAAAAAGAAAAAAAYQAAAAAACQAAAAAACQAAAAAAPQAAAAAAGAAAAAADPAAAAAACNQAAAAAAGAAAAAAAGAAAAAADGAAAAAADGAAAAAACGAAAAAAAGAAAAAADGAAAAAADGAAAAAABGAAAAAACYQAAAAAACQAAAAAACQAAAAAAYQAAAAAAYQAAAAAAGAAAAAAAYQAAAAAAPQAAAAAAPQAAAAAAYQAAAAAAPQAAAAAANwAAAAAAPQAAAAAAYQAAAAAAYQAAAAAAGAAAAAADYQAAAAAACQAAAAAACQAAAAAACQAAAAAAYQAAAAAAYQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAANQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAANQAAAAAANwAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAYQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAANQAAAAAAPQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAYQAAAAAAYAAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAANQAAAAAAPQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAYQAAAAAAYAAAAAAAPQAAAAAAPQAAAAAAYQAAAAAANQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAANQAAAAAAYQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAYQAAAAAAYAAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAANQAAAAAAYQAAAAAAYQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAABAAAAAAAYQAAAAAAYAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAANQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAANQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAADQAAAAAAYAAAAAAAYAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAANQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAANQAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADQAAAAAAAAAAAAAAAAAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAAYAAAAAAAYAAAAAAAAAAAAAAAYAAAAAAAYAAAAAAADQAAAAAAYAAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAAFQAAAAAEBAAAAAAAFQAAAAAGFQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYQAAAAAAFQAAAAAABAAAAAAAFQAAAAAGFQAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYQAAAAAAFQAAAAACBAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYQAAAAAAFQAAAAAEFQAAAAADFQAAAAACFQAAAAAD version: 6 3,1: ind: 3,1 @@ -180,7 +184,7 @@ entities: version: 6 1,4: ind: 1,4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFQAAAAACFQAAAAAGFQAAAAACFQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFQAAAAAFFQAAAAACFQAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYQAAAAAAFQAAAAACFQAAAAAGFQAAAAACFQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYQAAAAAAYQAAAAAAFQAAAAAFFQAAAAACFQAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAYQAAAAAAYQAAAAAAYQAAAAAARgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAYQAAAAAAFQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAAAAAAAAAYAAAAAAAYQAAAAAAYQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAAAAAAAAAYQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAAAAAAAAAYAAAAAAAAAAAAAAAYQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAYAAAAAAAYQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAAAAAAAAAYQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 3,2: ind: 3,2 @@ -220,7 +224,7 @@ entities: version: 6 2,3: ind: 2,3 - tiles: PAAAAAABPAAAAAACGAAAAAABPAAAAAAAPAAAAAAAGAAAAAACPAAAAAADPAAAAAADPAAAAAAAGAAAAAACPQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAAAAAAAAAGAAAAAABPAAAAAACPAAAAAACPAAAAAABPAAAAAADPAAAAAABPAAAAAADGAAAAAADGAAAAAACYQAAAAAAYQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAGAAAAAADGAAAAAADGAAAAAAAGAAAAAAAGAAAAAACGAAAAAABGAAAAAACGAAAAAAAYQAAAAAAYQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPQAAAAAAPQAAAAAAYQAAAAAAPQAAAAAAPQAAAAAAYQAAAAAAPQAAAAAAPQAAAAAAYQAAAAAAYAAAAAAAYAAAAAAAAAAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAAAAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAAAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAAAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAADCQAAAAAACQAAAAAAYAAAAAAAYAAAAAAACQAAAAAACQAAAAAACQAAAAAAFQAAAAAEFQAAAAADCQAAAAAHFgAAAAACFgAAAAAGFgAAAAADFgAAAAADCQAAAAAACQAAAAAACQAAAAAHCQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAFQAAAAAAFQAAAAACCQAAAAAMCQAAAAAAFgAAAAADFgAAAAACFgAAAAABFgAAAAAFFgAAAAAHCQAAAAAAFQAAAAAEFQAAAAAFFQAAAAAEFQAAAAABCQAAAAAACQAAAAAGFQAAAAAAFQAAAAAGFQAAAAACFQAAAAAGFgAAAAAHFQAAAAAGFQAAAAAEFQAAAAAFFgAAAAACFQAAAAADFQAAAAAAFQAAAAACFQAAAAACFQAAAAADFQAAAAACFQAAAAADFQAAAAAFYQAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAFQAAAAAGYQAAAAAAFQAAAAAEEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAYQAAAAAAFQAAAAABFQAAAAABFQAAAAAG + tiles: PAAAAAABPAAAAAACGAAAAAABPAAAAAAAPAAAAAAAGAAAAAACPAAAAAADPAAAAAADPAAAAAAAGAAAAAACPQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAAAAAAAAAGAAAAAABPAAAAAACPAAAAAACPAAAAAABPAAAAAADPAAAAAABPAAAAAADGAAAAAADGAAAAAACYQAAAAAAYQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAGAAAAAADGAAAAAADGAAAAAAAGAAAAAAAGAAAAAACGAAAAAABGAAAAAACGAAAAAAAYQAAAAAAYQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPQAAAAAAPQAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAYQAAAAAAYAAAAAAAYAAAAAAAAAAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAYAAAAAAADQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAADQAAAAAAYAAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADQAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAADQAAAAAAAAAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAAAAAAAAAYAAAAAAADQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAUQAAAAAABAAAAAAAYQAAAAAAYQAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAARgAAAAAAYQAAAAAAYQAAAAAALgAAAAAAPQAAAAAAUQAAAAAAPQAAAAAALgAAAAAAYQAAAAAAYQAAAAAARgAAAAAAYAAAAAAACQAAAAAACQAAAAAACQAAAAAAFQAAAAAEFQAAAAADYQAAAAAALgAAAAAALgAAAAAAPQAAAAAAUQAAAAAAPQAAAAAALgAAAAAALgAAAAAAYQAAAAAARgAAAAAARgAAAAAACQAAAAAACQAAAAAACQAAAAAAFQAAAAAAFQAAAAACYQAAAAAALgAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAALgAAAAAAFQAAAAAEFQAAAAAFFQAAAAAEFQAAAAABCQAAAAAACQAAAAAGBAAAAAAABAAAAAAABAAAAAAABAAAAAAANwAAAAAAFQAAAAAGYQAAAAAAFQAAAAAFNwAAAAAAFQAAAAADFQAAAAAAFQAAAAACFQAAAAACFQAAAAADFQAAAAACFQAAAAADFQAAAAAFYQAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAFQAAAAAGYQAAAAAAFQAAAAAEEAAAAAAAEAAAAAAANwAAAAAAEAAAAAAAYQAAAAAAFQAAAAABFQAAAAABFQAAAAAG version: 6 -3,0: ind: -3,0 @@ -248,7 +252,7 @@ entities: version: 6 -4,0: ind: -4,0 - tiles: YAAAAAAAPAAAAAABPAAAAAABPAAAAAAAPQAAAAAAAAAAAAAAAAAAAAAAPQAAAAAACQAAAAAACQAAAAADCQAAAAAACQAAAAAKCQAAAAAACQAAAAAACQAAAAAACQAAAAAAPAAAAAACPAAAAAACPAAAAAAAPQAAAAAAPQAAAAAAAAAAAAAAPQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAHPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAAAAAAAAAAAAAAAAAPQAAAAAACQAAAAAACQAAAAAICQAAAAADCQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAFCQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAHCQAAAAAACQAAAAAACQAAAAAAFQAAAAACFQAAAAAAFQAAAAADFQAAAAADYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAPQAAAAAACQAAAAAACQAAAAABCQAAAAAJCQAAAAAACQAAAAAACQAAAAAMCQAAAAAAYQAAAAAAFQAAAAAGFQAAAAAAFQAAAAAEFQAAAAAFYAAAAAAAAAAAAAAAAAAAAAAAPQAAAAAACQAAAAABCQAAAAAACQAAAAAACQAAAAAICQAAAAAICQAAAAAACQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAFQAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAPQAAAAAACQAAAAAACQAAAAADCQAAAAAACQAAAAAICQAAAAAACQAAAAAAYQAAAAAAXgAAAAACXgAAAAAAXgAAAAAAYQAAAAAAFQAAAAAGAAAAAAAAAAAAAAAAAAAAAAAAPQAAAAAACQAAAAAACQAAAAAACQAAAAAICQAAAAAACQAAAAAACQAAAAAAYQAAAAAAGAAAAAACGAAAAAABGAAAAAABYQAAAAAAFQAAAAAEFQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAYQAAAAAAGAAAAAACGAAAAAABGAAAAAABYQAAAAAAFQAAAAAGFQAAAAACAAAAAAAAYAAAAAAAAAAAAAAAPQAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAYQAAAAAAYQAAAAAANwAAAAAAPQAAAAAAYQAAAAAAYQAAAAAAXgAAAAACYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAANQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAANQAAAAAAGAAAAAABGAAAAAACXgAAAAACGAAAAAADXgAAAAADYQAAAAAAXgAAAAACXgAAAAAAXgAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAXgAAAAADXgAAAAACXgAAAAADXgAAAAABXgAAAAADPQAAAAAAXgAAAAADXgAAAAAAXgAAAAACYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAGAAAAAAAGAAAAAAAGAAAAAABXgAAAAABXgAAAAAAYQAAAAAAXgAAAAAAXgAAAAABXgAAAAACYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYAAAAAAAYAAAAAAAYQAAAAAAYQAAAAAAYQAAAAAANwAAAAAAYQAAAAAAYQAAAAAAXgAAAAABAAAAAAAANQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAANQAAAAAAYAAAAAAAYAAAAAAA + tiles: YAAAAAAAPAAAAAABPAAAAAABPAAAAAAAPQAAAAAAAAAAAAAAAAAAAAAAPQAAAAAACQAAAAAACQAAAAADCQAAAAAACQAAAAAKCQAAAAAACQAAAAAACQAAAAAACQAAAAAAPAAAAAACPAAAAAACPAAAAAAAPQAAAAAAPQAAAAAAAAAAAAAAPQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAHPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAAAAAAAAAAAAAAAAAPQAAAAAACQAAAAAACQAAAAAICQAAAAADCQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAFCQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAHCQAAAAAACQAAAAAACQAAAAAAFQAAAAACFQAAAAAAFQAAAAADFQAAAAADYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAPQAAAAAACQAAAAAACQAAAAABCQAAAAAJCQAAAAAACQAAAAAACQAAAAAMCQAAAAAAYQAAAAAAFQAAAAAGFQAAAAAAFQAAAAAEFQAAAAAFYAAAAAAAAAAAAAAAAAAAAAAAPQAAAAAACQAAAAABCQAAAAAACQAAAAAACQAAAAAICQAAAAAICQAAAAAACQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAFQAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAPQAAAAAACQAAAAAACQAAAAADCQAAAAAACQAAAAAICQAAAAAACQAAAAAAYQAAAAAAXgAAAAACXgAAAAAAXgAAAAAAYQAAAAAAFQAAAAAGAAAAAAAAAAAAAAAAAAAAAAAAPQAAAAAACQAAAAAACQAAAAAACQAAAAAICQAAAAAACQAAAAAACQAAAAAAYQAAAAAAGAAAAAACGAAAAAABGAAAAAABYQAAAAAAFQAAAAAEFQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAYQAAAAAAGAAAAAACGAAAAAABGAAAAAABYQAAAAAAFQAAAAAGFQAAAAACAAAAAAAAYAAAAAAAAAAAAAAAPQAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAYQAAAAAAYQAAAAAANwAAAAAAPQAAAAAAYQAAAAAAYQAAAAAAXgAAAAACYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAANQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAANQAAAAAAGAAAAAABGAAAAAACXgAAAAACGAAAAAADXgAAAAADNwAAAAAAXgAAAAACXgAAAAAAXgAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAXgAAAAADXgAAAAACXgAAAAADXgAAAAABXgAAAAADPQAAAAAAXgAAAAADXgAAAAAAXgAAAAACYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAGAAAAAAAGAAAAAAAGAAAAAABXgAAAAABXgAAAAAANwAAAAAAXgAAAAAAXgAAAAABXgAAAAACYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYAAAAAAAYAAAAAAAYQAAAAAAYQAAAAAAYQAAAAAANwAAAAAAYQAAAAAAYQAAAAAAXgAAAAABAAAAAAAANQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAANQAAAAAAYAAAAAAAYAAAAAAA version: 6 -5,-2: ind: -5,-2 @@ -348,11 +352,11 @@ entities: version: 6 2,4: ind: 2,4 - tiles: FQAAAAAFYQAAAAAAFQAAAAACFQAAAAADEAAAAAAAFQAAAAAAEAAAAAAAFQAAAAAAEAAAAAAAFQAAAAADFQAAAAAEFQAAAAAAYQAAAAAAFQAAAAACFQAAAAAEFQAAAAAAFQAAAAAEYQAAAAAAFQAAAAAFFQAAAAABEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAFQAAAAABFQAAAAABFQAAAAADYQAAAAAAFQAAAAABFQAAAAAGFQAAAAACFQAAAAADYQAAAAAAYQAAAAAAFQAAAAAFFQAAAAAFFQAAAAAGEAAAAAAAFQAAAAAGFQAAAAAAFQAAAAADFQAAAAAEFQAAAAACYQAAAAAAFQAAAAAGFQAAAAAFFQAAAAAGFQAAAAAFFQAAAAADYQAAAAAAYQAAAAAAFQAAAAADPQAAAAAAPQAAAAAAPQAAAAAAFQAAAAABFQAAAAAEFQAAAAABFQAAAAAEYQAAAAAAFQAAAAACFQAAAAADFQAAAAABFQAAAAAEFQAAAAAAFQAAAAADYQAAAAAAFQAAAAAEFQAAAAACEAAAAAAAFQAAAAACFQAAAAACFQAAAAABFQAAAAACYQAAAAAAYQAAAAAAFQAAAAABFQAAAAAAFQAAAAAFFQAAAAADFQAAAAAAFQAAAAABYQAAAAAAFQAAAAADFQAAAAABFQAAAAAAFQAAAAAFFQAAAAAAFQAAAAACYQAAAAAAYQAAAAAAFQAAAAADFQAAAAAEFQAAAAABFQAAAAAGFQAAAAAFFQAAAAAFFQAAAAADYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAFQAAAAADFQAAAAACFQAAAAAGFQAAAAAEFQAAAAAFFQAAAAAAFQAAAAABFQAAAAAGFQAAAAACFQAAAAACFQAAAAADFQAAAAAEFQAAAAABFQAAAAAAFQAAAAAGFQAAAAAEFQAAAAAAFQAAAAAAFQAAAAACFQAAAAAAAAAAAAAAAAAAAAAAFQAAAAAFFQAAAAABFQAAAAAFFQAAAAACFQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAFQAAAAACFQAAAAADFQAAAAAAFQAAAAAGFQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: FQAAAAAFYQAAAAAAEAAAAAAAUQAAAAAAEAAAAAAAUQAAAAAAEAAAAAAAUQAAAAAAEAAAAAAAUQAAAAAAYQAAAAAAEAAAAAAAYQAAAAAAFQAAAAACFQAAAAAEFQAAAAAAFQAAAAAEYQAAAAAAEAAAAAAAUQAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAUQAAAAAAYQAAAAAAEAAAAAAAYQAAAAAAFQAAAAABFQAAAAAGFQAAAAACFQAAAAADYQAAAAAAYQAAAAAAFQAAAAAFUQAAAAAAUQAAAAAAEAAAAAAAUQAAAAAAUQAAAAAAFQAAAAADFQAAAAAEFQAAAAACYQAAAAAAFQAAAAAGFQAAAAAFFQAAAAAGFQAAAAAFFQAAAAADYQAAAAAAYQAAAAAADgAAAAAADgAAAAAAEAAAAAAADgAAAAAADgAAAAAAFQAAAAAEFQAAAAABFQAAAAAEYQAAAAAAFQAAAAACFQAAAAADFQAAAAABFQAAAAAEFQAAAAAAYQAAAAAAYQAAAAAACQAAAAAADgAAAAAAEAAAAAAADgAAAAAACQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAFQAAAAABFQAAAAAAFQAAAAAFFQAAAAADFQAAAAAAYQAAAAAAYQAAAAAACQAAAAAADgAAAAAAEAAAAAAADgAAAAAACQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAFQAAAAADFQAAAAAEFQAAAAABFQAAAAAGFQAAAAAFFQAAAAAFYQAAAAAAYQAAAAAACQAAAAAAFQAAAAAAEAAAAAAAFQAAAAAACQAAAAAAYQAAAAAAYQAAAAAAFQAAAAADFQAAAAACFQAAAAAGFQAAAAAEFQAAAAAFFQAAAAAAFQAAAAABFQAAAAAGYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAFQAAAAAEFQAAAAAAFQAAAAAAFQAAAAACFQAAAAAAAAAAAAAAYQAAAAAAFQAAAAAFFQAAAAABFQAAAAAFYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAFQAAAAAAFQAAAAACFQAAAAADFQAAAAAAFQAAAAAGFQAAAAAARgAAAAAAAAAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAAAAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAAAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 3,4: ind: 3,4 - tiles: FQAAAAAGFQAAAAAFFQAAAAACFQAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFQAAAAACFQAAAAACFQAAAAABCQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFQAAAAAEFQAAAAAFCQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFQAAAAAEFQAAAAACCQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFQAAAAAGFQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFQAAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: FQAAAAAGFQAAAAAFFQAAAAACFQAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFQAAAAACFQAAAAACFQAAAAABCQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFQAAAAAEFQAAAAAFCQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFQAAAAAEFQAAAAACCQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFQAAAAAGFQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFQAAAAAGFQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -2,-2: ind: -2,-2 @@ -412,7 +416,7 @@ entities: version: 6 5,0: ind: 5,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYQAAAAAAYQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYQAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYQAAAAAAYQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYQAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYQAAAAAAYQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYQAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAACwAAAAAADAAAAAAAYQAAAAAAYAAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYAAAAAAAAAAAAAAAAAAAAAAACwAAAAAAAAAAAAAADAAAAAAAAAAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYQAAAAAAYQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYQAAAAAAYAAAAAAAYAAAAAAADAAAAAAAYAAAAAAAYQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 - type: Broadphase - type: Physics @@ -470,6 +474,13 @@ entities: id: Arrows decals: 2437: 29.992805,27.266853 + - node: + angle: 1.5707963267948966 rad + color: '#FFFFFFFF' + id: Arrows + decals: + 5977: 40,7 + 5978: 44,7 - node: angle: 3.141592653589793 rad color: '#FFFFFFFF' @@ -939,6 +950,7 @@ entities: 5880: 46,4 5881: 46,3 5882: 47,3 + 5979: 44,7 - node: color: '#0083FFFF' id: BoxGreyscale @@ -2556,7 +2568,6 @@ entities: 3536: 14,17 3537: 44,27 3538: 44,29 - 3539: -7,15 3540: 7,-8 3584: 48,2 3585: 47,6 @@ -2789,7 +2800,6 @@ entities: decals: 2010: -24,54 2011: 29,50 - 2012: 41,59 2013: 47,61 - node: color: '#3AB3DABA' @@ -2921,11 +2931,6 @@ entities: id: Flowersbr3 decals: 1234: 44.638474,-7.3226414 - - node: - color: '#3AB3DA79' - id: Flowersbr3 - decals: - 2017: 39,60 - node: color: '#3AB3DA85' id: Flowersbr3 @@ -3012,7 +3017,6 @@ entities: color: '#3AB3DA79' id: Flowerspv3 decals: - 2014: 41,61 2015: 33,59 - node: color: '#3AB3DAA1' @@ -3971,18 +3975,13 @@ entities: 1782: -11,15 1783: -9,16 1784: -8,16 - 1785: -7,16 1786: -6,16 - 1787: -6,17 - 1788: -5,17 1789: -5,16 1790: -5,15 1791: -6,15 1792: -6,14 - 1793: -7,15 1794: -8,15 1795: -8,14 - 1796: -7,14 1797: -9,15 1798: -15,18 1799: -16,18 @@ -4227,6 +4226,13 @@ entities: id: FullTileOverlayGreyscale decals: 3599: 32,-21 + - node: + color: '#DE3A3A0A' + id: FullTileOverlayGreyscale + decals: + 5980: -7,18 + 5981: -6,18 + 5982: -5,18 - node: color: '#DE3A3A0C' id: FullTileOverlayGreyscale @@ -9586,8 +9592,7 @@ entities: -4,2: 0: 40400 -5,2: - 2: 1 - 0: 65456 + 0: 65457 -4,3: 0: 53641 -5,3: @@ -9607,9 +9612,9 @@ entities: -2,2: 0: 14335 -2,3: - 0: 63239 + 0: 54535 -2,4: - 0: 61919 + 0: 65373 -1,1: 0: 65535 -1,2: @@ -9633,17 +9638,21 @@ entities: -5,5: 0: 11187 -4,6: - 0: 65535 + 1: 65535 -5,6: - 0: 65535 + 1: 65535 -4,7: - 0: 65295 + 1: 15 + 0: 65280 -5,7: - 0: 65359 + 1: 15 + 0: 65344 -3,6: - 0: 56797 + 1: 4369 + 0: 52428 -3,7: - 0: 30541 + 1: 1 + 0: 30540 -3,5: 0: 3822 -3,8: @@ -9684,23 +9693,22 @@ entities: 0: 111 -4,12: 0: 30583 - 3: 34952 + 2: 34952 -4,10: - 4: 12 + 3: 12 0: 52224 -4,11: 0: 3276 -3,9: - 0: 114 - 5: 4 + 0: 118 -3,10: 0: 4352 - 3: 26214 + 2: 26214 -3,11: 0: 281 - 3: 26214 + 2: 26214 -3,12: - 3: 63351 + 2: 63351 -2,9: 0: 2039 -2,10: @@ -9709,7 +9717,7 @@ entities: 0: 30591 -2,12: 0: 119 - 3: 61440 + 2: 61440 -1,9: 0: 30711 -1,10: @@ -9718,16 +9726,16 @@ entities: 0: 30503 -1,12: 0: 119 - 3: 61440 + 2: 61440 0,8: 0: 63351 0,9: 0: 63736 0,10: - 3: 61712 + 2: 61712 0: 232 0,11: - 3: 16255 + 2: 16255 0,-4: 0: 60428 0,-3: @@ -9843,17 +9851,17 @@ entities: 4,7: 0: 61663 0,12: - 3: 64443 + 2: 64443 1,9: 0: 32767 1,10: 0: 35507 - 3: 12288 + 2: 12288 1,11: - 3: 8994 + 2: 8994 0: 34944 1,12: - 3: 291 + 2: 291 2,9: 0: 4095 2,10: @@ -9870,7 +9878,7 @@ entities: 0: 65534 3,12: 0: 28927 - 3: 32768 + 2: 32768 4,8: 0: 65294 4,9: @@ -9985,7 +9993,7 @@ entities: 0: 56831 4,12: 0: 255 - 3: 61440 + 2: 61440 5,9: 0: 3838 5,10: @@ -9994,7 +10002,7 @@ entities: 0: 65528 5,12: 0: 33535 - 3: 28672 + 2: 28672 6,9: 0: 61439 6,10: @@ -10151,16 +10159,16 @@ entities: 0: 43008 10,12: 0: 19 - 3: 27784 + 2: 27784 11,9: 0: 65534 11,10: 0: 56559 11,11: 0: 477 - 3: 17408 + 2: 17408 11,12: - 3: 4407 + 2: 4407 12,8: 0: 30583 12,9: @@ -10170,74 +10178,77 @@ entities: 12,11: 0: 3327 0,13: - 3: 43929 + 2: 43929 -1,13: - 3: 2039 + 2: 2039 0,14: - 3: 61038 + 2: 61038 0: 128 -1,14: 0: 65535 0,15: - 3: 61166 + 2: 61166 -1,15: 0: 15 - 6: 65280 + 4: 65280 0,16: - 3: 43942 + 2: 43942 0: 8 1,13: - 3: 273 + 2: 273 0: 8 1,14: - 3: 51711 + 2: 51711 1,15: - 3: 39127 + 2: 39127 0: 8 1,16: - 3: 25823 + 2: 25823 2,13: 0: 3067 2,14: - 3: 60303 + 2: 60303 3,13: 0: 2867 - 3: 136 + 2: 136 3,14: 0: 65535 4,13: - 3: 255 + 2: 255 0: 36608 4,14: 0: 65535 5,13: - 3: 30583 + 2: 30583 0: 34952 5,14: - 3: 1911 + 2: 1911 0: 63624 6,13: 0: 61167 6,14: - 3: 12784 + 2: 45552 5,15: 0: 8 6,15: - 0: 15 + 0: 34959 7,13: 0: 13107 - 3: 34952 + 2: 34952 7,14: - 3: 62200 + 2: 62200 + 6,16: + 0: 136 + 2: 34816 7,15: 0: 27718 7,16: - 0: 98 + 0: 53106 8,13: - 3: 17615 + 2: 17615 8,14: - 3: 7748 - 0: 57344 + 2: 5828 + 0: 8192 12,4: 0: 6 13,6: @@ -10254,14 +10265,25 @@ entities: 0: 61439 15,6: 0: 20480 - 3: 35840 + 2: 35840 15,7: 0: 61661 16,6: - 3: 12288 + 2: 12288 16,7: 0: 61489 - 3: 70 + 2: 70 + 6,17: + 2: 2184 + 7,17: + 2: 25138 + 0: 34956 + 7,18: + 2: 36386 + 0: 8 + 8,18: + 0: 241 + 2: 61952 13,9: 0: 28671 13,10: @@ -10286,10 +10308,10 @@ entities: 0: 28912 16,9: 0: 61489 - 3: 70 + 2: 70 16,10: 0: 12528 - 3: 16384 + 2: 16384 16,11: 0: 1 13,0: @@ -10300,9 +10322,9 @@ entities: 0: 12407 13,3: 0: 51 - 3: 1024 + 2: 1024 13,-1: - 0: 34835 + 0: 34963 -8,4: 0: 65535 -8,3: @@ -10338,7 +10360,8 @@ entities: -6,5: 0: 32767 -6,6: - 0: 39056 + 0: 4112 + 1: 34944 -6,7: 0: 63488 -6,3: @@ -10354,7 +10377,7 @@ entities: 13,-2: 0: 30574 13,-5: - 0: 36761 + 0: 36831 14,-4: 0: 62361 14,-3: @@ -10389,35 +10412,35 @@ entities: 0: 65280 2,-6: 0: 15 + 3,-8: + 0: 53215 3,-7: - 0: 48025 + 0: 48093 3,-6: 0: 53247 - 3,-8: - 0: 35022 3,-9: - 0: 61166 + 0: 65535 4,-8: - 0: 39185 + 0: 47923 4,-7: - 0: 2291 + 0: 3827 4,-6: 0: 33075 -8,-3: - 3: 12544 + 2: 12544 -9,-3: 0: 64250 - 3: 1285 + 2: 1285 -8,-1: 0: 61731 -9,-2: 0: 64170 - 3: 1365 + 2: 1365 -9,-1: 0: 64174 - 3: 1361 + 2: 1361 -8,-2: - 3: 512 + 2: 512 -8,0: 0: 65526 -7,-3: @@ -10426,7 +10449,7 @@ entities: 0: 62321 -7,-5: 0: 24576 - 3: 119 + 2: 119 -7,-4: 0: 49152 -7,-2: @@ -10447,64 +10470,63 @@ entities: 0: 30513 -9,0: 0: 64170 - 3: 1365 + 2: 1365 -8,1: - 3: 1799 + 2: 1799 0: 2296 -9,1: 0: 64250 - 3: 1285 + 2: 1285 -8,2: 0: 64384 -9,2: 0: 51200 - 3: 1 + 2: 1 -9,3: 0: 47308 -7,1: - 3: 1799 + 2: 1799 0: 2296 -7,2: 0: 65392 -6,1: - 3: 263 + 2: 263 0: 248 -6,2: - 0: 52416 - 2: 8 + 0: 52424 -6,0: 0: 32768 8,15: - 0: 49356 + 0: 49288 + 8,16: + 0: 204 9,13: - 3: 34959 + 2: 34959 9,14: - 3: 3464 - 0: 61440 + 2: 248 + 0: 62464 9,15: 0: 4351 - 8,16: - 0: 136 9,16: - 0: 4095 + 0: 65535 10,13: - 3: 3 + 2: 3 10,14: - 3: 33568 - 0: 28672 + 0: 36864 + 2: 32 10,15: - 0: 61503 + 0: 61499 10,16: - 0: 311 + 0: 4539 11,14: - 3: 8177 + 2: 8177 0: 57344 11,15: 0: 207 11,13: - 3: 4401 + 2: 4401 12,14: - 3: 12561 + 2: 12561 12,15: 0: 8209 11,16: @@ -10525,10 +10547,10 @@ entities: 0: 65535 -12,3: 0: 49151 - 3: 16384 + 2: 16384 -13,3: 0: 9215 - 3: 56320 + 2: 56320 -11,0: 0: 65535 -11,1: @@ -10536,7 +10558,7 @@ entities: -11,2: 0: 65535 -11,3: - 3: 1799 + 2: 1799 0: 63736 -11,-1: 0: 65535 @@ -10546,12 +10568,12 @@ entities: 0: 65535 -10,1: 0: 63999 - 3: 1536 + 2: 1536 -10,2: - 3: 1285 + 2: 1285 0: 31482 -10,3: - 3: 773 + 2: 773 0: 12338 -10,-1: 0: 65535 @@ -10565,19 +10587,19 @@ entities: 0: 61183 -13,5: 0: 58468 - 3: 2 + 2: 2 -13,6: 0: 26188 - 3: 48 + 2: 48 -12,7: 0: 45056 - 3: 16384 + 2: 16384 -12,8: - 3: 1799 + 2: 1799 0: 12536 -13,7: 0: 57344 - 3: 4914 + 2: 4914 -11,5: 0: 30583 -11,6: @@ -10585,7 +10607,7 @@ entities: -11,7: 0: 61986 -11,8: - 3: 1797 + 2: 1797 0: 59642 -10,6: 0: 52479 @@ -10594,7 +10616,7 @@ entities: -10,5: 0: 52430 -10,8: - 3: 771 + 2: 771 0: 29812 -9,6: 0: 12545 @@ -10603,7 +10625,7 @@ entities: -12,-4: 0: 61440 -12,-3: - 3: 1799 + 2: 1799 0: 63736 -13,-3: 0: 3935 @@ -10615,28 +10637,28 @@ entities: 0: 65535 -11,-4: 0: 12288 - 3: 16384 + 2: 16384 -11,-3: - 3: 1807 + 2: 1807 0: 63728 -11,-2: 0: 65535 -10,-3: - 3: 1797 + 2: 1797 0: 63736 -10,-2: 0: 65535 -10,-4: - 3: 6152 + 2: 6152 0: 49152 -10,-5: 0: 34952 -9,-4: - 3: 1365 + 2: 1365 0: 64170 -9,-5: 0: 64175 - 3: 1360 + 2: 1360 -16,-4: 0: 28671 -16,-5: @@ -10653,19 +10675,19 @@ entities: 0: 28398 -16,-1: 0: 49138 - 3: 16384 + 2: 16384 -17,-1: 0: 2240 - 3: 32768 + 2: 32768 -16,0: - 3: 1 + 2: 1 0: 1150 -15,-4: 0: 819 - 3: 32768 + 2: 32768 -15,-3: 0: 819 - 3: 34952 + 2: 34952 -15,-2: 0: 13107 -15,-1: @@ -10674,48 +10696,47 @@ entities: 0: 14548 -14,-3: 0: 3839 - 3: 256 -15,0: 0: 36040 -14,-1: 0: 65534 -14,-4: - 3: 3904 0: 57344 + 2: 64 -14,-2: - 3: 15 + 2: 15 0: 51328 -14,0: 0: 65535 -13,-4: - 3: 3984 0: 28672 + 2: 144 -10,-6: 0: 32768 -9,-6: 0: 61440 -8,-5: - 3: 255 + 2: 255 -16,-6: - 3: 15 + 2: 15 0: 63232 -17,-6: - 3: 74 + 2: 74 0: 61696 -17,-5: 0: 57561 -16,-7: - 3: 8192 + 2: 8192 -15,-6: - 3: 16400 + 2: 16400 0: 45056 -14,-6: 0: 4096 - 3: 8192 + 2: 8192 -14,-5: - 3: 4352 + 2: 4352 -17,0: - 3: 8 + 2: 8 0: 2240 -16,1: 0: 3824 @@ -10732,7 +10753,7 @@ entities: -16,4: 0: 65535 -15,1: - 3: 752 + 2: 752 0: 8456 -15,3: 0: 20447 @@ -10740,29 +10761,29 @@ entities: 0: 50786 -15,4: 0: 9830 - 3: 2048 + 2: 2048 -14,1: 0: 61439 -14,2: 0: 62606 - 3: 320 + 2: 320 -14,3: 0: 8191 - 3: 57344 + 2: 57344 -14,4: - 3: 1834 + 2: 1834 0: 34944 -13,4: 0: 24578 - 3: 544 + 2: 544 -18,-7: - 3: 2112 + 2: 2112 -18,-6: 0: 51396 -18,-5: 0: 12 -17,-7: - 3: 40064 + 2: 40064 -19,2: 0: 9319 -19,3: @@ -10830,7 +10851,7 @@ entities: 0: 7103 8,-9: 0: 57344 - 3: 224 + 2: 224 9,-8: 0: 53755 9,-7: @@ -10839,7 +10860,7 @@ entities: 0: 4081 9,-9: 0: 47296 - 3: 16 + 2: 16 10,-8: 0: 56343 10,-7: @@ -10867,31 +10888,31 @@ entities: 12,-9: 0: 32768 13,-8: - 0: 119 + 0: 32887 13,-7: - 0: 55568 + 0: 56796 13,-6: - 0: 36061 + 0: 60637 13,-9: 0: 65376 14,-8: - 0: 65228 + 0: 65262 14,-7: 0: 30583 14,-6: 0: 39364 14,-9: - 0: 52428 + 0: 61135 15,-8: - 0: 510 + 0: 511 15,-6: 0: 29452 15,-5: 0: 119 + 15,-9: + 0: 62220 15,-7: 0: 61164 - 15,-9: - 0: 8204 16,-8: 0: 33023 16,-7: @@ -10901,7 +10922,7 @@ entities: 16,-5: 0: 65248 4,-9: - 0: 39312 + 0: 48050 5,-8: 0: 45963 5,-7: @@ -10969,22 +10990,22 @@ entities: 17,-2: 0: 34955 17,-1: - 3: 22016 + 2: 22016 0: 43208 17,0: 0: 30475 - 3: 4 + 2: 4 18,-3: 0: 30591 18,-2: 0: 25207 - 3: 5376 + 2: 5376 18,-1: 0: 61203 - 3: 4196 + 2: 4196 18,0: 0: 49117 - 3: 16418 + 2: 16418 19,-3: 0: 49087 19,-1: @@ -11006,7 +11027,7 @@ entities: 8,-11: 0: 51 7,-11: - 0: 4104 + 0: 4921 7,-10: 0: 62927 9,-12: @@ -11019,7 +11040,7 @@ entities: 0: 65532 -13,8: 0: 43257 - 3: 1798 + 2: 1798 -11,9: 0: 3104 -10,9: @@ -11042,106 +11063,106 @@ entities: 0: 65394 -14,7: 0: 45736 - 3: 19522 + 2: 19522 -14,8: 0: 9386 - 3: 51780 + 2: 51780 -4,13: 0: 119 - 3: 62600 + 2: 62600 -5,13: 0: 30632 -4,14: - 3: 65023 + 2: 65023 -5,14: - 3: 21882 + 2: 21882 0: 5 -4,15: - 3: 4383 + 2: 4383 -5,15: - 3: 29772 + 2: 29772 -4,16: - 3: 18255 + 2: 18255 -3,13: - 3: 14071 + 2: 14071 -3,14: - 3: 13107 + 2: 13107 0: 34952 -3,15: - 3: 8739 + 2: 8739 0: 8 - 6: 34816 + 4: 34816 -3,16: - 3: 60963 - 6: 8 + 2: 60963 + 4: 8 -2,13: - 3: 3324 + 2: 3324 0: 49152 -2,14: 0: 65535 -2,15: 0: 15 - 6: 65280 + 4: 65280 -2,16: - 6: 15 - 3: 65280 + 4: 15 + 2: 65280 -1,16: - 6: 15 - 3: 7936 + 4: 15 + 2: 7936 -5,16: - 3: 7962 + 2: 7962 0: 16452 -4,17: - 3: 47332 + 2: 47332 0: 16384 -5,17: - 3: 42567 + 2: 42567 0: 16384 -4,18: - 3: 35820 + 2: 35820 0: 1024 -5,18: - 3: 4030 + 2: 4030 -4,19: - 3: 51400 + 2: 51400 -3,17: - 3: 49726 + 2: 49722 0: 12288 -3,18: - 3: 3631 + 2: 3631 0: 256 -3,19: - 3: 4112 + 2: 4112 -4,20: - 3: 51400 + 2: 51400 -2,17: - 3: 61455 + 2: 61453 -2,18: - 3: 3455 + 2: 3455 0: 512 -1,17: - 3: 57617 + 2: 57617 0: 4096 -1,18: - 3: 36767 + 2: 36767 -1,19: - 3: 51400 + 2: 51400 0,17: - 3: 30891 + 2: 30891 0: 32768 0,18: - 3: 185 + 2: 185 0: 256 0,19: - 3: 4112 + 2: 4112 -1,20: - 3: 51400 + 2: 51400 1,17: - 3: 4372 + 2: 4372 1,18: - 3: 99 + 2: 99 2,16: - 3: 1 + 2: 1 -8,12: 0: 65328 -9,12: @@ -11157,9 +11178,9 @@ entities: -6,14: 0: 35055 -6,15: - 3: 34952 + 2: 34952 -6,16: - 3: 7960 + 2: 7960 0: 32896 21,-4: 0: 4096 @@ -11194,7 +11215,7 @@ entities: 13,-11: 0: 49135 13,-10: - 0: 2184 + 0: 36040 14,-11: 0: 35212 14,-10: @@ -11206,14 +11227,14 @@ entities: 15,-13: 0: 65409 21,-8: - 3: 32903 + 2: 32903 0: 32624 21,-7: - 3: 7 + 2: 7 22,-8: - 3: 18241 + 2: 18241 22,-7: - 3: 1 + 2: 1 -16,5: 0: 14199 -17,5: @@ -11224,51 +11245,63 @@ entities: 0: 61198 -15,5: 0: 4402 - 3: 17984 + 2: 17984 -15,6: - 3: 16 + 2: 16 0: 236 -14,6: 0: 8208 - 3: 224 + 2: 224 -14,5: - 3: 8 + 2: 8 -8,16: - 3: 20288 + 2: 20288 -7,16: - 3: 24400 + 2: 24400 -6,17: - 3: 34952 + 2: 34952 -6,18: - 3: 136 + 2: 136 0: 2048 12,16: 0: 23955 9,17: - 0: 14 + 0: 1535 + 9,18: + 0: 48 + 2: 62528 + 10,17: + 0: 273 + 10,18: + 2: 63616 + 11,18: + 2: 15904 + 0: 4 11,17: 0: 2048 12,17: - 0: 16 + 0: 48 + 12,18: + 2: 1809 -7,-6: 0: 36864 - 3: 26222 + 2: 26222 -7,-8: - 3: 26342 + 2: 26342 -7,-9: - 3: 28262 + 2: 28262 -7,-7: - 3: 26222 + 2: 26222 -6,-8: - 3: 8244 + 2: 8244 0: 52424 -6,-7: - 3: 17 + 2: 17 0: 63342 -6,-6: 0: 179 -6,-9: - 3: 20300 + 2: 20300 0: 32768 -5,-8: 0: 63863 @@ -11276,7 +11309,7 @@ entities: 0: 34968 -5,-9: 0: 16382 - 3: 1 + 2: 1 -4,-8: 0: 17417 -4,-6: @@ -11306,35 +11339,35 @@ entities: -1,-9: 0: 12544 4,-12: - 0: 1215 + 0: 13503 4,-13: 0: 65262 4,-11: - 0: 30715 + 0: 65531 + 3,-12: + 0: 57442 3,-11: - 0: 32968 + 0: 60654 4,-10: - 0: 4983 + 0: 65535 3,-10: - 0: 52424 + 0: 65258 5,-12: - 0: 52353 + 0: 61129 5,-11: - 0: 58999 + 0: 63095 + 5,-10: + 0: 57855 5,-13: 0: 8177 - 5,-10: - 0: 57358 6,-12: - 0: 30704 + 0: 30711 6,-10: - 0: 56335 + 0: 56351 6,-11: - 0: 26182 + 0: 28366 7,-13: 0: 24576 - 3,-12: - 0: 98 3,-13: 0: 43520 5,-14: @@ -11350,20 +11383,20 @@ entities: 17,-14: 0: 4096 -3,20: - 3: 4112 + 2: 4112 -4,21: - 3: 136 + 2: 136 0,20: - 3: 4112 + 2: 4112 -1,21: - 3: 136 + 2: 136 -7,-10: 0: 2050 - 3: 26348 + 2: 26348 -6,-10: - 3: 17663 + 2: 17663 -5,-10: - 3: 17 + 2: 17 0: 51456 -5,-11: 0: 4096 @@ -11389,7 +11422,7 @@ entities: 1: 3 0: 3712 16,0: - 3: 4 + 2: 4 0: 51208 16,1: 0: 2248 @@ -11397,30 +11430,31 @@ entities: 0: 1911 18,1: 0: 4081 - 3: 14 + 2: 14 19,1: - 3: 13 + 2: 13 0: 3826 20,0: 0: 62208 - 3: 3072 + 2: 3072 20,1: 0: 1023 - 3: 3072 + 2: 3072 21,0: - 3: 9472 + 2: 9472 0: 4096 21,1: - 0: 19 - 3: 1324 + 0: 31 + 2: 3360 22,1: - 3: 31 + 0: 1367 + 2: 520 22,0: - 3: 4096 + 2: 4096 23,1: - 3: 17 + 2: 17 23,0: - 3: 4096 + 2: 4096 uniqueMixes: - volume: 2500 temperature: 293.15 @@ -11452,21 +11486,6 @@ entities: - 0 - 0 - 0 - - volume: 2500 - temperature: 293.14975 - moles: - - 19.950384 - - 75.051445 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - volume: 2500 immutable: True temperature: 213.15 @@ -11498,21 +11517,6 @@ entities: - 0 - 0 - 0 - - volume: 2500 - temperature: 293.14975 - moles: - - 20.078888 - - 75.53487 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - volume: 2500 temperature: 293.15 moles: @@ -11586,6 +11590,29 @@ entities: - type: GridAtmosphere version: 2 data: + tiles: + 0,0: + 0: 52 + 0,-1: + 0: 3872 + -1,-1: + 0: 32768 + uniqueMixes: + - volume: 2500 + temperature: 293.15 + moles: + - 21.824879 + - 82.10312 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 chunkSize: 4 - type: GasTileOverlay - type: RadiationGridResistance @@ -11860,6 +11887,11 @@ entities: - type: Transform pos: -3.5,42.5 parent: 2 + - uid: 17885 + components: + - type: Transform + pos: 35.5,61.5 + parent: 2 - proto: Airlock entities: - uid: 21 @@ -11897,6 +11929,22 @@ entities: - type: Transform pos: 51.5,-13.5 parent: 2 + - uid: 50 + components: + - type: MetaData + name: Public Garden + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,-13.5 + parent: 2 + - uid: 51 + components: + - type: MetaData + name: Boxing Ring + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,-13.5 + parent: 2 - proto: AirlockArmoryLocked entities: - uid: 27 @@ -12006,22 +12054,6 @@ entities: - type: Transform pos: -28.5,45.5 parent: 2 -- proto: AirlockCargo - entities: - - uid: 50 - components: - - type: MetaData - name: Public Garden - - type: Transform - pos: -19.5,-13.5 - parent: 2 - - uid: 51 - components: - - type: MetaData - name: Boxing Ring - - type: Transform - pos: -12.5,-13.5 - parent: 2 - proto: AirlockCargoGlass entities: - uid: 52 @@ -12184,6 +12216,13 @@ entities: - type: Transform pos: 35.5,46.5 parent: 2 + - uid: 9280 + components: + - type: MetaData + name: Bridge Access + - type: Transform + pos: 46.5,43.5 + parent: 2 - proto: AirlockCommandLocked entities: - uid: 69 @@ -12459,6 +12498,15 @@ entities: - type: Transform pos: -70.5,12.5 parent: 2 +- proto: AirlockExternalCommandLocked + entities: + - uid: 17859 + components: + - type: MetaData + name: AI Satellite + - type: Transform + pos: 38.5,58.5 + parent: 2 - proto: AirlockExternalGlass entities: - uid: 101 @@ -12575,12 +12623,16 @@ entities: parent: 2 - uid: 17033 components: + - type: MetaData + name: Cargo Shuttle Salvage Dock - type: Transform rot: -1.5707963267948966 rad pos: 66.5,3.5 parent: 2 - uid: 17034 components: + - type: MetaData + name: Cargo Shuttle Salvage Dock - type: Transform rot: -1.5707963267948966 rad pos: 66.5,5.5 @@ -12749,6 +12801,20 @@ entities: - type: Transform pos: 69.5,-18.5 parent: 2 + - uid: 208 + components: + - type: MetaData + name: Library + - type: Transform + pos: 39.5,-8.5 + parent: 2 + - uid: 209 + components: + - type: MetaData + name: Library + - type: Transform + pos: 38.5,-8.5 + parent: 2 - proto: AirlockGlassShuttle entities: - uid: 141 @@ -12797,6 +12863,14 @@ entities: rot: -1.5707963267948966 rad pos: -67.5,-11.5 parent: 2 + - uid: 15393 + components: + - type: MetaData + name: Salvage Dock + - type: Transform + rot: 3.141592653589793 rad + pos: 90.5,6.5 + parent: 2 - proto: AirlockHeadOfPersonnelGlassLocked entities: - uid: 147 @@ -13410,6 +13484,15 @@ entities: - type: Transform pos: 51.5,11.5 parent: 2 +- proto: AirlockResearchDirectorGlassLocked + entities: + - uid: 11021 + components: + - type: MetaData + name: AI Upload + - type: Transform + pos: 42.5,63.5 + parent: 2 - proto: AirlockResearchDirectorLocked entities: - uid: 206 @@ -13576,6 +13659,20 @@ entities: - type: Transform pos: -9.5,29.5 parent: 2 + - uid: 12693 + components: + - type: MetaData + name: Cell 2 + - type: Transform + pos: -5.5,17.5 + parent: 2 + - uid: 13716 + components: + - type: MetaData + name: Cell 1 + - type: Transform + pos: -7.5,17.5 + parent: 2 - proto: AirlockSecurityLawyerGlassLocked entities: - uid: 42 @@ -13647,20 +13744,6 @@ entities: parent: 2 - proto: AirlockServiceGlassLocked entities: - - uid: 208 - components: - - type: MetaData - name: Library - - type: Transform - pos: 39.5,-8.5 - parent: 2 - - uid: 209 - components: - - type: MetaData - name: Library - - type: Transform - pos: 38.5,-8.5 - parent: 2 - uid: 230 components: - type: MetaData @@ -13684,6 +13767,14 @@ entities: - type: Transform pos: -15.5,1.5 parent: 2 +- proto: AirlockShuttleAssembly + entities: + - uid: 9891 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 88.5,6.5 + parent: 2 - proto: AirlockVirologyGlassLocked entities: - uid: 237 @@ -13729,6 +13820,26 @@ entities: - type: Transform pos: -8.5,-19.5 parent: 2 +- proto: AlwaysPoweredlightCyan + entities: + - uid: 12560 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 38.5,64.5 + parent: 2 + - uid: 13172 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,68.5 + parent: 2 + - uid: 17780 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.5,68.5 + parent: 2 - proto: AmePartFlatpack entities: - uid: 928 @@ -13782,6 +13893,10 @@ entities: - type: Transform pos: -33.5,33.5 parent: 2 + - type: Apc + hasAccess: True + - type: PowerNetworkBattery + canDischarge: False - uid: 254 components: - type: MetaData @@ -14133,6 +14248,14 @@ entities: rot: 1.5707963267948966 rad pos: -69.5,20.5 parent: 2 + - uid: 17683 + components: + - type: MetaData + name: AI Satellite APC + - type: Transform + rot: -1.5707963267948966 rad + pos: 42.5,65.5 + parent: 2 - proto: APCHighCapacity entities: - uid: 294 @@ -14165,6 +14288,14 @@ entities: - type: Transform pos: -18.5,32.5 parent: 2 + - uid: 473 + components: + - type: MetaData + name: AI Core APC + - type: Transform + rot: 1.5707963267948966 rad + pos: 35.5,69.5 + parent: 2 - proto: APCSuperCapacity entities: - uid: 298 @@ -14228,6 +14359,18 @@ entities: - type: Transform pos: 15.292008,25.39704 parent: 2 +- proto: AsimovCircuitBoard + entities: + - uid: 17677 + components: + - type: Transform + pos: 34.385292,63.681503 + parent: 2 + - uid: 17678 + components: + - type: Transform + pos: 34.385292,63.369003 + parent: 2 - proto: AsteroidAltRock entities: - uid: 337 @@ -14277,183 +14420,178 @@ entities: - type: Transform pos: 24.5,-41.5 parent: 2 -- proto: AtmosDeviceFanTiny +- proto: AtmosDeviceFanDirectional entities: + - uid: 248 + components: + - type: Transform + pos: -10.5,14.5 + parent: 2 - uid: 459 components: - type: Transform - pos: 36.5,-15.5 + rot: 3.141592653589793 rad + pos: 37.5,-15.5 parent: 2 - uid: 460 components: - type: Transform - pos: 37.5,-15.5 + rot: 3.141592653589793 rad + pos: 36.5,-15.5 parent: 2 - uid: 461 components: - type: Transform - pos: -10.5,14.5 + rot: 1.5707963267948966 rad + pos: 0.5,26.5 parent: 2 - uid: 463 components: - type: Transform + rot: 1.5707963267948966 rad pos: 0.5,27.5 parent: 2 - uid: 464 components: - type: Transform - pos: 0.5,26.5 + rot: 1.5707963267948966 rad + pos: 1.5,16.5 parent: 2 - uid: 465 components: - type: Transform - pos: 1.5,16.5 + rot: -1.5707963267948966 rad + pos: 6.5,21.5 parent: 2 - uid: 466 components: - type: Transform + rot: -1.5707963267948966 rad pos: 6.5,20.5 parent: 2 - uid: 467 components: - type: Transform - pos: 6.5,21.5 + rot: 1.5707963267948966 rad + pos: 67.5,31.5 parent: 2 - uid: 468 components: - type: Transform + rot: 1.5707963267948966 rad pos: 2.5,37.5 parent: 2 - uid: 469 components: - type: Transform + rot: -1.5707963267948966 rad pos: 12.5,37.5 parent: 2 - uid: 470 components: - type: Transform + rot: 3.141592653589793 rad pos: 21.5,50.5 parent: 2 - uid: 472 components: - type: Transform - pos: 60.5,31.5 - parent: 2 - - uid: 473 - components: - - type: Transform - pos: 60.5,33.5 + rot: 1.5707963267948966 rad + pos: 14.5,51.5 parent: 2 - uid: 474 components: - type: Transform - pos: 67.5,31.5 - parent: 2 - - uid: 475 - components: - - type: Transform + rot: 1.5707963267948966 rad pos: 67.5,33.5 parent: 2 - - uid: 476 + - uid: 475 components: - type: Transform + rot: 1.5707963267948966 rad pos: 67.5,39.5 parent: 2 - - uid: 477 + - uid: 476 components: - type: Transform + rot: 1.5707963267948966 rad pos: 67.5,41.5 parent: 2 - - uid: 478 - components: - - type: Transform - pos: 60.5,41.5 - parent: 2 - - uid: 479 + - uid: 477 components: - type: Transform - pos: 60.5,39.5 + rot: 3.141592653589793 rad + pos: -12.5,11.5 parent: 2 - uid: 480 components: - type: Transform - pos: -12.5,11.5 + rot: 3.141592653589793 rad + pos: 22.5,30.5 parent: 2 - uid: 481 components: - type: Transform - pos: 22.5,30.5 + rot: -1.5707963267948966 rad + pos: 20.5,13.5 parent: 2 - uid: 482 components: - type: Transform + rot: -1.5707963267948966 rad pos: 20.5,11.5 parent: 2 - uid: 483 components: - type: Transform - pos: 20.5,13.5 + rot: -1.5707963267948966 rad + pos: 22.5,-19.5 parent: 2 - uid: 484 components: - type: Transform - pos: 22.5,-19.5 + pos: 38.5,-2.5 parent: 2 - uid: 485 components: - type: Transform + rot: -1.5707963267948966 rad pos: 15.5,16.5 parent: 2 - uid: 486 components: - type: Transform + rot: 1.5707963267948966 rad pos: 12.5,16.5 parent: 2 - - uid: 487 - components: - - type: Transform - pos: 38.5,-2.5 - parent: 2 - uid: 489 components: - type: Transform + rot: 1.5707963267948966 rad pos: 55.5,5.5 parent: 2 - uid: 490 components: - type: Transform + rot: 1.5707963267948966 rad pos: 55.5,3.5 parent: 2 - uid: 491 components: - type: Transform - pos: 55.5,2.5 + pos: 33.5,-3.5 parent: 2 - uid: 492 components: - type: Transform + rot: 3.141592653589793 rad pos: -18.5,23.5 parent: 2 - - uid: 493 - components: - - type: Transform - pos: -18.5,40.5 - parent: 2 - - uid: 494 - components: - - type: Transform - pos: -17.5,40.5 - parent: 2 - uid: 495 components: - type: Transform pos: -17.5,29.5 parent: 2 - - uid: 496 - components: - - type: Transform - pos: -8.5,44.5 - parent: 2 - uid: 497 components: - type: Transform @@ -14472,7 +14610,7 @@ entities: - uid: 500 components: - type: Transform - pos: 33.5,-3.5 + pos: 38.5,-8.5 parent: 2 - uid: 501 components: @@ -14482,131 +14620,151 @@ entities: - uid: 502 components: - type: Transform - pos: 38.5,-8.5 + rot: -1.5707963267948966 rad + pos: 49.5,-18.5 parent: 2 - uid: 503 components: - type: Transform + rot: 3.141592653589793 rad pos: 43.5,-19.5 parent: 2 - uid: 504 components: - type: Transform + rot: 3.141592653589793 rad pos: 44.5,-19.5 parent: 2 - uid: 505 components: - type: Transform - pos: 49.5,-18.5 + rot: 1.5707963267948966 rad + pos: 26.5,-10.5 parent: 2 - uid: 507 components: - type: Transform - pos: 26.5,-10.5 + pos: 56.5,-9.5 parent: 2 - uid: 508 components: - type: Transform - pos: 56.5,-9.5 + rot: 3.141592653589793 rad + pos: 56.5,-14.5 parent: 2 - uid: 509 components: - type: Transform - pos: 56.5,-14.5 + rot: -1.5707963267948966 rad + pos: 75.5,-19.5 parent: 2 - uid: 510 components: - type: Transform - pos: 75.5,-19.5 + pos: 66.5,-10.5 parent: 2 - uid: 511 components: - type: Transform - pos: 66.5,-10.5 + rot: 3.141592653589793 rad + pos: 69.5,-18.5 parent: 2 - uid: 512 components: - type: Transform + rot: 3.141592653589793 rad pos: 70.5,-18.5 parent: 2 - uid: 513 components: - type: Transform - pos: 69.5,-18.5 + rot: -1.5707963267948966 rad + pos: 66.5,-26.5 parent: 2 - uid: 514 components: - type: Transform - pos: 66.5,-26.5 + pos: 49.5,-10.5 parent: 2 - uid: 515 components: - type: Transform + rot: 3.141592653589793 rad pos: 51.5,-13.5 parent: 2 - uid: 516 components: - type: Transform - pos: 49.5,-10.5 + pos: 55.5,-39.5 parent: 2 - uid: 517 components: - type: Transform + rot: 3.141592653589793 rad pos: -19.5,-13.5 parent: 2 - uid: 518 components: - type: Transform - pos: 55.5,-39.5 + rot: 1.5707963267948966 rad + pos: 27.5,-46.5 parent: 2 - uid: 519 components: - type: Transform - pos: 27.5,-46.5 + rot: 3.141592653589793 rad + pos: 15.5,-25.5 parent: 2 - uid: 520 components: - type: Transform - pos: 15.5,-25.5 + rot: -1.5707963267948966 rad + pos: 10.5,-12.5 parent: 2 - uid: 521 components: - type: Transform - pos: 10.5,-12.5 + rot: 3.141592653589793 rad + pos: 12.5,-9.5 parent: 2 - uid: 522 components: - type: Transform - pos: 12.5,-9.5 + rot: 1.5707963267948966 rad + pos: 32.5,-1.5 parent: 2 - uid: 523 components: - type: Transform - pos: 32.5,-1.5 + rot: 3.141592653589793 rad + pos: 30.5,-0.5 parent: 2 - uid: 524 components: - type: Transform - pos: 30.5,-0.5 + rot: 3.141592653589793 rad + pos: 21.5,-5.5 parent: 2 - uid: 525 components: - type: Transform - pos: 21.5,-5.5 + pos: 38.5,0.5 parent: 2 - uid: 526 components: - type: Transform - pos: 38.5,0.5 + pos: -3.5,10.5 parent: 2 - uid: 527 components: - type: Transform + rot: 3.141592653589793 rad pos: -12.5,-13.5 parent: 2 - uid: 528 components: - type: Transform + rot: -1.5707963267948966 rad pos: -10.5,-11.5 parent: 2 - uid: 529 @@ -14617,27 +14775,31 @@ entities: - uid: 530 components: - type: Transform + rot: 3.141592653589793 rad pos: -22.5,-8.5 parent: 2 - uid: 531 components: - type: Transform + rot: 1.5707963267948966 rad pos: -21.5,-3.5 parent: 2 - uid: 532 components: - type: Transform + rot: 1.5707963267948966 rad pos: -15.5,1.5 parent: 2 - uid: 533 components: - type: Transform + rot: 3.141592653589793 rad pos: -7.5,3.5 parent: 2 - uid: 534 components: - type: Transform - pos: -3.5,10.5 + pos: 51.5,25.5 parent: 2 - uid: 535 components: @@ -14647,93 +14809,132 @@ entities: - uid: 536 components: - type: Transform - pos: 51.5,25.5 + rot: 3.141592653589793 rad + pos: 12.5,5.5 parent: 2 - uid: 537 components: - type: Transform + rot: 3.141592653589793 rad pos: 13.5,5.5 parent: 2 - uid: 538 components: - type: Transform - pos: 12.5,5.5 - parent: 2 - - uid: 539 - components: - - type: Transform + rot: -1.5707963267948966 rad pos: 22.5,-24.5 parent: 2 - - uid: 540 + - uid: 539 components: - type: Transform + rot: -1.5707963267948966 rad pos: 29.5,-39.5 parent: 2 - - uid: 648 + - uid: 540 components: - type: Transform + rot: 1.5707963267948966 rad pos: 78.5,-29.5 parent: 2 - - uid: 4893 + - uid: 648 components: - type: Transform + rot: 1.5707963267948966 rad pos: 42.5,40.5 parent: 2 - - uid: 6348 - components: - - type: Transform - pos: 55.5,6.5 - parent: 2 - - uid: 6470 + - uid: 2798 components: - type: Transform + rot: 3.141592653589793 rad pos: 45.5,-19.5 parent: 2 - - uid: 9281 + - uid: 3277 components: - type: Transform + rot: 3.141592653589793 rad pos: 49.5,12.5 parent: 2 - - uid: 12254 + - uid: 4893 components: - type: Transform + rot: 1.5707963267948966 rad pos: -58.5,12.5 parent: 2 - - uid: 12398 + - uid: 5981 components: - type: Transform + rot: 1.5707963267948966 rad pos: -58.5,14.5 parent: 2 - - uid: 14692 + - uid: 6189 components: - type: Transform + rot: 3.141592653589793 rad pos: 46.5,-19.5 parent: 2 - - uid: 16551 + - uid: 6190 components: - type: Transform + rot: -1.5707963267948966 rad pos: -70.5,14.5 parent: 2 - - uid: 16997 + - uid: 6191 components: - type: Transform pos: 28.5,51.5 parent: 2 - - uid: 16998 + - uid: 6192 components: - type: Transform + rot: -1.5707963267948966 rad pos: 29.5,48.5 parent: 2 - - uid: 17148 + - uid: 6193 components: - type: Transform pos: 49.5,1.5 parent: 2 - - uid: 17290 + - uid: 6194 components: - type: Transform + rot: -1.5707963267948966 rad pos: -69.5,22.5 parent: 2 + - uid: 6348 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,32.5 + parent: 2 + - uid: 6470 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,10.5 + parent: 2 + - uid: 7225 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,44.5 + parent: 2 + - uid: 17147 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,52.5 + parent: 2 + - uid: 17613 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,22.5 + parent: 2 + - uid: 17862 + components: + - type: Transform + pos: 38.5,58.5 + parent: 2 - proto: AtmosFixBlockerMarker entities: - uid: 551 @@ -15188,6 +15389,246 @@ entities: - type: Transform pos: -70.5,24.5 parent: 2 + - uid: 17625 + components: + - type: Transform + pos: -15.5,28.5 + parent: 2 + - uid: 17626 + components: + - type: Transform + pos: -15.5,27.5 + parent: 2 + - uid: 17627 + components: + - type: Transform + pos: -15.5,26.5 + parent: 2 + - uid: 17628 + components: + - type: Transform + pos: -15.5,25.5 + parent: 2 + - uid: 17629 + components: + - type: Transform + pos: -15.5,24.5 + parent: 2 + - uid: 17630 + components: + - type: Transform + pos: -14.5,28.5 + parent: 2 + - uid: 17631 + components: + - type: Transform + pos: -14.5,27.5 + parent: 2 + - uid: 17632 + components: + - type: Transform + pos: -14.5,26.5 + parent: 2 + - uid: 17633 + components: + - type: Transform + pos: -14.5,25.5 + parent: 2 + - uid: 17634 + components: + - type: Transform + pos: -14.5,24.5 + parent: 2 + - uid: 17635 + components: + - type: Transform + pos: -13.5,28.5 + parent: 2 + - uid: 17636 + components: + - type: Transform + pos: -13.5,27.5 + parent: 2 + - uid: 17637 + components: + - type: Transform + pos: -13.5,26.5 + parent: 2 + - uid: 17638 + components: + - type: Transform + pos: -13.5,25.5 + parent: 2 + - uid: 17639 + components: + - type: Transform + pos: -13.5,24.5 + parent: 2 + - uid: 17640 + components: + - type: Transform + pos: -12.5,28.5 + parent: 2 + - uid: 17641 + components: + - type: Transform + pos: -12.5,27.5 + parent: 2 + - uid: 17642 + components: + - type: Transform + pos: -12.5,26.5 + parent: 2 + - uid: 17643 + components: + - type: Transform + pos: -12.5,25.5 + parent: 2 + - uid: 17644 + components: + - type: Transform + pos: -12.5,24.5 + parent: 2 + - uid: 17645 + components: + - type: Transform + pos: -11.5,28.5 + parent: 2 + - uid: 17646 + components: + - type: Transform + pos: -11.5,27.5 + parent: 2 + - uid: 17647 + components: + - type: Transform + pos: -11.5,26.5 + parent: 2 + - uid: 17648 + components: + - type: Transform + pos: -11.5,25.5 + parent: 2 + - uid: 17649 + components: + - type: Transform + pos: -11.5,24.5 + parent: 2 + - uid: 17650 + components: + - type: Transform + pos: -19.5,28.5 + parent: 2 + - uid: 17651 + components: + - type: Transform + pos: -19.5,27.5 + parent: 2 + - uid: 17652 + components: + - type: Transform + pos: -19.5,26.5 + parent: 2 + - uid: 17653 + components: + - type: Transform + pos: -19.5,25.5 + parent: 2 + - uid: 17654 + components: + - type: Transform + pos: -19.5,24.5 + parent: 2 + - uid: 17655 + components: + - type: Transform + pos: -18.5,28.5 + parent: 2 + - uid: 17656 + components: + - type: Transform + pos: -18.5,27.5 + parent: 2 + - uid: 17657 + components: + - type: Transform + pos: -18.5,26.5 + parent: 2 + - uid: 17658 + components: + - type: Transform + pos: -18.5,25.5 + parent: 2 + - uid: 17659 + components: + - type: Transform + pos: -18.5,24.5 + parent: 2 + - uid: 17660 + components: + - type: Transform + pos: -17.5,28.5 + parent: 2 + - uid: 17661 + components: + - type: Transform + pos: -17.5,27.5 + parent: 2 + - uid: 17662 + components: + - type: Transform + pos: -17.5,26.5 + parent: 2 + - uid: 17663 + components: + - type: Transform + pos: -17.5,25.5 + parent: 2 + - uid: 17664 + components: + - type: Transform + pos: -17.5,24.5 + parent: 2 + - uid: 17665 + components: + - type: Transform + pos: -16.5,28.5 + parent: 2 + - uid: 17666 + components: + - type: Transform + pos: -16.5,27.5 + parent: 2 + - uid: 17667 + components: + - type: Transform + pos: -16.5,26.5 + parent: 2 + - uid: 17668 + components: + - type: Transform + pos: -16.5,25.5 + parent: 2 + - uid: 17669 + components: + - type: Transform + pos: -16.5,24.5 + parent: 2 + - uid: 17670 + components: + - type: Transform + pos: -20.5,27.5 + parent: 2 + - uid: 17671 + components: + - type: Transform + pos: -20.5,26.5 + parent: 2 + - uid: 17672 + components: + - type: Transform + pos: -20.5,25.5 + parent: 2 - proto: AtmosFixNitrogenMarker entities: - uid: 588 @@ -15217,13 +15658,13 @@ entities: - type: Transform pos: -19.5,1.5 parent: 2 -- proto: AutolatheMachineCircuitboard - entities: - - uid: 7225 + - uid: 17618 components: - type: Transform - pos: 8.742234,54.82486 + pos: 24.5,38.5 parent: 2 +- proto: AutolatheMachineCircuitboard + entities: - uid: 13526 components: - type: Transform @@ -15236,6 +15677,13 @@ entities: - type: Transform pos: 26.705452,25.11972 parent: 2 +- proto: BalloonNT + entities: + - uid: 17911 + components: + - type: Transform + pos: 39.4959,59.725105 + parent: 2 - proto: BanjoInstrument entities: - uid: 593 @@ -16363,11 +16811,6 @@ entities: - type: Transform pos: -25.164654,-1.2735014 parent: 2 - - uid: 776 - components: - - type: Transform - pos: -6.278533,14.709256 - parent: 2 - proto: BoxFolderBlack entities: - uid: 777 @@ -16631,19 +17074,34 @@ entities: parent: 2 - proto: BrigTimer entities: - - uid: 10230 + - uid: 12254 components: - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,18.5 + rot: 1.5707963267948966 rad + pos: -9.5,17.5 parent: 2 - type: SignalTimer - label: CELLS + label: CELL1 - type: DeviceLinkSource linkedPorts: - 248: + 13716: - Start: Close - Timer: Open + - Timer: AutoClose + - uid: 12398 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,17.5 + parent: 2 + - type: SignalTimer + label: CELL2 + - type: DeviceLinkSource + linkedPorts: + 12693: + - Start: Close + - Timer: Open + - Timer: AutoClose - proto: Bucket entities: - uid: 822 @@ -26455,11 +26913,6 @@ entities: - type: Transform pos: -7.5,16.5 parent: 2 - - uid: 2798 - components: - - type: Transform - pos: -6.5,16.5 - parent: 2 - uid: 2799 components: - type: Transform @@ -27975,6 +28428,11 @@ entities: - type: Transform pos: -0.5,59.5 parent: 2 + - uid: 8513 + components: + - type: Transform + pos: -7.5,15.5 + parent: 2 - uid: 8609 components: - type: Transform @@ -28050,6 +28508,16 @@ entities: - type: Transform pos: -2.5,-8.5 parent: 2 + - uid: 11747 + components: + - type: Transform + pos: -6.5,18.5 + parent: 2 + - uid: 11749 + components: + - type: Transform + pos: -5.5,18.5 + parent: 2 - uid: 12383 components: - type: Transform @@ -28090,6 +28558,11 @@ entities: - type: Transform pos: 71.5,-19.5 parent: 2 + - uid: 14142 + components: + - type: Transform + pos: -5.5,15.5 + parent: 2 - uid: 15573 components: - type: Transform @@ -28960,6 +29433,346 @@ entities: - type: Transform pos: -30.5,44.5 parent: 2 + - uid: 17684 + components: + - type: Transform + pos: 42.5,65.5 + parent: 2 + - uid: 17685 + components: + - type: Transform + pos: 41.5,65.5 + parent: 2 + - uid: 17686 + components: + - type: Transform + pos: 41.5,64.5 + parent: 2 + - uid: 17687 + components: + - type: Transform + pos: 41.5,63.5 + parent: 2 + - uid: 17688 + components: + - type: Transform + pos: 40.5,64.5 + parent: 2 + - uid: 17689 + components: + - type: Transform + pos: 39.5,64.5 + parent: 2 + - uid: 17690 + components: + - type: Transform + pos: 37.5,64.5 + parent: 2 + - uid: 17691 + components: + - type: Transform + pos: 36.5,64.5 + parent: 2 + - uid: 17692 + components: + - type: Transform + pos: 38.5,64.5 + parent: 2 + - uid: 17693 + components: + - type: Transform + pos: 36.5,63.5 + parent: 2 + - uid: 17694 + components: + - type: Transform + pos: 35.5,63.5 + parent: 2 + - uid: 17695 + components: + - type: Transform + pos: 34.5,63.5 + parent: 2 + - uid: 17696 + components: + - type: Transform + pos: 34.5,64.5 + parent: 2 + - uid: 17697 + components: + - type: Transform + pos: 36.5,62.5 + parent: 2 + - uid: 17698 + components: + - type: Transform + pos: 36.5,61.5 + parent: 2 + - uid: 17699 + components: + - type: Transform + pos: 40.5,61.5 + parent: 2 + - uid: 17700 + components: + - type: Transform + pos: 39.5,61.5 + parent: 2 + - uid: 17701 + components: + - type: Transform + pos: 38.5,61.5 + parent: 2 + - uid: 17702 + components: + - type: Transform + pos: 37.5,61.5 + parent: 2 + - uid: 17703 + components: + - type: Transform + pos: 30.5,66.5 + parent: 2 + - uid: 17704 + components: + - type: Transform + pos: 30.5,67.5 + parent: 2 + - uid: 17705 + components: + - type: Transform + pos: 30.5,68.5 + parent: 2 + - uid: 17706 + components: + - type: Transform + pos: 31.5,68.5 + parent: 2 + - uid: 17707 + components: + - type: Transform + pos: 31.5,70.5 + parent: 2 + - uid: 17708 + components: + - type: Transform + pos: 31.5,71.5 + parent: 2 + - uid: 17709 + components: + - type: Transform + pos: 31.5,72.5 + parent: 2 + - uid: 17710 + components: + - type: Transform + pos: 31.5,69.5 + parent: 2 + - uid: 17711 + components: + - type: Transform + pos: 32.5,72.5 + parent: 2 + - uid: 17712 + components: + - type: Transform + pos: 32.5,73.5 + parent: 2 + - uid: 17713 + components: + - type: Transform + pos: 34.5,73.5 + parent: 2 + - uid: 17714 + components: + - type: Transform + pos: 35.5,73.5 + parent: 2 + - uid: 17715 + components: + - type: Transform + pos: 33.5,73.5 + parent: 2 + - uid: 17716 + components: + - type: Transform + pos: 29.5,66.5 + parent: 2 + - uid: 17717 + components: + - type: Transform + pos: 28.5,66.5 + parent: 2 + - uid: 17718 + components: + - type: Transform + pos: 28.5,65.5 + parent: 2 + - uid: 17719 + components: + - type: Transform + pos: 27.5,65.5 + parent: 2 + - uid: 17720 + components: + - type: Transform + pos: 27.5,64.5 + parent: 2 + - uid: 17721 + components: + - type: Transform + pos: 27.5,63.5 + parent: 2 + - uid: 17722 + components: + - type: Transform + pos: 27.5,62.5 + parent: 2 + - uid: 17723 + components: + - type: Transform + pos: 27.5,61.5 + parent: 2 + - uid: 17724 + components: + - type: Transform + pos: 27.5,60.5 + parent: 2 + - uid: 17725 + components: + - type: Transform + pos: 30.5,59.5 + parent: 2 + - uid: 17726 + components: + - type: Transform + pos: 30.5,60.5 + parent: 2 + - uid: 17727 + components: + - type: Transform + pos: 30.5,61.5 + parent: 2 + - uid: 17728 + components: + - type: Transform + pos: 30.5,62.5 + parent: 2 + - uid: 17729 + components: + - type: Transform + pos: 30.5,63.5 + parent: 2 + - uid: 17730 + components: + - type: Transform + pos: 29.5,63.5 + parent: 2 + - uid: 17731 + components: + - type: Transform + pos: 29.5,64.5 + parent: 2 + - uid: 17732 + components: + - type: Transform + pos: 29.5,65.5 + parent: 2 + - uid: 17733 + components: + - type: Transform + pos: 27.5,59.5 + parent: 2 + - uid: 17734 + components: + - type: Transform + pos: 28.5,59.5 + parent: 2 + - uid: 17735 + components: + - type: Transform + pos: 29.5,59.5 + parent: 2 + - uid: 17736 + components: + - type: Transform + pos: 31.5,59.5 + parent: 2 + - uid: 17737 + components: + - type: Transform + pos: 32.5,59.5 + parent: 2 + - uid: 17738 + components: + - type: Transform + pos: 33.5,59.5 + parent: 2 + - uid: 17739 + components: + - type: Transform + pos: 34.5,59.5 + parent: 2 + - uid: 17740 + components: + - type: Transform + pos: 34.5,60.5 + parent: 2 + - uid: 17741 + components: + - type: Transform + pos: 34.5,61.5 + parent: 2 + - uid: 17742 + components: + - type: Transform + pos: 35.5,61.5 + parent: 2 + - uid: 17743 + components: + - type: Transform + pos: 35.5,69.5 + parent: 2 + - uid: 17744 + components: + - type: Transform + pos: 36.5,69.5 + parent: 2 + - uid: 17745 + components: + - type: Transform + pos: 37.5,69.5 + parent: 2 + - uid: 17746 + components: + - type: Transform + pos: 38.5,69.5 + parent: 2 + - uid: 17747 + components: + - type: Transform + pos: 38.5,68.5 + parent: 2 + - uid: 17748 + components: + - type: Transform + pos: 38.5,67.5 + parent: 2 + - uid: 17749 + components: + - type: Transform + pos: 38.5,70.5 + parent: 2 + - uid: 17914 + components: + - type: Transform + pos: 38.5,60.5 + parent: 2 + - uid: 17915 + components: + - type: Transform + pos: 38.5,59.5 + parent: 2 - proto: CableApcStack entities: - uid: 3087 @@ -29029,6 +29842,16 @@ entities: - type: Transform pos: -43.43546,25.590607 parent: 2 + - uid: 16997 + components: + - type: Transform + pos: 88.21957,5.6372128 + parent: 2 + - uid: 16998 + components: + - type: Transform + pos: 88.45394,5.7465878 + parent: 2 - proto: Cablecuffs entities: - uid: 3100 @@ -33130,6 +33953,61 @@ entities: - type: Transform pos: -39.5,12.5 parent: 2 + - uid: 17766 + components: + - type: Transform + pos: 41.5,69.5 + parent: 2 + - uid: 17767 + components: + - type: Transform + pos: 40.5,69.5 + parent: 2 + - uid: 17768 + components: + - type: Transform + pos: 39.5,69.5 + parent: 2 + - uid: 17769 + components: + - type: Transform + pos: 38.5,69.5 + parent: 2 + - uid: 17770 + components: + - type: Transform + pos: 38.5,68.5 + parent: 2 + - uid: 17771 + components: + - type: Transform + pos: 38.5,67.5 + parent: 2 + - uid: 17772 + components: + - type: Transform + pos: 38.5,66.5 + parent: 2 + - uid: 17773 + components: + - type: Transform + pos: 37.5,66.5 + parent: 2 + - uid: 17774 + components: + - type: Transform + pos: 36.5,66.5 + parent: 2 + - uid: 17775 + components: + - type: Transform + pos: 39.5,66.5 + parent: 2 + - uid: 17776 + components: + - type: Transform + pos: 40.5,66.5 + parent: 2 - proto: CableHVStack entities: - uid: 3880 @@ -37064,6 +37942,81 @@ entities: - type: Transform pos: 76.5,6.5 parent: 2 + - uid: 17750 + components: + - type: Transform + pos: 35.5,69.5 + parent: 2 + - uid: 17751 + components: + - type: Transform + pos: 36.5,69.5 + parent: 2 + - uid: 17752 + components: + - type: Transform + pos: 37.5,69.5 + parent: 2 + - uid: 17753 + components: + - type: Transform + pos: 38.5,69.5 + parent: 2 + - uid: 17754 + components: + - type: Transform + pos: 39.5,69.5 + parent: 2 + - uid: 17755 + components: + - type: Transform + pos: 40.5,69.5 + parent: 2 + - uid: 17756 + components: + - type: Transform + pos: 41.5,69.5 + parent: 2 + - uid: 17757 + components: + - type: Transform + pos: 42.5,65.5 + parent: 2 + - uid: 17758 + components: + - type: Transform + pos: 41.5,65.5 + parent: 2 + - uid: 17759 + components: + - type: Transform + pos: 40.5,65.5 + parent: 2 + - uid: 17760 + components: + - type: Transform + pos: 38.5,65.5 + parent: 2 + - uid: 17761 + components: + - type: Transform + pos: 39.5,65.5 + parent: 2 + - uid: 17762 + components: + - type: Transform + pos: 38.5,66.5 + parent: 2 + - uid: 17763 + components: + - type: Transform + pos: 38.5,68.5 + parent: 2 + - uid: 17764 + components: + - type: Transform + pos: 38.5,67.5 + parent: 2 - proto: CableMVStack entities: - uid: 4622 @@ -42529,6 +43482,11 @@ entities: rot: 3.141592653589793 rad pos: -10.5,50.5 parent: 2 + - uid: 10180 + components: + - type: Transform + pos: 55.5,-2.5 + parent: 2 - uid: 10218 components: - type: Transform @@ -43214,6 +44172,166 @@ entities: rot: 1.5707963267948966 rad pos: -54.5,16.5 parent: 2 + - uid: 17816 + components: + - type: Transform + pos: 27.5,61.5 + parent: 2 + - uid: 17817 + components: + - type: Transform + pos: 27.5,62.5 + parent: 2 + - uid: 17818 + components: + - type: Transform + pos: 27.5,63.5 + parent: 2 + - uid: 17819 + components: + - type: Transform + pos: 27.5,64.5 + parent: 2 + - uid: 17820 + components: + - type: Transform + pos: 27.5,65.5 + parent: 2 + - uid: 17821 + components: + - type: Transform + pos: 28.5,65.5 + parent: 2 + - uid: 17822 + components: + - type: Transform + pos: 28.5,66.5 + parent: 2 + - uid: 17823 + components: + - type: Transform + pos: 30.5,66.5 + parent: 2 + - uid: 17824 + components: + - type: Transform + pos: 29.5,66.5 + parent: 2 + - uid: 17825 + components: + - type: Transform + pos: 30.5,67.5 + parent: 2 + - uid: 17826 + components: + - type: Transform + pos: 30.5,68.5 + parent: 2 + - uid: 17827 + components: + - type: Transform + pos: 31.5,68.5 + parent: 2 + - uid: 17828 + components: + - type: Transform + pos: 31.5,69.5 + parent: 2 + - uid: 17829 + components: + - type: Transform + pos: 31.5,70.5 + parent: 2 + - uid: 17830 + components: + - type: Transform + pos: 31.5,71.5 + parent: 2 + - uid: 17831 + components: + - type: Transform + pos: 31.5,72.5 + parent: 2 + - uid: 17832 + components: + - type: Transform + pos: 32.5,72.5 + parent: 2 + - uid: 17833 + components: + - type: Transform + pos: 32.5,73.5 + parent: 2 + - uid: 17834 + components: + - type: Transform + pos: 34.5,73.5 + parent: 2 + - uid: 17835 + components: + - type: Transform + pos: 33.5,73.5 + parent: 2 + - uid: 17836 + components: + - type: Transform + pos: 27.5,59.5 + parent: 2 + - uid: 17837 + components: + - type: Transform + pos: 29.5,59.5 + parent: 2 + - uid: 17838 + components: + - type: Transform + pos: 30.5,59.5 + parent: 2 + - uid: 17839 + components: + - type: Transform + pos: 31.5,59.5 + parent: 2 + - uid: 17840 + components: + - type: Transform + pos: 28.5,59.5 + parent: 2 + - uid: 17841 + components: + - type: Transform + pos: 32.5,59.5 + parent: 2 + - uid: 17842 + components: + - type: Transform + pos: 24.5,57.5 + parent: 2 + - uid: 17843 + components: + - type: Transform + pos: 25.5,57.5 + parent: 2 + - uid: 17844 + components: + - type: Transform + pos: 26.5,57.5 + parent: 2 + - uid: 17845 + components: + - type: Transform + pos: 27.5,57.5 + parent: 2 + - uid: 17846 + components: + - type: Transform + pos: 28.5,57.5 + parent: 2 + - uid: 17847 + components: + - type: Transform + pos: 29.5,57.5 + parent: 2 - proto: Chair entities: - uid: 5757 @@ -44542,11 +45660,6 @@ entities: parent: 2 - proto: ChessBoard entities: - - uid: 5981 - components: - - type: Transform - pos: -4.4943857,17.590862 - parent: 2 - uid: 5982 components: - type: Transform @@ -44758,6 +45871,13 @@ entities: - type: Transform pos: 35.5,-21.5 parent: 2 +- proto: CircuitImprinterMachineCircuitboard + entities: + - uid: 5405 + components: + - type: Transform + pos: 8.280111,54.346317 + parent: 2 - proto: CleanerDispenser entities: - uid: 17371 @@ -44977,11 +46097,6 @@ entities: parent: 2 - proto: ClosetWall entities: - - uid: 6046 - components: - - type: Transform - pos: 24.5,39.5 - parent: 2 - uid: 6047 components: - type: Transform @@ -44996,6 +46111,12 @@ entities: parent: 2 - proto: ClosetWallMaintenanceFilledRandom entities: + - uid: 6046 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,39.5 + parent: 2 - uid: 6048 components: - type: Transform @@ -45194,7 +46315,7 @@ entities: - uid: 6085 components: - type: Transform - pos: 27.22314,34.612118 + pos: 24.355701,34.40559 parent: 2 - proto: ClothingHandsGlovesCombat entities: @@ -45885,6 +47006,13 @@ entities: - type: Transform pos: 36.74322,44.429073 parent: 2 +- proto: ClothingOuterWinterChef + entities: + - uid: 493 + components: + - type: Transform + pos: 14.258918,17.21875 + parent: 2 - proto: ClothingOuterWinterChem entities: - uid: 6216 @@ -46352,6 +47480,13 @@ entities: rot: 1.5707963267948966 rad pos: -65.5,7.5 parent: 2 +- proto: CommandmentCircuitBoard + entities: + - uid: 17681 + components: + - type: Transform + pos: 34.479042,64.37455 + parent: 2 - proto: CommsComputerCircuitboard entities: - uid: 6282 @@ -46359,6 +47494,14 @@ entities: - type: Transform pos: 8.360741,51.81654 parent: 2 +- proto: ComputerAlert + entities: + - uid: 17148 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.5,49.5 + parent: 2 - proto: ComputerAnalysisConsole entities: - uid: 6283 @@ -46455,6 +47598,12 @@ entities: - type: Transform pos: 37.5,12.5 parent: 2 + - uid: 13413 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,49.5 + parent: 2 - proto: ComputerComms entities: - uid: 6298 @@ -46467,14 +47616,22 @@ entities: - uid: 6299 components: - type: Transform - pos: 38.5,50.5 + pos: 36.5,50.5 parent: 2 + - type: Pullable + prevFixedRotation: True - uid: 12132 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-9.5 parent: 2 + - uid: 17906 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,60.5 + parent: 2 - proto: ComputerCriminalRecords entities: - uid: 14451 @@ -46579,6 +47736,12 @@ entities: parent: 2 - proto: ComputerPowerMonitoring entities: + - uid: 496 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,44.5 + parent: 2 - uid: 6308 components: - type: Transform @@ -46590,6 +47753,12 @@ entities: - type: Transform pos: 39.5,50.5 parent: 2 + - uid: 17907 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,60.5 + parent: 2 - proto: ComputerRadar entities: - uid: 17129 @@ -46631,8 +47800,10 @@ entities: - uid: 6314 components: - type: Transform - pos: 36.5,50.5 + pos: 38.5,50.5 parent: 2 + - type: Pullable + prevFixedRotation: True - proto: ComputerStationRecords entities: - uid: 6315 @@ -46646,6 +47817,12 @@ entities: - type: Transform pos: 32.5,50.5 parent: 2 + - uid: 17908 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 36.5,59.5 + parent: 2 - proto: ComputerSurveillanceCameraMonitor entities: - uid: 6317 @@ -46676,6 +47853,12 @@ entities: rot: 1.5707963267948966 rad pos: -13.5,9.5 parent: 2 + - uid: 17903 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,59.5 + parent: 2 - proto: ComputerTechnologyDiskTerminal entities: - uid: 6323 @@ -46748,17 +47931,17 @@ entities: rot: -1.5707963267948966 rad pos: 52.5,6.5 parent: 2 - - uid: 6331 + - uid: 6199 components: - type: Transform rot: -1.5707963267948966 rad - pos: 42.5,7.5 + pos: 84.5,3.5 parent: 2 - - uid: 6332 + - uid: 6331 components: - type: Transform rot: -1.5707963267948966 rad - pos: 44.5,7.5 + pos: 42.5,7.5 parent: 2 - uid: 6333 components: @@ -46840,6 +48023,18 @@ entities: rot: -1.5707963267948966 rad pos: 51.5,6.5 parent: 2 + - uid: 14474 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 83.5,3.5 + parent: 2 + - uid: 14515 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 82.5,3.5 + parent: 2 - uid: 17232 components: - type: Transform @@ -46864,6 +48059,13 @@ entities: rot: 1.5707963267948966 rad pos: 66.5,2.5 parent: 2 +- proto: CorporateCircuitBoard + entities: + - uid: 17676 + components: + - type: Transform + pos: 34.463417,64.69713 + parent: 2 - proto: CowToolboxFilled entities: - uid: 6350 @@ -47486,7 +48688,7 @@ entities: - uid: 6448 components: - type: Transform - pos: 32.518673,48.564182 + pos: 33.589348,48.54754 parent: 2 - uid: 6449 components: @@ -47528,6 +48730,11 @@ entities: - type: Transform pos: 86.63015,-31.575798 parent: 2 + - uid: 17912 + components: + - type: Transform + pos: 37.542774,59.45948 + parent: 2 - proto: CryogenicSleepUnit entities: - uid: 5821 @@ -47779,6 +48986,20 @@ entities: parent: 2 - type: NavMapBeacon text: Shipyard Dock +- proto: DefaultStationBeaconAICore + entities: + - uid: 17918 + components: + - type: Transform + pos: 38.5,65.5 + parent: 2 +- proto: DefaultStationBeaconAISatellite + entities: + - uid: 13628 + components: + - type: Transform + pos: 38.5,60.5 + parent: 2 - proto: DefaultStationBeaconAME entities: - uid: 15034 @@ -47851,10 +49072,10 @@ entities: parent: 2 - proto: DefaultStationBeaconBrig entities: - - uid: 17427 + - uid: 6200 components: - type: Transform - pos: -6.5,16.5 + pos: -6.5,18.5 parent: 2 - proto: DefaultStationBeaconCaptainsQuarters entities: @@ -48141,6 +49362,13 @@ entities: - type: Transform pos: 48.5,15.5 parent: 2 + - uid: 15395 + components: + - type: Transform + pos: 89.5,4.5 + parent: 2 + - type: NavMapBeacon + text: Salvage Arm - proto: DefaultStationBeaconScience entities: - uid: 10226 @@ -51448,6 +52676,12 @@ entities: rot: -1.5707963267948966 rad pos: 47.5,-11.5 parent: 2 + - uid: 8923 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -65.5,12.5 + parent: 2 - uid: 9261 components: - type: Transform @@ -51478,6 +52712,11 @@ entities: rot: -1.5707963267948966 rad pos: 50.5,-11.5 parent: 2 + - uid: 11374 + components: + - type: Transform + pos: -66.5,13.5 + parent: 2 - uid: 12546 components: - type: Transform @@ -51770,6 +53009,12 @@ entities: rot: 1.5707963267948966 rad pos: -56.5,11.5 parent: 2 + - uid: 17427 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -64.5,12.5 + parent: 2 - uid: 17436 components: - type: Transform @@ -52124,6 +53369,42 @@ entities: - type: Transform pos: 44.5,44.5 parent: 2 + - uid: 17607 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -63.5,12.5 + parent: 2 + - uid: 17608 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -62.5,12.5 + parent: 2 + - uid: 17609 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -61.5,12.5 + parent: 2 + - uid: 17610 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -60.5,12.5 + parent: 2 + - uid: 17611 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -59.5,12.5 + parent: 2 + - uid: 17612 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -58.5,12.5 + parent: 2 - proto: DisposalPipeBroken entities: - uid: 7028 @@ -53694,7 +54975,7 @@ entities: - uid: 5439 components: - type: Transform - pos: 39.5,48.5 + pos: 38.5,48.5 parent: 2 - type: FaxMachine name: Bridge @@ -54268,16 +55549,6 @@ entities: - type: Transform pos: 86.836914,-27.903645 parent: 2 - - uid: 7290 - components: - - type: Transform - pos: 39.260246,66.40385 - parent: 2 - - uid: 7291 - components: - - type: Transform - pos: 37.822746,66.40385 - parent: 2 - uid: 7292 components: - type: Transform @@ -55626,7 +56897,7 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage -- proto: FoodDonutBlumpkin +- proto: FoodDonutBluePumpkin entities: - uid: 7540 components: @@ -55671,7 +56942,7 @@ entities: - type: Transform pos: 35.364956,43.57506 parent: 2 -- proto: FoodDonutJellyBlumpkin +- proto: FoodDonutJellyBluePumpkin entities: - uid: 7545 components: @@ -56386,6 +57657,11 @@ entities: rot: 3.141592653589793 rad pos: -15.5,55.5 parent: 2 + - uid: 6201 + components: + - type: Transform + pos: 13.5,15.5 + parent: 2 - uid: 6852 components: - type: Transform @@ -56408,15 +57684,16 @@ entities: - type: Transform pos: -15.5,57.5 parent: 2 - - uid: 9827 + - uid: 8922 components: - type: Transform - pos: -10.5,47.5 + rot: 3.141592653589793 rad + pos: 14.5,13.5 parent: 2 - - uid: 12693 + - uid: 9827 components: - type: Transform - pos: 13.5,16.5 + pos: -10.5,47.5 parent: 2 - uid: 16245 components: @@ -57182,14 +58459,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 7739 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,16.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 7740 components: - type: Transform @@ -57350,12 +58619,25 @@ entities: rot: 1.5707963267948966 rad pos: -16.5,49.5 parent: 2 + - uid: 12260 + components: + - type: Transform + pos: -7.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 12345 components: - type: Transform rot: 1.5707963267948966 rad pos: -14.5,57.5 parent: 2 + - uid: 13421 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,14.5 + parent: 2 - uid: 13710 components: - type: Transform @@ -57374,6 +58656,11 @@ entities: rot: 3.141592653589793 rad pos: -8.5,57.5 parent: 2 + - uid: 17377 + components: + - type: Transform + pos: 14.5,14.5 + parent: 2 - uid: 17558 components: - type: Transform @@ -57419,6 +58706,37 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' + - uid: 17877 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,64.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17893 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 41.5,63.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17894 + components: + - type: Transform + pos: 41.5,64.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17913 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,63.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - proto: GasPipeFourway entities: - uid: 4960 @@ -57809,12 +59127,16 @@ entities: rot: 3.141592653589793 rad pos: 28.5,-26.5 parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 7719 components: - type: Transform rot: -1.5707963267948966 rad pos: 29.5,-25.5 parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 7757 components: - type: Transform @@ -59261,6 +60583,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 7978 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,64.5 + parent: 2 + - type: AtmosPipeColor + color: '#DD2222FF' - uid: 7979 components: - type: Transform @@ -61807,14 +63137,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 8319 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,44.5 - parent: 2 - - type: AtmosPipeColor - color: '#03FCD3FF' - uid: 8321 components: - type: Transform @@ -63015,30 +64337,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 8512 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,18.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8513 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,18.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8514 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,18.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 8515 components: - type: Transform @@ -66083,20 +67381,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 8922 - components: - - type: Transform - pos: -5.5,17.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 8923 - components: - - type: Transform - pos: -5.5,16.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - uid: 8924 components: - type: Transform @@ -66104,14 +67388,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 8925 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,17.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 8926 components: - type: Transform @@ -67374,6 +68650,30 @@ entities: rot: 3.141592653589793 rad pos: -1.5,-12.5 parent: 2 + - uid: 9252 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,62.5 + parent: 2 + - type: AtmosPipeColor + color: '#DD2222FF' + - uid: 9281 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9297 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' - uid: 9351 components: - type: Transform @@ -67405,6 +68705,30 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' + - uid: 10055 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,63.5 + parent: 2 + - type: AtmosPipeColor + color: '#DD2222FF' + - uid: 12213 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12214 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 12329 components: - type: Transform @@ -67420,6 +68744,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#03FCD3FF' + - uid: 14032 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 16400 components: - type: Transform @@ -67641,6 +68973,146 @@ entities: rot: 3.141592653589793 rad pos: -6.5,61.5 parent: 2 + - uid: 17869 + components: + - type: Transform + pos: 38.5,67.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17870 + components: + - type: Transform + pos: 38.5,66.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17871 + components: + - type: Transform + pos: 38.5,65.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17872 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,64.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17874 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 42.5,63.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17875 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,65.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 17881 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 36.5,62.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17883 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,61.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17887 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,65.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 17888 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,65.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 17889 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,65.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 17895 + components: + - type: Transform + pos: 40.5,64.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 17896 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.5,64.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17897 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,63.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 17898 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,62.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 17899 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,61.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 17900 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 38.5,60.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 17902 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 39.5,60.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' - proto: GasPipeTJunction entities: - uid: 506 @@ -67761,6 +69233,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' + - uid: 6198 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 6297 components: - type: Transform @@ -67815,12 +69295,16 @@ entities: - type: Transform pos: 28.5,-25.5 parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 7717 components: - type: Transform rot: 1.5707963267948966 rad pos: 28.5,-22.5 parent: 2 + - type: AtmosPipeColor + color: '#990000FF' - uid: 7724 components: - type: Transform @@ -68844,14 +70328,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 9221 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,18.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 9222 components: - type: Transform @@ -68996,12 +70472,28 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' + - uid: 12670 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' - uid: 13677 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,48.5 parent: 2 + - uid: 13708 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 14290 components: - type: Transform @@ -69046,6 +70538,53 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' + - uid: 17878 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.5,64.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17879 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 38.5,64.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17880 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,63.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17882 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 36.5,61.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17890 + components: + - type: Transform + pos: 40.5,65.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 17892 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,60.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' - proto: GasPort entities: - uid: 544 @@ -69178,6 +70717,22 @@ entities: parent: 2 - type: AtmosPipeColor color: '#DD2222FF' + - uid: 17884 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 35.5,61.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17891 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,60.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' - proto: GasPressurePump entities: - uid: 545 @@ -69356,16 +70911,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' -- proto: GasThermoMachineFreezerEnabled - entities: - - uid: 12670 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,15.5 - parent: 2 - - type: GasThermoMachine - targetTemperature: 250 - proto: GasThermoMachineHeater entities: - uid: 549 @@ -69431,6 +70976,22 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 6196 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6332 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 7644 components: - type: Transform @@ -69547,14 +71108,6 @@ entities: - 17606 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 9297 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,18.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 9298 components: - type: Transform @@ -70085,14 +71638,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 9367 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,16.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 9368 components: - type: Transform @@ -70175,6 +71720,8 @@ entities: - type: DeviceNetwork deviceLists: - 5 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 17539 components: - type: Transform @@ -70195,6 +71742,53 @@ entities: - type: DeviceNetwork deviceLists: - 11 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17614 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17864 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,61.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17865 + components: + - type: Transform + pos: 35.5,64.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17866 + components: + - type: Transform + pos: 37.5,65.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17867 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,63.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17868 + components: + - type: Transform + pos: 38.5,68.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - proto: GasVentScrubber entities: - uid: 5443 @@ -70807,14 +72401,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 9444 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,15.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - uid: 9445 components: - type: Transform @@ -70892,6 +72478,22 @@ entities: - 17606 - type: AtmosPipeColor color: '#990000FF' + - uid: 14340 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14342 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' - uid: 16450 components: - type: Transform @@ -70941,23 +72543,41 @@ entities: - type: DeviceNetwork deviceLists: - 11 -- proto: GasVolumePump - entities: - - uid: 4223 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 17873 components: - type: Transform - pos: -2.5,56.5 + rot: 1.5707963267948966 rad + pos: 35.5,65.5 parent: 2 - type: AtmosPipeColor - color: '#0077DDFF' - - uid: 5405 + color: '#990000FF' + - uid: 17876 components: - type: Transform rot: -1.5707963267948966 rad - pos: -3.5,64.5 + pos: 41.5,65.5 parent: 2 - type: AtmosPipeColor - color: '#DD2222FF' + color: '#990000FF' + - uid: 17886 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,60.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' +- proto: GasVolumePump + entities: + - uid: 4223 + components: + - type: Transform + pos: -2.5,56.5 + parent: 2 + - type: AtmosPipeColor + color: '#0077DDFF' - uid: 5434 components: - type: Transform @@ -70985,52 +72605,6 @@ entities: transferRate: 3 - type: AtmosPipeColor color: '#DD2222FF' - - uid: 9252 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,63.5 - parent: 2 - - type: AtmosPipeColor - color: '#DD2222FF' - - uid: 9274 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,63.5 - parent: 2 - - type: GasVolumePump - transferRate: 67 - - type: AtmosPipeColor - color: '#DD2222FF' - - uid: 9275 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,64.5 - parent: 2 - - type: GasVolumePump - transferRate: 66 - - type: AtmosPipeColor - color: '#DD2222FF' - - uid: 9280 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,62.5 - parent: 2 - - type: GasVolumePump - transferRate: 67 - - type: AtmosPipeColor - color: '#DD2222FF' - - uid: 13180 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,62.5 - parent: 2 - - type: AtmosPipeColor - color: '#DD2222FF' - uid: 13194 components: - type: Transform @@ -71065,6 +72639,18 @@ entities: - type: Transform pos: -24.5,48.5 parent: 2 +- proto: GeneratorRTG + entities: + - uid: 17777 + components: + - type: Transform + pos: 36.5,66.5 + parent: 2 + - uid: 17778 + components: + - type: Transform + pos: 40.5,66.5 + parent: 2 - proto: GeneratorWallmountAPU entities: - uid: 4891 @@ -71205,13 +72791,6 @@ entities: - type: Transform pos: 27.5,54.5 parent: 2 -- proto: GravityGeneratorMini - entities: - - uid: 9483 - components: - - type: Transform - pos: 38.5,68.5 - parent: 2 - proto: GrenadeFlashBang entities: - uid: 9484 @@ -71266,6 +72845,11 @@ entities: - type: Transform pos: 52.5,14.5 parent: 2 + - uid: 6197 + components: + - type: Transform + pos: -8.5,17.5 + parent: 2 - uid: 6406 components: - type: Transform @@ -71281,11 +72865,21 @@ entities: - type: Transform pos: 55.5,9.5 parent: 2 + - uid: 8512 + components: + - type: Transform + pos: -4.5,17.5 + parent: 2 - uid: 9191 components: - type: Transform pos: -14.5,64.5 parent: 2 + - uid: 9221 + components: + - type: Transform + pos: -6.5,15.5 + parent: 2 - uid: 9247 components: - type: Transform @@ -72711,11 +74305,6 @@ entities: - type: Transform pos: 17.5,41.5 parent: 2 - - uid: 9788 - components: - - type: Transform - pos: 46.5,43.5 - parent: 2 - uid: 9789 components: - type: Transform @@ -72881,11 +74470,6 @@ entities: - type: Transform pos: 43.5,-27.5 parent: 2 - - uid: 9826 - components: - - type: Transform - pos: 37.5,67.5 - parent: 2 - uid: 9828 components: - type: Transform @@ -72896,16 +74480,6 @@ entities: - type: Transform pos: 48.5,-27.5 parent: 2 - - uid: 9830 - components: - - type: Transform - pos: 38.5,67.5 - parent: 2 - - uid: 9831 - components: - - type: Transform - pos: 39.5,67.5 - parent: 2 - uid: 9832 components: - type: Transform @@ -73166,21 +74740,11 @@ entities: - type: Transform pos: -7.5,23.5 parent: 2 - - uid: 9891 - components: - - type: Transform - pos: -5.5,18.5 - parent: 2 - uid: 9892 components: - type: Transform pos: -19.5,23.5 parent: 2 - - uid: 9893 - components: - - type: Transform - pos: -4.5,18.5 - parent: 2 - uid: 9894 components: - type: Transform @@ -73831,6 +75395,123 @@ entities: - type: Transform pos: 73.5,7.5 parent: 2 + - uid: 17617 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,75.5 + parent: 2 + - uid: 17782 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,75.5 + parent: 2 + - uid: 17783 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,75.5 + parent: 2 + - uid: 17784 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,75.5 + parent: 2 + - uid: 17785 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.5,75.5 + parent: 2 + - uid: 17786 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,75.5 + parent: 2 + - uid: 17787 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 42.5,75.5 + parent: 2 + - uid: 17788 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 44.5,75.5 + parent: 2 + - uid: 17789 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 46.5,74.5 + parent: 2 + - uid: 17790 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 47.5,74.5 + parent: 2 + - uid: 17791 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 48.5,74.5 + parent: 2 + - uid: 17792 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5,74.5 + parent: 2 + - uid: 17806 + components: + - type: Transform + pos: 29.5,71.5 + parent: 2 + - uid: 17807 + components: + - type: Transform + pos: 29.5,72.5 + parent: 2 + - uid: 17808 + components: + - type: Transform + pos: 29.5,74.5 + parent: 2 + - uid: 17809 + components: + - type: Transform + pos: 27.5,69.5 + parent: 2 + - uid: 17810 + components: + - type: Transform + pos: 27.5,67.5 + parent: 2 + - uid: 17811 + components: + - type: Transform + pos: 27.5,66.5 + parent: 2 + - uid: 17812 + components: + - type: Transform + pos: 29.5,69.5 + parent: 2 + - uid: 17857 + components: + - type: Transform + pos: 36.5,58.5 + parent: 2 + - uid: 17858 + components: + - type: Transform + pos: 40.5,58.5 + parent: 2 - proto: GrilleBroken entities: - uid: 10026 @@ -73913,6 +75594,51 @@ entities: - type: Transform pos: -12.5,64.5 parent: 2 + - uid: 17797 + components: + - type: Transform + pos: 45.5,75.5 + parent: 2 + - uid: 17798 + components: + - type: Transform + pos: 39.5,75.5 + parent: 2 + - uid: 17799 + components: + - type: Transform + pos: 32.5,75.5 + parent: 2 + - uid: 17800 + components: + - type: Transform + pos: 50.5,74.5 + parent: 2 + - uid: 17801 + components: + - type: Transform + pos: 27.5,70.5 + parent: 2 + - uid: 17802 + components: + - type: Transform + pos: 27.5,68.5 + parent: 2 + - uid: 17803 + components: + - type: Transform + pos: 29.5,73.5 + parent: 2 + - uid: 17804 + components: + - type: Transform + pos: 29.5,70.5 + parent: 2 + - uid: 17805 + components: + - type: Transform + pos: 31.5,75.5 + parent: 2 - proto: GunSafeDisabler entities: - uid: 10038 @@ -74031,38 +75757,64 @@ entities: parent: 2 - proto: HeatExchanger entities: - - uid: 7978 + - uid: 7290 components: - type: Transform rot: -1.5707963267948966 rad - pos: -2.5,63.5 + pos: -1.5,62.5 parent: 2 - - uid: 13193 + - type: AtmosPipeColor + color: '#DD2222FF' + - uid: 7291 components: - type: Transform rot: -1.5707963267948966 rad - pos: -2.5,64.5 + pos: -1.5,63.5 parent: 2 - - uid: 13197 + - type: AtmosPipeColor + color: '#DD2222FF' + - uid: 8319 components: - type: Transform rot: -1.5707963267948966 rad - pos: -2.5,62.5 + pos: -3.5,63.5 parent: 2 -- proto: HighSecCaptainLocked - entities: - - uid: 10055 + - type: AtmosPipeColor + color: '#DD2222FF' + - uid: 9274 components: - type: Transform - pos: 40.5,62.5 + rot: -1.5707963267948966 rad + pos: -1.5,64.5 parent: 2 - - uid: 10056 + - type: AtmosPipeColor + color: '#DD2222FF' + - uid: 9830 components: - type: Transform - pos: 36.5,62.5 + rot: -1.5707963267948966 rad + pos: -3.5,64.5 parent: 2 + - type: AtmosPipeColor + color: '#DD2222FF' + - uid: 9831 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,62.5 + parent: 2 + - type: AtmosPipeColor + color: '#DD2222FF' - proto: HighSecCommandLocked entities: + - uid: 10056 + components: + - type: MetaData + name: AI Satellite + - type: Transform + rot: 3.141592653589793 rad + pos: 36.5,62.5 + parent: 2 - uid: 10057 components: - type: MetaData @@ -74077,6 +75829,14 @@ entities: - type: Transform pos: 36.5,40.5 parent: 2 + - uid: 10385 + components: + - type: MetaData + name: AI Satellite + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,62.5 + parent: 2 - proto: HolofanProjector entities: - uid: 10059 @@ -74607,6 +76367,13 @@ entities: - type: Transform pos: -7.608444,42.97562 parent: 2 +- proto: JetpackMiniFilled + entities: + - uid: 17813 + components: + - type: Transform + pos: 20.506664,45.329033 + parent: 2 - proto: Joint entities: - uid: 10161 @@ -74726,11 +76493,6 @@ entities: parent: 2 - proto: Lamp entities: - - uid: 10180 - components: - - type: Transform - pos: -7.4198895,33.853672 - parent: 2 - uid: 10181 components: - type: Transform @@ -74785,6 +76547,13 @@ entities: rot: 1.5707963267948966 rad pos: -61.621826,18.682606 parent: 2 +- proto: LampInterrogator + entities: + - uid: 9367 + components: + - type: Transform + pos: -7.4645557,33.824265 + parent: 2 - proto: LandMineExplosive entities: - uid: 10190 @@ -75056,6 +76825,43 @@ entities: - Pressed: Toggle 17038: - Pressed: Toggle +- proto: LockableButtonSecurity + entities: + - uid: 16354 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,30.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 16355: + - Pressed: Toggle + - Pressed: AutoClose + - uid: 17919 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 45.5,30.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 16353: + - Pressed: Toggle + - Pressed: AutoClose + - uid: 17920 + components: + - type: Transform + pos: 44.5,34.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 13193: + - Pressed: Toggle + - Pressed: AutoClose + 13197: + - Pressed: Toggle + - Pressed: AutoClose - proto: LockerAtmosphericsFilled entities: - uid: 6209 @@ -75328,6 +77134,16 @@ entities: - type: Transform pos: -11.5,19.5 parent: 2 + - uid: 11755 + components: + - type: Transform + pos: -4.5,18.5 + parent: 2 + - uid: 17616 + components: + - type: Transform + pos: -8.5,18.5 + parent: 2 - proto: LockerForensicMantisFilled entities: - uid: 6182 @@ -76057,20 +77873,6 @@ entities: - type: Transform pos: 30.691406,24.566776 parent: 2 -- proto: MaterialReclaimer - entities: - - uid: 10320 - components: - - type: Transform - pos: 37.5,-0.5 - parent: 2 -- proto: MaterialReclaimerMachineCircuitboard - entities: - - uid: 10321 - components: - - type: Transform - pos: 11.469202,54.61479 - parent: 2 - proto: MaterialWoodPlank1 entities: - uid: 10322 @@ -78291,11 +80093,6 @@ entities: - type: Transform pos: -5.5,-0.5 parent: 2 - - uid: 10744 - components: - - type: Transform - pos: 55.5,-26.5 - parent: 2 - uid: 10745 components: - type: Transform @@ -78716,21 +80513,11 @@ entities: - type: Transform pos: 32.5,66.5 parent: 2 - - uid: 10831 - components: - - type: Transform - pos: 36.5,69.5 - parent: 2 - uid: 10832 components: - type: Transform pos: 32.5,65.5 parent: 2 - - uid: 10833 - components: - - type: Transform - pos: 37.5,69.5 - parent: 2 - uid: 10834 components: - type: Transform @@ -78741,11 +80528,6 @@ entities: - type: Transform pos: 45.5,0.5 parent: 2 - - uid: 10836 - components: - - type: Transform - pos: 38.5,69.5 - parent: 2 - uid: 10837 components: - type: Transform @@ -78756,11 +80538,6 @@ entities: - type: Transform pos: 32.5,68.5 parent: 2 - - uid: 10839 - components: - - type: Transform - pos: 39.5,69.5 - parent: 2 - uid: 10840 components: - type: Transform @@ -78776,21 +80553,11 @@ entities: - type: Transform pos: 62.5,-28.5 parent: 2 - - uid: 10843 - components: - - type: Transform - pos: 40.5,69.5 - parent: 2 - uid: 10844 components: - type: Transform pos: 33.5,68.5 parent: 2 - - uid: 10845 - components: - - type: Transform - pos: 41.5,69.5 - parent: 2 - uid: 10846 components: - type: Transform @@ -78931,11 +80698,6 @@ entities: - type: Transform pos: 61.5,-17.5 parent: 2 - - uid: 10879 - components: - - type: Transform - pos: 35.5,71.5 - parent: 2 - uid: 10880 components: - type: Transform @@ -78944,12 +80706,7 @@ entities: - uid: 10881 components: - type: Transform - pos: 36.5,71.5 - parent: 2 - - uid: 10882 - components: - - type: Transform - pos: 55.5,-2.5 + pos: 40.5,72.5 parent: 2 - uid: 10883 components: @@ -78966,36 +80723,6 @@ entities: - type: Transform pos: 55.5,-5.5 parent: 2 - - uid: 10886 - components: - - type: Transform - pos: 37.5,71.5 - parent: 2 - - uid: 10887 - components: - - type: Transform - pos: 38.5,71.5 - parent: 2 - - uid: 10888 - components: - - type: Transform - pos: 39.5,71.5 - parent: 2 - - uid: 10889 - components: - - type: Transform - pos: 40.5,71.5 - parent: 2 - - uid: 10890 - components: - - type: Transform - pos: 41.5,71.5 - parent: 2 - - uid: 10891 - components: - - type: Transform - pos: 42.5,71.5 - parent: 2 - uid: 10892 components: - type: Transform @@ -79036,11 +80763,6 @@ entities: - type: Transform pos: 33.5,72.5 parent: 2 - - uid: 10900 - components: - - type: Transform - pos: 34.5,70.5 - parent: 2 - uid: 10901 components: - type: Transform @@ -79056,11 +80778,6 @@ entities: - type: Transform pos: 35.5,72.5 parent: 2 - - uid: 10904 - components: - - type: Transform - pos: 54.5,-18.5 - parent: 2 - uid: 10905 components: - type: Transform @@ -79071,16 +80788,6 @@ entities: - type: Transform pos: 57.5,-14.5 parent: 2 - - uid: 10907 - components: - - type: Transform - pos: 36.5,72.5 - parent: 2 - - uid: 10908 - components: - - type: Transform - pos: 37.5,72.5 - parent: 2 - uid: 10909 components: - type: Transform @@ -79106,21 +80813,6 @@ entities: - type: Transform pos: 45.5,72.5 parent: 2 - - uid: 10914 - components: - - type: Transform - pos: 34.5,69.5 - parent: 2 - - uid: 10915 - components: - - type: Transform - pos: 53.5,-19.5 - parent: 2 - - uid: 10916 - components: - - type: Transform - pos: 42.5,68.5 - parent: 2 - uid: 10917 components: - type: Transform @@ -79346,21 +81038,11 @@ entities: - type: Transform pos: 57.5,-19.5 parent: 2 - - uid: 10962 - components: - - type: Transform - pos: 54.5,-26.5 - parent: 2 - uid: 10963 components: - type: Transform pos: 58.5,-18.5 parent: 2 - - uid: 10964 - components: - - type: Transform - pos: 54.5,-25.5 - parent: 2 - uid: 10965 components: - type: Transform @@ -79386,11 +81068,6 @@ entities: - type: Transform pos: 43.5,61.5 parent: 2 - - uid: 10970 - components: - - type: Transform - pos: 42.5,65.5 - parent: 2 - uid: 10971 components: - type: Transform @@ -79636,16 +81313,6 @@ entities: - type: Transform pos: 62.5,-21.5 parent: 2 - - uid: 11020 - components: - - type: Transform - pos: 43.5,65.5 - parent: 2 - - uid: 11021 - components: - - type: Transform - pos: 43.5,64.5 - parent: 2 - uid: 11022 components: - type: Transform @@ -79666,11 +81333,6 @@ entities: - type: Transform pos: 46.5,64.5 parent: 2 - - uid: 11026 - components: - - type: Transform - pos: 54.5,-19.5 - parent: 2 - uid: 11027 components: - type: Transform @@ -79681,16 +81343,6 @@ entities: - type: Transform pos: 32.5,63.5 parent: 2 - - uid: 11029 - components: - - type: Transform - pos: 34.5,65.5 - parent: 2 - - uid: 11030 - components: - - type: Transform - pos: 34.5,64.5 - parent: 2 - uid: 11031 components: - type: Transform @@ -79716,11 +81368,6 @@ entities: - type: Transform pos: 32.5,60.5 parent: 2 - - uid: 11036 - components: - - type: Transform - pos: 34.5,68.5 - parent: 2 - uid: 11037 components: - type: Transform @@ -79736,30 +81383,10 @@ entities: - type: Transform pos: 33.5,60.5 parent: 2 - - uid: 11040 - components: - - type: Transform - pos: 36.5,68.5 - parent: 2 - - uid: 11041 - components: - - type: Transform - pos: 36.5,67.5 - parent: 2 - uid: 11042 components: - type: Transform - pos: 40.5,68.5 - parent: 2 - - uid: 11043 - components: - - type: Transform - pos: 40.5,67.5 - parent: 2 - - uid: 11044 - components: - - type: Transform - pos: 41.5,68.5 + pos: 42.5,71.5 parent: 2 - uid: 11045 components: @@ -79786,11 +81413,6 @@ entities: - type: Transform pos: 37.5,62.5 parent: 2 - - uid: 11050 - components: - - type: Transform - pos: 38.5,62.5 - parent: 2 - uid: 11051 components: - type: Transform @@ -80576,16 +82198,6 @@ entities: - type: Transform pos: 40.5,-2.5 parent: 2 - - uid: 11211 - components: - - type: Transform - pos: 57.5,-32.5 - parent: 2 - - uid: 11212 - components: - - type: Transform - pos: 57.5,-33.5 - parent: 2 - uid: 11213 components: - type: Transform @@ -80711,16 +82323,6 @@ entities: - type: Transform pos: 52.5,-20.5 parent: 2 - - uid: 11239 - components: - - type: Transform - pos: 53.5,-20.5 - parent: 2 - - uid: 11240 - components: - - type: Transform - pos: 54.5,-20.5 - parent: 2 - uid: 11241 components: - type: Transform @@ -80766,16 +82368,6 @@ entities: - type: Transform pos: 55.5,-35.5 parent: 2 - - uid: 11250 - components: - - type: Transform - pos: 56.5,-35.5 - parent: 2 - - uid: 11251 - components: - - type: Transform - pos: 57.5,-35.5 - parent: 2 - uid: 11252 components: - type: Transform @@ -80816,16 +82408,6 @@ entities: - type: Transform pos: 53.5,-36.5 parent: 2 - - uid: 11260 - components: - - type: Transform - pos: 54.5,-38.5 - parent: 2 - - uid: 11261 - components: - - type: Transform - pos: 54.5,-37.5 - parent: 2 - uid: 11262 components: - type: Transform @@ -81226,11 +82808,6 @@ entities: - type: Transform pos: 30.5,-40.5 parent: 2 - - uid: 11342 - components: - - type: Transform - pos: 29.5,-41.5 - parent: 2 - uid: 11343 components: - type: Transform @@ -81281,41 +82858,21 @@ entities: - type: Transform pos: 26.5,-48.5 parent: 2 - - uid: 11353 - components: - - type: Transform - pos: 26.5,-47.5 - parent: 2 - uid: 11354 components: - type: Transform pos: 25.5,-48.5 parent: 2 - - uid: 11355 - components: - - type: Transform - pos: 25.5,-47.5 - parent: 2 - uid: 11356 components: - type: Transform pos: 24.5,-48.5 parent: 2 - - uid: 11357 - components: - - type: Transform - pos: 24.5,-47.5 - parent: 2 - uid: 11358 components: - type: Transform pos: 23.5,-48.5 parent: 2 - - uid: 11359 - components: - - type: Transform - pos: 23.5,-47.5 - parent: 2 - uid: 11360 components: - type: Transform @@ -81336,41 +82893,11 @@ entities: - type: Transform pos: 28.5,-44.5 parent: 2 - - uid: 11364 - components: - - type: Transform - pos: 28.5,-43.5 - parent: 2 - - uid: 11365 - components: - - type: Transform - pos: 28.5,-42.5 - parent: 2 - - uid: 11366 - components: - - type: Transform - pos: 28.5,-41.5 - parent: 2 - uid: 11367 components: - type: Transform pos: 27.5,-45.5 parent: 2 - - uid: 11368 - components: - - type: Transform - pos: 27.5,-43.5 - parent: 2 - - uid: 11369 - components: - - type: Transform - pos: 27.5,-42.5 - parent: 2 - - uid: 11370 - components: - - type: Transform - pos: 27.5,-41.5 - parent: 2 - uid: 11371 components: - type: Transform @@ -81386,11 +82913,6 @@ entities: - type: Transform pos: 15.5,-45.5 parent: 2 - - uid: 11374 - components: - - type: Transform - pos: 15.5,-44.5 - parent: 2 - uid: 11375 components: - type: Transform @@ -81401,16 +82923,6 @@ entities: - type: Transform pos: 21.5,-46.5 parent: 2 - - uid: 11377 - components: - - type: Transform - pos: 21.5,-45.5 - parent: 2 - - uid: 11378 - components: - - type: Transform - pos: 21.5,-44.5 - parent: 2 - uid: 11379 components: - type: Transform @@ -81436,81 +82948,26 @@ entities: - type: Transform pos: 17.5,-45.5 parent: 2 - - uid: 11384 - components: - - type: Transform - pos: 17.5,-44.5 - parent: 2 - uid: 11385 components: - type: Transform pos: 16.5,-45.5 parent: 2 - - uid: 11386 - components: - - type: Transform - pos: 16.5,-44.5 - parent: 2 - uid: 11387 components: - type: Transform pos: 14.5,-45.5 parent: 2 - - uid: 11388 - components: - - type: Transform - pos: 14.5,-44.5 - parent: 2 - - uid: 11389 - components: - - type: Transform - pos: 14.5,-43.5 - parent: 2 - - uid: 11390 - components: - - type: Transform - pos: 14.5,-41.5 - parent: 2 - - uid: 11391 - components: - - type: Transform - pos: 14.5,-40.5 - parent: 2 - uid: 11392 components: - type: Transform pos: 13.5,-45.5 parent: 2 - - uid: 11393 - components: - - type: Transform - pos: 13.5,-44.5 - parent: 2 - - uid: 11394 - components: - - type: Transform - pos: 13.5,-43.5 - parent: 2 - - uid: 11395 - components: - - type: Transform - pos: 13.5,-42.5 - parent: 2 - uid: 11396 components: - type: Transform pos: 13.5,-41.5 parent: 2 - - uid: 11397 - components: - - type: Transform - pos: 13.5,-40.5 - parent: 2 - - uid: 11398 - components: - - type: Transform - pos: 13.5,-39.5 - parent: 2 - uid: 11399 components: - type: Transform @@ -81551,86 +83008,26 @@ entities: - type: Transform pos: 24.5,-37.5 parent: 2 - - uid: 11407 - components: - - type: Transform - pos: 24.5,-38.5 - parent: 2 - uid: 11408 components: - type: Transform pos: 23.5,-37.5 parent: 2 - - uid: 11409 - components: - - type: Transform - pos: 23.5,-38.5 - parent: 2 - uid: 11410 components: - type: Transform pos: 22.5,-37.5 parent: 2 - - uid: 11411 - components: - - type: Transform - pos: 22.5,-38.5 - parent: 2 - uid: 11412 components: - type: Transform pos: 21.5,-37.5 parent: 2 - - uid: 11413 - components: - - type: Transform - pos: 21.5,-38.5 - parent: 2 - - uid: 11414 - components: - - type: Transform - pos: 20.5,-37.5 - parent: 2 - - uid: 11415 - components: - - type: Transform - pos: 20.5,-38.5 - parent: 2 - - uid: 11416 - components: - - type: Transform - pos: 19.5,-37.5 - parent: 2 - - uid: 11417 - components: - - type: Transform - pos: 19.5,-38.5 - parent: 2 - - uid: 11418 - components: - - type: Transform - pos: 18.5,-37.5 - parent: 2 - uid: 11419 components: - type: Transform pos: 20.5,-36.5 parent: 2 - - uid: 11420 - components: - - type: Transform - pos: 19.5,-36.5 - parent: 2 - - uid: 11421 - components: - - type: Transform - pos: 18.5,-36.5 - parent: 2 - - uid: 11422 - components: - - type: Transform - pos: 17.5,-36.5 - parent: 2 - uid: 11423 components: - type: Transform @@ -81641,11 +83038,6 @@ entities: - type: Transform pos: 18.5,-35.5 parent: 2 - - uid: 11425 - components: - - type: Transform - pos: 17.5,-35.5 - parent: 2 - uid: 11426 components: - type: Transform @@ -81671,21 +83063,6 @@ entities: - type: Transform pos: 18.5,-31.5 parent: 2 - - uid: 11431 - components: - - type: Transform - pos: 17.5,-34.5 - parent: 2 - - uid: 11432 - components: - - type: Transform - pos: 17.5,-33.5 - parent: 2 - - uid: 11433 - components: - - type: Transform - pos: 17.5,-32.5 - parent: 2 - uid: 11434 components: - type: Transform @@ -81716,16 +83093,6 @@ entities: - type: Transform pos: -32.5,27.5 parent: 2 - - uid: 11440 - components: - - type: Transform - pos: 17.5,-31.5 - parent: 2 - - uid: 11441 - components: - - type: Transform - pos: 17.5,-30.5 - parent: 2 - uid: 11442 components: - type: Transform @@ -81796,11 +83163,6 @@ entities: - type: Transform pos: -26.5,41.5 parent: 2 - - uid: 11456 - components: - - type: Transform - pos: 17.5,-28.5 - parent: 2 - uid: 11457 components: - type: Transform @@ -82016,21 +83378,11 @@ entities: - type: Transform pos: 18.5,-24.5 parent: 2 - - uid: 11501 - components: - - type: Transform - pos: 18.5,-25.5 - parent: 2 - uid: 11502 components: - type: Transform pos: 39.5,36.5 parent: 2 - - uid: 11503 - components: - - type: Transform - pos: 17.5,-25.5 - parent: 2 - uid: 11504 components: - type: Transform @@ -82041,21 +83393,6 @@ entities: - type: Transform pos: 13.5,-26.5 parent: 2 - - uid: 11506 - components: - - type: Transform - pos: 14.5,-27.5 - parent: 2 - - uid: 11507 - components: - - type: Transform - pos: 14.5,-28.5 - parent: 2 - - uid: 11508 - components: - - type: Transform - pos: 14.5,-29.5 - parent: 2 - uid: 11509 components: - type: Transform @@ -82071,61 +83408,6 @@ entities: - type: Transform pos: 11.5,-37.5 parent: 2 - - uid: 11512 - components: - - type: Transform - pos: 13.5,-29.5 - parent: 2 - - uid: 11513 - components: - - type: Transform - pos: 13.5,-36.5 - parent: 2 - - uid: 11514 - components: - - type: Transform - pos: 13.5,-37.5 - parent: 2 - - uid: 11515 - components: - - type: Transform - pos: 12.5,-29.5 - parent: 2 - - uid: 11516 - components: - - type: Transform - pos: 12.5,-30.5 - parent: 2 - - uid: 11517 - components: - - type: Transform - pos: 12.5,-31.5 - parent: 2 - - uid: 11518 - components: - - type: Transform - pos: 12.5,-32.5 - parent: 2 - - uid: 11519 - components: - - type: Transform - pos: 12.5,-33.5 - parent: 2 - - uid: 11520 - components: - - type: Transform - pos: 12.5,-34.5 - parent: 2 - - uid: 11521 - components: - - type: Transform - pos: 12.5,-35.5 - parent: 2 - - uid: 11522 - components: - - type: Transform - pos: 12.5,-36.5 - parent: 2 - uid: 11523 components: - type: Transform @@ -82166,41 +83448,6 @@ entities: - type: Transform pos: 12.5,-38.5 parent: 2 - - uid: 11531 - components: - - type: Transform - pos: 13.5,-38.5 - parent: 2 - - uid: 11532 - components: - - type: Transform - pos: 15.5,-41.5 - parent: 2 - - uid: 11533 - components: - - type: Transform - pos: 19.5,-39.5 - parent: 2 - - uid: 11534 - components: - - type: Transform - pos: 19.5,-40.5 - parent: 2 - - uid: 11535 - components: - - type: Transform - pos: 19.5,-41.5 - parent: 2 - - uid: 11536 - components: - - type: Transform - pos: 20.5,-39.5 - parent: 2 - - uid: 11537 - components: - - type: Transform - pos: 20.5,-40.5 - parent: 2 - uid: 11538 components: - type: Transform @@ -82266,11 +83513,6 @@ entities: - type: Transform pos: 15.5,-19.5 parent: 2 - - uid: 11551 - components: - - type: Transform - pos: 14.5,-26.5 - parent: 2 - uid: 11552 components: - type: Transform @@ -82281,11 +83523,6 @@ entities: - type: Transform pos: 17.5,-24.5 parent: 2 - - uid: 11554 - components: - - type: Transform - pos: 17.5,-29.5 - parent: 2 - uid: 11555 components: - type: Transform @@ -82301,11 +83538,6 @@ entities: - type: Transform pos: 16.5,-20.5 parent: 2 - - uid: 11558 - components: - - type: Transform - pos: 22.5,-46.5 - parent: 2 - uid: 11559 components: - type: Transform @@ -82421,11 +83653,6 @@ entities: - type: Transform pos: 22.5,-52.5 parent: 2 - - uid: 11582 - components: - - type: Transform - pos: 29.5,-42.5 - parent: 2 - uid: 11583 components: - type: Transform @@ -82826,16 +84053,6 @@ entities: - type: Transform pos: 54.5,-29.5 parent: 2 - - uid: 11663 - components: - - type: Transform - pos: 55.5,-28.5 - parent: 2 - - uid: 11664 - components: - - type: Transform - pos: 54.5,-27.5 - parent: 2 - uid: 11665 components: - type: Transform @@ -83126,21 +84343,6 @@ entities: - type: Transform pos: 72.5,-28.5 parent: 2 - - uid: 11725 - components: - - type: Transform - pos: 60.5,-31.5 - parent: 2 - - uid: 11726 - components: - - type: Transform - pos: 60.5,-32.5 - parent: 2 - - uid: 11727 - components: - - type: Transform - pos: 60.5,-33.5 - parent: 2 - uid: 11728 components: - type: Transform @@ -83186,11 +84388,6 @@ entities: - type: Transform pos: 66.5,-29.5 parent: 2 - - uid: 11737 - components: - - type: Transform - pos: 61.5,-33.5 - parent: 2 - uid: 11738 components: - type: Transform @@ -83231,26 +84428,11 @@ entities: - type: Transform pos: 67.5,-32.5 parent: 2 - - uid: 11746 - components: - - type: Transform - pos: 62.5,-32.5 - parent: 2 - - uid: 11747 - components: - - type: Transform - pos: 63.5,-32.5 - parent: 2 - uid: 11748 components: - type: Transform pos: 64.5,-32.5 parent: 2 - - uid: 11749 - components: - - type: Transform - pos: 55.5,-27.5 - parent: 2 - uid: 11750 components: - type: Transform @@ -83271,16 +84453,6 @@ entities: - type: Transform pos: 56.5,-31.5 parent: 2 - - uid: 11754 - components: - - type: Transform - pos: 57.5,-30.5 - parent: 2 - - uid: 11755 - components: - - type: Transform - pos: 57.5,-31.5 - parent: 2 - uid: 11756 components: - type: Transform @@ -84501,11 +85673,6 @@ entities: - type: Transform pos: 55.5,-34.5 parent: 2 - - uid: 12002 - components: - - type: Transform - pos: 55.5,-36.5 - parent: 2 - uid: 12003 components: - type: Transform @@ -85170,6 +86337,13 @@ entities: - type: Transform pos: 34.899876,-32.54624 parent: 2 +- proto: NTDefaultCircuitBoard + entities: + - uid: 17679 + components: + - type: Transform + pos: 34.494667,65.68705 + parent: 2 - proto: NuclearBomb entities: - uid: 12100 @@ -85835,16 +87009,6 @@ entities: rot: -1.5707963267948966 rad pos: 9.289516,53.16861 parent: 2 - - uid: 12213 - components: - - type: Transform - pos: -6.236845,14.51134 - parent: 2 - - uid: 12214 - components: - - type: Transform - pos: -6.1734447,14.414113 - parent: 2 - proto: PaperBin10 entities: - uid: 16621 @@ -86169,11 +87333,6 @@ entities: - type: Transform pos: -6.7692804,33.581352 parent: 2 - - uid: 12260 - components: - - type: Transform - pos: -6.6745625,14.719672 - parent: 2 - uid: 12261 components: - type: Transform @@ -86349,6 +87508,26 @@ entities: - type: Transform pos: 32.5,-27.5 parent: 2 + - uid: 9826 + components: + - type: Transform + pos: 36.5,67.5 + parent: 2 + - uid: 10836 + components: + - type: Transform + pos: 39.5,67.5 + parent: 2 + - uid: 10839 + components: + - type: Transform + pos: 40.5,67.5 + parent: 2 + - uid: 11041 + components: + - type: Transform + pos: 37.5,67.5 + parent: 2 - uid: 15697 components: - type: Transform @@ -86423,6 +87602,18 @@ entities: rot: -1.5707963267948966 rad pos: -14.5,48.5 parent: 2 + - uid: 16291 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 39.5,69.5 + parent: 2 + - uid: 16292 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.5,69.5 + parent: 2 - proto: PlasmaWindoorSecureAtmosphericsLocked entities: - uid: 15878 @@ -86443,6 +87634,23 @@ entities: rot: -1.5707963267948966 rad pos: -14.5,53.5 parent: 2 +- proto: PlasmaWindoorSecureCommandLocked + entities: + - uid: 9483 + components: + - type: MetaData + name: AI Core + - type: Transform + rot: 3.141592653589793 rad + pos: 38.5,69.5 + parent: 2 + - uid: 10890 + components: + - type: MetaData + name: Fortress of Solitude + - type: Transform + pos: 38.5,67.5 + parent: 2 - proto: PlasmaWindoorSecureScienceLocked entities: - uid: 6850 @@ -86453,6 +87661,16 @@ entities: parent: 2 - proto: PlasticFlapsAirtightClear entities: + - uid: 487 + components: + - type: Transform + pos: 55.5,6.5 + parent: 2 + - uid: 776 + components: + - type: Transform + pos: 55.5,2.5 + parent: 2 - uid: 12273 components: - type: Transform @@ -86939,6 +88157,13 @@ entities: - type: Transform pos: -9.5,16.5 parent: 2 +- proto: PosterLegitStateLaws + entities: + - uid: 17682 + components: + - type: Transform + pos: 33.5,64.5 + parent: 2 - proto: PosterLegitVacation entities: - uid: 17373 @@ -87220,6 +88445,14 @@ entities: - type: Transform pos: -28.502075,27.001911 parent: 2 +- proto: PoweredLEDSmallLight + entities: + - uid: 17781 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,64.5 + parent: 2 - proto: Poweredlight entities: - uid: 3937 @@ -87256,13 +88489,6 @@ entities: rot: 1.5707963267948966 rad pos: -4.5,-7.5 parent: 2 - - uid: 12380 - components: - - type: Transform - pos: -6.5,16.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - uid: 12381 components: - type: Transform @@ -87279,13 +88505,6 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 12384 - components: - - type: Transform - pos: -12.5,18.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - uid: 12385 components: - type: Transform @@ -87882,6 +89101,24 @@ entities: rot: 3.141592653589793 rad pos: 56.5,31.5 parent: 2 + - uid: 17615 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,17.5 + parent: 2 + - uid: 17916 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 35.5,60.5 + parent: 2 + - uid: 17917 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,60.5 + parent: 2 - proto: PoweredLightBlueInterior entities: - uid: 9259 @@ -88069,12 +89306,6 @@ entities: rot: 3.141592653589793 rad pos: 23.5,51.5 parent: 2 - - uid: 10517 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 42.5,59.5 - parent: 2 - uid: 10613 components: - type: Transform @@ -88086,6 +89317,11 @@ entities: - type: Transform pos: 39.5,-13.5 parent: 2 + - uid: 11050 + components: + - type: Transform + pos: 43.5,59.5 + parent: 2 - uid: 12439 components: - type: Transform @@ -88216,16 +89452,6 @@ entities: parent: 2 - proto: PoweredLightPostSmallRed entities: - - uid: 10385 - components: - - type: Transform - pos: 35.5,65.5 - parent: 2 - - uid: 12560 - components: - - type: Transform - pos: 41.5,65.5 - parent: 2 - uid: 12568 components: - type: Transform @@ -88444,6 +89670,18 @@ entities: rot: 1.5707963267948966 rad pos: 52.5,12.5 parent: 2 + - uid: 6202 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,16.5 + parent: 2 + - uid: 8925 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,16.5 + parent: 2 - uid: 12256 components: - type: Transform @@ -89001,6 +90239,12 @@ entities: parent: 2 - type: DeviceLinkSink invokeCounter: 1 + - uid: 12002 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.5,33.5 + parent: 2 - uid: 12622 components: - type: Transform @@ -89031,11 +90275,6 @@ entities: rot: 1.5707963267948966 rad pos: 34.5,35.5 parent: 2 - - uid: 10681 - components: - - type: Transform - pos: -33.5,32.5 - parent: 2 - uid: 12147 components: - type: Transform @@ -89155,6 +90394,16 @@ entities: parent: 2 - proto: Rack entities: + - uid: 479 + components: + - type: Transform + pos: 34.5,63.5 + parent: 2 + - uid: 494 + components: + - type: Transform + pos: 34.5,64.5 + parent: 2 - uid: 5375 components: - type: Transform @@ -89178,6 +90427,11 @@ entities: - type: Transform pos: 36.5,33.5 parent: 2 + - uid: 11029 + components: + - type: Transform + pos: 34.5,65.5 + parent: 2 - uid: 12696 components: - type: Transform @@ -92062,6 +93316,486 @@ entities: rot: 3.141592653589793 rad pos: -72.5,22.5 parent: 2 + - uid: 9893 + components: + - type: Transform + pos: 55.5,-28.5 + parent: 2 + - uid: 10230 + components: + - type: Transform + pos: 54.5,-18.5 + parent: 2 + - uid: 10320 + components: + - type: Transform + pos: 54.5,-19.5 + parent: 2 + - uid: 10321 + components: + - type: Transform + pos: 54.5,-25.5 + parent: 2 + - uid: 10681 + components: + - type: Transform + pos: 54.5,-27.5 + parent: 2 + - uid: 10744 + components: + - type: Transform + pos: 53.5,-19.5 + parent: 2 + - uid: 10882 + components: + - type: Transform + pos: 57.5,-30.5 + parent: 2 + - uid: 10904 + components: + - type: Transform + pos: 57.5,-32.5 + parent: 2 + - uid: 10915 + components: + - type: Transform + pos: 54.5,-20.5 + parent: 2 + - uid: 10962 + components: + - type: Transform + pos: 53.5,-20.5 + parent: 2 + - uid: 10964 + components: + - type: Transform + pos: 54.5,-37.5 + parent: 2 + - uid: 11026 + components: + - type: Transform + pos: 54.5,-38.5 + parent: 2 + - uid: 11211 + components: + - type: Transform + pos: 57.5,-35.5 + parent: 2 + - uid: 11212 + components: + - type: Transform + pos: 56.5,-35.5 + parent: 2 + - uid: 11239 + components: + - type: Transform + pos: 29.5,-41.5 + parent: 2 + - uid: 11240 + components: + - type: Transform + pos: 26.5,-47.5 + parent: 2 + - uid: 11250 + components: + - type: Transform + pos: 25.5,-47.5 + parent: 2 + - uid: 11251 + components: + - type: Transform + pos: 24.5,-47.5 + parent: 2 + - uid: 11260 + components: + - type: Transform + pos: 23.5,-47.5 + parent: 2 + - uid: 11261 + components: + - type: Transform + pos: 28.5,-42.5 + parent: 2 + - uid: 11342 + components: + - type: Transform + pos: 27.5,-41.5 + parent: 2 + - uid: 11353 + components: + - type: Transform + pos: 28.5,-41.5 + parent: 2 + - uid: 11355 + components: + - type: Transform + pos: 27.5,-42.5 + parent: 2 + - uid: 11357 + components: + - type: Transform + pos: 27.5,-43.5 + parent: 2 + - uid: 11359 + components: + - type: Transform + pos: 28.5,-43.5 + parent: 2 + - uid: 11364 + components: + - type: Transform + pos: 17.5,-44.5 + parent: 2 + - uid: 11365 + components: + - type: Transform + pos: 21.5,-45.5 + parent: 2 + - uid: 11366 + components: + - type: Transform + pos: 22.5,-46.5 + parent: 2 + - uid: 11368 + components: + - type: Transform + pos: 15.5,-44.5 + parent: 2 + - uid: 11369 + components: + - type: Transform + pos: 16.5,-44.5 + parent: 2 + - uid: 11370 + components: + - type: Transform + pos: 13.5,-44.5 + parent: 2 + - uid: 11377 + components: + - type: Transform + pos: 13.5,-40.5 + parent: 2 + - uid: 11378 + components: + - type: Transform + pos: 13.5,-42.5 + parent: 2 + - uid: 11384 + components: + - type: Transform + pos: 13.5,-43.5 + parent: 2 + - uid: 11386 + components: + - type: Transform + pos: 14.5,-44.5 + parent: 2 + - uid: 11388 + components: + - type: Transform + pos: 13.5,-39.5 + parent: 2 + - uid: 11389 + components: + - type: Transform + pos: 14.5,-41.5 + parent: 2 + - uid: 11390 + components: + - type: Transform + pos: 15.5,-41.5 + parent: 2 + - uid: 11391 + components: + - type: Transform + pos: 21.5,-38.5 + parent: 2 + - uid: 11393 + components: + - type: Transform + pos: 23.5,-38.5 + parent: 2 + - uid: 11394 + components: + - type: Transform + pos: 24.5,-38.5 + parent: 2 + - uid: 11395 + components: + - type: Transform + pos: 22.5,-38.5 + parent: 2 + - uid: 11397 + components: + - type: Transform + pos: 20.5,-37.5 + parent: 2 + - uid: 11398 + components: + - type: Transform + pos: 20.5,-38.5 + parent: 2 + - uid: 11407 + components: + - type: Transform + pos: 19.5,-37.5 + parent: 2 + - uid: 11409 + components: + - type: Transform + pos: 19.5,-38.5 + parent: 2 + - uid: 11411 + components: + - type: Transform + pos: 18.5,-37.5 + parent: 2 + - uid: 11413 + components: + - type: Transform + pos: 19.5,-36.5 + parent: 2 + - uid: 11414 + components: + - type: Transform + pos: 18.5,-36.5 + parent: 2 + - uid: 11415 + components: + - type: Transform + pos: 17.5,-36.5 + parent: 2 + - uid: 11416 + components: + - type: Transform + pos: 17.5,-35.5 + parent: 2 + - uid: 11417 + components: + - type: Transform + pos: 17.5,-32.5 + parent: 2 + - uid: 11418 + components: + - type: Transform + pos: 17.5,-31.5 + parent: 2 + - uid: 11420 + components: + - type: Transform + pos: 17.5,-30.5 + parent: 2 + - uid: 11421 + components: + - type: Transform + pos: 17.5,-34.5 + parent: 2 + - uid: 11422 + components: + - type: Transform + pos: 17.5,-29.5 + parent: 2 + - uid: 11425 + components: + - type: Transform + pos: 17.5,-33.5 + parent: 2 + - uid: 11431 + components: + - type: Transform + pos: 18.5,-25.5 + parent: 2 + - uid: 11432 + components: + - type: Transform + pos: 17.5,-25.5 + parent: 2 + - uid: 11433 + components: + - type: Transform + pos: 13.5,-29.5 + parent: 2 + - uid: 11440 + components: + - type: Transform + pos: 12.5,-29.5 + parent: 2 + - uid: 11441 + components: + - type: Transform + pos: 12.5,-30.5 + parent: 2 + - uid: 11456 + components: + - type: Transform + pos: 12.5,-31.5 + parent: 2 + - uid: 11501 + components: + - type: Transform + pos: 13.5,-38.5 + parent: 2 + - uid: 11503 + components: + - type: Transform + pos: 13.5,-37.5 + parent: 2 + - uid: 11506 + components: + - type: Transform + pos: 12.5,-33.5 + parent: 2 + - uid: 11507 + components: + - type: Transform + pos: 12.5,-34.5 + parent: 2 + - uid: 11508 + components: + - type: Transform + pos: 12.5,-35.5 + parent: 2 + - uid: 11512 + components: + - type: Transform + pos: 12.5,-32.5 + parent: 2 + - uid: 11513 + components: + - type: Transform + pos: 14.5,-28.5 + parent: 2 + - uid: 11514 + components: + - type: Transform + pos: 14.5,-27.5 + parent: 2 + - uid: 11515 + components: + - type: Transform + pos: 14.5,-26.5 + parent: 2 + - uid: 11516 + components: + - type: Transform + pos: 12.5,-36.5 + parent: 2 + - uid: 11517 + components: + - type: Transform + pos: 13.5,-36.5 + parent: 2 + - uid: 11518 + components: + - type: Transform + pos: 14.5,-40.5 + parent: 2 + - uid: 11519 + components: + - type: Transform + pos: 19.5,-41.5 + parent: 2 + - uid: 11520 + components: + - type: Transform + pos: 19.5,-40.5 + parent: 2 + - uid: 11521 + components: + - type: Transform + pos: 19.5,-39.5 + parent: 2 + - uid: 11522 + components: + - type: Transform + pos: 20.5,-39.5 + parent: 2 + - uid: 11531 + components: + - type: Transform + pos: 20.5,-40.5 + parent: 2 + - uid: 11532 + components: + - type: Transform + pos: 14.5,-29.5 + parent: 2 + - uid: 11533 + components: + - type: Transform + pos: 17.5,-28.5 + parent: 2 + - uid: 11534 + components: + - type: Transform + pos: 21.5,-44.5 + parent: 2 + - uid: 11535 + components: + - type: Transform + pos: 29.5,-42.5 + parent: 2 + - uid: 11536 + components: + - type: Transform + pos: 55.5,-26.5 + parent: 2 + - uid: 11537 + components: + - type: Transform + pos: 54.5,-26.5 + parent: 2 + - uid: 11551 + components: + - type: Transform + pos: 60.5,-32.5 + parent: 2 + - uid: 11554 + components: + - type: Transform + pos: 60.5,-33.5 + parent: 2 + - uid: 11558 + components: + - type: Transform + pos: 60.5,-31.5 + parent: 2 + - uid: 11582 + components: + - type: Transform + pos: 61.5,-33.5 + parent: 2 + - uid: 11663 + components: + - type: Transform + pos: 63.5,-32.5 + parent: 2 + - uid: 11664 + components: + - type: Transform + pos: 62.5,-32.5 + parent: 2 + - uid: 11725 + components: + - type: Transform + pos: 55.5,-27.5 + parent: 2 + - uid: 11726 + components: + - type: Transform + pos: 57.5,-33.5 + parent: 2 + - uid: 11727 + components: + - type: Transform + pos: 57.5,-31.5 + parent: 2 + - uid: 11737 + components: + - type: Transform + pos: 55.5,-36.5 + parent: 2 - uid: 13010 components: - type: Transform @@ -92969,6 +94703,12 @@ entities: rot: 1.5707963267948966 rad pos: 42.5,-1.5 parent: 2 + - uid: 14692 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 83.5,3.5 + parent: 2 - proto: RegenerativeMesh entities: - uid: 13135 @@ -93163,27 +94903,36 @@ entities: - type: Transform pos: -31.5,-1.5 parent: 2 -- proto: ReinforcedPlasmaWindow - entities: - - uid: 13171 + - uid: 17793 components: - type: Transform - pos: -16.5,13.5 + rot: -1.5707963267948966 rad + pos: 45.5,74.5 parent: 2 - - uid: 13172 + - uid: 17794 components: - type: Transform - pos: 38.5,67.5 + rot: -1.5707963267948966 rad + pos: 33.5,75.5 parent: 2 - - uid: 13173 + - uid: 17795 components: - type: Transform - pos: 37.5,67.5 + rot: -1.5707963267948966 rad + pos: 38.5,75.5 parent: 2 - - uid: 13174 + - uid: 17796 components: - type: Transform - pos: 39.5,67.5 + rot: -1.5707963267948966 rad + pos: 43.5,75.5 + parent: 2 +- proto: ReinforcedPlasmaWindow + entities: + - uid: 13171 + components: + - type: Transform + pos: -16.5,13.5 parent: 2 - uid: 13175 components: @@ -93297,11 +95046,26 @@ entities: - type: Transform pos: 53.5,14.5 parent: 2 + - uid: 7739 + components: + - type: Transform + pos: -8.5,17.5 + parent: 2 - uid: 9960 components: - type: Transform pos: 55.5,9.5 parent: 2 + - uid: 11040 + components: + - type: Transform + pos: 36.5,58.5 + parent: 2 + - uid: 11754 + components: + - type: Transform + pos: -4.5,17.5 + parent: 2 - uid: 12688 components: - type: Transform @@ -94277,11 +96041,6 @@ entities: - type: Transform pos: -5.5,33.5 parent: 2 - - uid: 13413 - components: - - type: Transform - pos: -5.5,18.5 - parent: 2 - uid: 13414 components: - type: Transform @@ -94317,11 +96076,6 @@ entities: - type: Transform pos: -7.5,23.5 parent: 2 - - uid: 13421 - components: - - type: Transform - pos: -4.5,18.5 - parent: 2 - uid: 13422 components: - type: Transform @@ -94717,6 +96471,11 @@ entities: - type: Transform pos: 52.5,14.5 parent: 2 + - uid: 14033 + components: + - type: Transform + pos: -6.5,15.5 + parent: 2 - uid: 16611 components: - type: Transform @@ -94742,6 +96501,11 @@ entities: - type: Transform pos: 73.5,7.5 parent: 2 + - uid: 17863 + components: + - type: Transform + pos: 40.5,58.5 + parent: 2 - proto: ResearchAndDevelopmentServer entities: - uid: 13502 @@ -94849,6 +96613,11 @@ entities: - type: Transform pos: 34.5,-30.5 parent: 2 + - uid: 16551 + components: + - type: Transform + pos: 76.5,1.5 + parent: 2 - proto: SalvageMagnet entities: - uid: 17150 @@ -94926,6 +96695,11 @@ entities: rot: 3.141592653589793 rad pos: 21.648647,-29.748669 parent: 2 + - uid: 16239 + components: + - type: Transform + pos: 88.33875,5.849103 + parent: 2 - proto: SecurityTechFab entities: - uid: 13521 @@ -95096,6 +96870,11 @@ entities: - type: Transform pos: 37.939407,-21.410767 parent: 2 + - uid: 17623 + components: + - type: Transform + pos: 43.42256,10.60372 + parent: 2 - proto: SheetPaper entities: - uid: 13560 @@ -95156,6 +96935,11 @@ entities: - type: Transform pos: 38.595657,-21.363892 parent: 2 + - uid: 17624 + components: + - type: Transform + pos: 44.89131,10.54122 + parent: 2 - proto: SheetSteel entities: - uid: 13569 @@ -95225,6 +97009,13 @@ entities: - type: Transform pos: 86.31473,-27.761124 parent: 2 +- proto: SheetSteel10 + entities: + - uid: 17619 + components: + - type: Transform + pos: 23.724659,38.492447 + parent: 2 - proto: SheetUranium entities: - uid: 7946 @@ -95304,8 +97095,20 @@ entities: - type: Transform pos: 52.01165,-19.293865 parent: 2 +- proto: ShowcaseRobot + entities: + - uid: 6187 + components: + - type: Transform + pos: 37.5,66.5 + parent: 2 - proto: ShowcaseRobotWhite entities: + - uid: 6188 + components: + - type: Transform + pos: 39.5,66.5 + parent: 2 - uid: 13214 components: - type: Transform @@ -95536,6 +97339,26 @@ entities: - type: Transform pos: -66.5,-2.5 parent: 2 +- proto: SignAi + entities: + - uid: 9275 + components: + - type: Transform + pos: 37.5,58.5 + parent: 2 + - uid: 17779 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 38.5,62.5 + parent: 2 +- proto: SignAiUpload + entities: + - uid: 478 + components: + - type: Transform + pos: 42.5,64.5 + parent: 2 - proto: SignalButtonDirectional entities: - uid: 4823 @@ -95570,41 +97393,6 @@ entities: linkedPorts: 13593: - Pressed: Toggle - - uid: 13628 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 43.5,30.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 16354: - - Pressed: AutoClose - - Pressed: Toggle - - uid: 13629 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 45.5,30.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 16355: - - Pressed: AutoClose - - Pressed: Toggle - - uid: 13630 - components: - - type: Transform - pos: 44.5,34.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 16356: - - Pressed: AutoClose - - Pressed: Toggle - 16353: - - Pressed: AutoClose - - Pressed: Toggle - uid: 13631 components: - type: Transform @@ -95643,6 +97431,26 @@ entities: linkedPorts: 12646: - Status: Toggle + - uid: 12384 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 85.5,2.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 6199: + - On: Forward + - Off: Off + 14474: + - On: Forward + - Off: Off + 14515: + - On: Forward + - Off: Off + 14692: + - On: Forward + - Off: Off - uid: 12435 components: - type: Transform @@ -95803,6 +97611,20 @@ entities: - type: Transform pos: 36.5,7.5 parent: 2 +- proto: SignCargoDock + entities: + - uid: 12380 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 55.5,7.5 + parent: 2 + - uid: 17290 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 85.5,6.5 + parent: 2 - proto: SignChapel entities: - uid: 13639 @@ -95922,11 +97744,6 @@ entities: rot: -1.5707963267948966 rad pos: 13.533039,11.154074 parent: 2 - - uid: 17377 - components: - - type: Transform - pos: -9.5,17.5 - parent: 2 - proto: SignDirectionalBar entities: - uid: 13651 @@ -96296,13 +98113,6 @@ entities: - type: Transform pos: 56.5,39.5 parent: 2 -- proto: SignPrison - entities: - - uid: 13708 - components: - - type: Transform - pos: -8.5,17.5 - parent: 2 - proto: SignPsychology entities: - uid: 779 @@ -96340,11 +98150,6 @@ entities: - type: Transform pos: -48.5,-12.5 parent: 2 - - uid: 13716 - components: - - type: Transform - pos: 55.5,7.5 - parent: 2 - uid: 13717 components: - type: Transform @@ -96357,11 +98162,6 @@ entities: rot: -1.5707963267948966 rad pos: -55.5,-9.5 parent: 2 - - uid: 17147 - components: - - type: Transform - pos: 85.5,2.5 - parent: 2 - proto: SignShock entities: - uid: 8502 @@ -98368,6 +100168,20 @@ entities: - type: Transform pos: 11.634304,51.78529 parent: 2 +- proto: StationAiUploadComputer + entities: + - uid: 11020 + components: + - type: Transform + pos: 43.5,65.5 + parent: 2 +- proto: StationEfficiencyCircuitBoard + entities: + - uid: 17680 + components: + - type: Transform + pos: 34.541542,65.31205 + parent: 2 - proto: StationMap entities: - uid: 698 @@ -98430,18 +100244,6 @@ entities: parent: 2 - proto: Stool entities: - - uid: 14032 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -4.461405,16.960468 - parent: 2 - - uid: 14033 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -5.28953,17.679218 - parent: 2 - uid: 14034 components: - type: Transform @@ -98607,6 +100409,11 @@ entities: - type: Transform pos: 37.5,-32.5 parent: 2 + - uid: 17904 + components: + - type: Transform + pos: 41.5,60.5 + parent: 2 - proto: StrangePill entities: - uid: 14481 @@ -98800,6 +100607,14 @@ entities: - type: Transform pos: -56.5,33.5 parent: 2 + - uid: 17765 + components: + - type: MetaData + name: AI substation + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,69.5 + parent: 2 - proto: SuitStorageAtmos entities: - uid: 18 @@ -98852,15 +100667,25 @@ entities: parent: 2 - proto: SuitStorageSec entities: - - uid: 6187 + - uid: 13629 + components: + - type: Transform + pos: -20.5,8.5 + parent: 2 + - uid: 13630 components: - type: Transform pos: -19.5,8.5 parent: 2 - - uid: 6188 + - uid: 17814 components: - type: Transform - pos: -20.5,8.5 + pos: -20.5,22.5 + parent: 2 + - uid: 17815 + components: + - type: Transform + pos: -19.5,22.5 parent: 2 - proto: SurveillanceCameraCommand entities: @@ -98874,6 +100699,49 @@ entities: - SurveillanceCameraCommand nameSet: True id: Chief Justice's Room + - uid: 10517 + components: + - type: Transform + pos: 37.5,73.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: ai satellite 2 + - uid: 10831 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,67.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: ai satellite 1 + - uid: 10833 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,67.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: ai core + - uid: 11036 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 38.5,61.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: ai satellite 3 - uid: 14090 components: - type: Transform @@ -98938,6 +100806,16 @@ entities: - SurveillanceCameraCommand nameSet: True id: Vault + - uid: 16356 + components: + - type: Transform + pos: 37.5,52.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: bridge exterior - proto: SurveillanceCameraEngineering entities: - uid: 5352 @@ -99243,6 +101121,13 @@ entities: - SurveillanceCameraMedical nameSet: True id: Chemistry Lab +- proto: SurveillanceCameraRouterCommand + entities: + - uid: 17901 + components: + - type: Transform + pos: 35.5,60.5 + parent: 2 - proto: SurveillanceCameraRouterEngineering entities: - uid: 14125 @@ -99293,6 +101178,13 @@ entities: - type: Transform pos: 28.5,18.5 parent: 2 +- proto: SurveillanceCameraRouterSupply + entities: + - uid: 17905 + components: + - type: Transform + pos: 46.5,6.5 + parent: 2 - proto: SurveillanceCameraScience entities: - uid: 13938 @@ -99399,16 +101291,6 @@ entities: - SurveillanceCameraSecurity nameSet: True id: Security Breakroom - - uid: 14142 - components: - - type: Transform - pos: -6.5,14.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Communal Cell - uid: 14143 components: - type: Transform @@ -100259,6 +102141,11 @@ entities: - type: Transform pos: 17.5,35.5 parent: 2 + - uid: 9444 + components: + - type: Transform + pos: 41.5,7.5 + parent: 2 - uid: 10063 components: - type: Transform @@ -100504,21 +102391,11 @@ entities: - type: Transform pos: 28.5,23.5 parent: 2 - - uid: 14340 - components: - - type: Transform - pos: 32.5,48.5 - parent: 2 - uid: 14341 components: - type: Transform pos: 33.5,48.5 parent: 2 - - uid: 14342 - components: - - type: Transform - pos: 39.5,48.5 - parent: 2 - uid: 14343 components: - type: Transform @@ -100613,6 +102490,24 @@ entities: rot: 1.5707963267948966 rad pos: -69.5,8.5 parent: 2 + - uid: 17622 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,34.5 + parent: 2 + - uid: 17909 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.5,59.5 + parent: 2 + - uid: 17910 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 39.5,59.5 + parent: 2 - proto: TablePlasmaGlass entities: - uid: 13977 @@ -101195,11 +103090,6 @@ entities: - type: Transform pos: 26.5,-37.5 parent: 2 - - uid: 14474 - components: - - type: Transform - pos: -4.5,17.5 - parent: 2 - uid: 14475 components: - type: Transform @@ -101381,11 +103271,6 @@ entities: - type: Transform pos: -28.5,27.5 parent: 2 - - uid: 14515 - components: - - type: Transform - pos: -6.5,14.5 - parent: 2 - uid: 16575 components: - type: Transform @@ -101747,7 +103632,7 @@ entities: - uid: 14560 components: - type: Transform - pos: 23.523083,38.75738 + pos: 23.165735,38.773697 parent: 2 - uid: 14561 components: @@ -101853,8 +103738,11 @@ entities: entities: - uid: 14579 components: + - type: MetaData + desc: It's displaying the famous "blue smile of death" + name: faulty AI core - type: Transform - pos: 38.500664,68.70377 + pos: 38.49569,70.53853 parent: 2 - proto: ToyFigurineClown entities: @@ -101985,10 +103873,6 @@ entities: - Left: Forward - Right: Reverse - Middle: Off - 6332: - - Left: Forward - - Right: Reverse - - Middle: Off 6331: - Left: Forward - Right: Reverse @@ -102906,6 +104790,11 @@ entities: - type: Transform pos: 51.5,14.5 parent: 2 + - uid: 6195 + components: + - type: Transform + pos: -6.5,14.5 + parent: 2 - uid: 6855 components: - type: Transform @@ -102936,6 +104825,16 @@ entities: - type: Transform pos: 51.5,13.5 parent: 2 + - uid: 10843 + components: + - type: Transform + pos: 34.5,70.5 + parent: 2 + - uid: 10845 + components: + - type: Transform + pos: 39.5,72.5 + parent: 2 - uid: 10863 components: - type: Transform @@ -102946,6 +104845,90 @@ entities: - type: Transform pos: -26.5,8.5 parent: 2 + - uid: 10879 + components: + - type: Transform + pos: 35.5,71.5 + parent: 2 + - uid: 10886 + components: + - type: Transform + pos: 42.5,68.5 + parent: 2 + - uid: 10887 + components: + - type: Transform + pos: 41.5,69.5 + parent: 2 + - uid: 10888 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.5,70.5 + parent: 2 + - uid: 10889 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 39.5,70.5 + parent: 2 + - uid: 10891 + components: + - type: Transform + pos: 38.5,72.5 + parent: 2 + - uid: 10900 + components: + - type: Transform + pos: 41.5,68.5 + parent: 2 + - uid: 10907 + components: + - type: Transform + pos: 41.5,71.5 + parent: 2 + - uid: 10908 + components: + - type: Transform + pos: 37.5,72.5 + parent: 2 + - uid: 10914 + components: + - type: Transform + pos: 34.5,68.5 + parent: 2 + - uid: 10916 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 42.5,65.5 + parent: 2 + - uid: 10970 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 42.5,64.5 + parent: 2 + - uid: 11030 + components: + - type: Transform + pos: 36.5,72.5 + parent: 2 + - uid: 11043 + components: + - type: Transform + pos: 34.5,69.5 + parent: 2 + - uid: 11044 + components: + - type: Transform + pos: 38.5,62.5 + parent: 2 + - uid: 11746 + components: + - type: Transform + pos: -6.5,16.5 + parent: 2 - uid: 12140 components: - type: Transform @@ -105319,17 +107302,20 @@ entities: - uid: 15181 components: - type: Transform - pos: 38.5,70.5 + rot: 3.141592653589793 rad + pos: 38.5,71.5 parent: 2 - uid: 15182 components: - type: Transform - pos: 37.5,70.5 + rot: 3.141592653589793 rad + pos: 39.5,71.5 parent: 2 - uid: 15183 components: - type: Transform - pos: 36.5,70.5 + rot: 3.141592653589793 rad + pos: 40.5,71.5 parent: 2 - uid: 15184 components: @@ -105394,7 +107380,8 @@ entities: - uid: 15196 components: - type: Transform - pos: 40.5,70.5 + rot: 3.141592653589793 rad + pos: 36.5,71.5 parent: 2 - uid: 15197 components: @@ -105419,7 +107406,8 @@ entities: - uid: 15201 components: - type: Transform - pos: 39.5,70.5 + rot: 3.141592653589793 rad + pos: 37.5,71.5 parent: 2 - uid: 15202 components: @@ -106326,21 +108314,11 @@ entities: - type: Transform pos: 38.5,37.5 parent: 2 - - uid: 15393 - components: - - type: Transform - pos: -6.5,18.5 - parent: 2 - uid: 15394 components: - type: Transform pos: -6.5,17.5 parent: 2 - - uid: 15395 - components: - - type: Transform - pos: -8.5,17.5 - parent: 2 - uid: 15396 components: - type: Transform @@ -106961,6 +108939,61 @@ entities: - type: Transform pos: 85.5,6.5 parent: 2 + - uid: 17848 + components: + - type: Transform + pos: 34.5,59.5 + parent: 2 + - uid: 17849 + components: + - type: Transform + pos: 35.5,59.5 + parent: 2 + - uid: 17850 + components: + - type: Transform + pos: 35.5,58.5 + parent: 2 + - uid: 17851 + components: + - type: Transform + pos: 37.5,58.5 + parent: 2 + - uid: 17852 + components: + - type: Transform + pos: 39.5,58.5 + parent: 2 + - uid: 17853 + components: + - type: Transform + pos: 41.5,58.5 + parent: 2 + - uid: 17854 + components: + - type: Transform + pos: 41.5,59.5 + parent: 2 + - uid: 17855 + components: + - type: Transform + pos: 34.5,60.5 + parent: 2 + - uid: 17856 + components: + - type: Transform + pos: 34.5,61.5 + parent: 2 + - uid: 17860 + components: + - type: Transform + pos: 42.5,59.5 + parent: 2 + - uid: 17861 + components: + - type: Transform + pos: 42.5,60.5 + parent: 2 - proto: WallReinforcedDiagonal entities: - uid: 14689 @@ -110943,10 +112976,10 @@ entities: showEnts: False occludes: True ent: null - - uid: 16239 + - uid: 8514 components: - type: Transform - pos: -8.5,16.5 + pos: -4.5,15.5 parent: 2 - uid: 16240 components: @@ -111238,7 +113271,7 @@ entities: - uid: 16285 components: - type: Transform - pos: 38.3211,48.688034 + pos: 35.890507,48.51629 parent: 2 - proto: WeaponDisablerPractice entities: @@ -111278,15 +113311,25 @@ entities: - type: InsideEntityStorage - proto: WeaponTurretSyndicateBroken entities: - - uid: 16291 + - uid: 9788 components: - type: Transform - pos: 36.5,66.5 + pos: 36.5,70.5 parent: 2 - - uid: 16292 + - uid: 13173 components: - type: Transform - pos: 40.5,66.5 + pos: 40.5,68.5 + parent: 2 + - uid: 13174 + components: + - type: Transform + pos: 40.5,70.5 + parent: 2 + - uid: 13180 + components: + - type: Transform + pos: 36.5,68.5 parent: 2 - proto: WelderIndustrial entities: @@ -111573,6 +113616,14 @@ entities: rot: 1.5707963267948966 rad pos: 37.5,38.5 parent: 2 + - uid: 17675 + components: + - type: MetaData + name: Law Board Storage + - type: Transform + rot: 1.5707963267948966 rad + pos: 35.5,63.5 + parent: 2 - proto: WindoorSecureEngineeringLocked entities: - uid: 5361 @@ -111731,33 +113782,6 @@ entities: parent: 2 - proto: WindoorSecureSecurityLocked entities: - - uid: 248 - components: - - type: MetaData - name: Communal Cells - - type: Transform - pos: -7.5,17.5 - parent: 2 - - type: DeviceLinkSink - invokeCounter: 1 - - type: DeviceLinkSource - linkedPorts: - 3277: - - DoorStatus: Close - - uid: 3277 - components: - - type: MetaData - name: Communal Cells - - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,17.5 - parent: 2 - - type: DeviceLinkSink - invokeCounter: 1 - - type: DeviceLinkSource - linkedPorts: - 248: - - DoorStatus: Close - uid: 6005 components: - type: Transform @@ -111769,44 +113793,76 @@ entities: rot: 1.5707963267948966 rad pos: -7.5,25.5 parent: 2 - - uid: 15893 + - uid: 13193 components: + - type: MetaData + name: checkpoint windoor - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,10.5 + rot: 1.5707963267948966 rad + pos: 42.5,27.5 parent: 2 - - uid: 16353 + - type: DeviceLinkSource + lastSignals: + DoorStatus: True + - type: Door + secondsUntilStateChange: -93.39996 + state: Opening + - type: Airlock + autoClose: false + - uid: 13197 components: + - type: MetaData + name: checkpoint windoor - type: Transform rot: -1.5707963267948966 rad pos: 46.5,27.5 parent: 2 - missingComponents: - - Airlock - - uid: 16354 + - type: DeviceLinkSource + lastSignals: + DoorStatus: True + - type: Door + secondsUntilStateChange: -92.8333 + state: Opening + - type: Airlock + autoClose: false + - uid: 15893 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 42.5,29.5 + rot: -1.5707963267948966 rad + pos: -11.5,10.5 parent: 2 - missingComponents: - - Airlock - - uid: 16355 + - uid: 16353 components: + - type: MetaData + name: checkpoint windoor - type: Transform rot: -1.5707963267948966 rad pos: 46.5,29.5 parent: 2 - missingComponents: - - Airlock - - uid: 16356 + - type: DeviceLinkSource + lastSignals: + DoorStatus: True + - type: Door + secondsUntilStateChange: -92.36663 + state: Opening + - type: Airlock + autoClose: false + - uid: 16355 components: + - type: MetaData + name: checkpoint windoor - type: Transform rot: 1.5707963267948966 rad - pos: 42.5,27.5 + pos: 42.5,29.5 parent: 2 - missingComponents: - - Airlock + - type: DeviceLinkSource + lastSignals: + DoorStatus: True + - type: Door + secondsUntilStateChange: -93.89996 + state: Opening + - type: Airlock + autoClose: false - uid: 16357 components: - type: MetaData @@ -112238,6 +114294,24 @@ entities: - type: Transform pos: -36.5,45.5 parent: 2 + - uid: 17620 + components: + - type: MetaData + desc: Virtually indestructible, designed to keep the briefing podium secure. + name: ultra-reinforced window + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,34.5 + parent: 2 + - uid: 17621 + components: + - type: MetaData + desc: Virtually indestructible, designed to keep the briefing podium secure. + name: ultra-reinforced window + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,34.5 + parent: 2 - proto: WindowReinforcedDirectional entities: - uid: 4897 @@ -112463,6 +114537,18 @@ entities: rot: 3.141592653589793 rad pos: -61.5,18.5 parent: 2 + - uid: 17673 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 35.5,65.5 + parent: 2 + - uid: 17674 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 35.5,64.5 + parent: 2 - proto: WindowTintedDirectional entities: - uid: 4638 diff --git a/Resources/Maps/lighthouse.yml b/Resources/Maps/lighthouse.yml index 7e9b0159399..98d6e7f5e51 100644 --- a/Resources/Maps/lighthouse.yml +++ b/Resources/Maps/lighthouse.yml @@ -67,6 +67,7 @@ tilemap: 125: FloorWoodTile 126: Lattice 127: Plating + 6: PlatingAsteroid entities: - proto: "" entities: @@ -172,7 +173,7 @@ entities: version: 6 -3,2: ind: -3,2 - tiles: fwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAADAQAAAAAAXgAAAAABfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAAAXgAAAAADAQAAAAAAXgAAAAAAfwAAAAAAXgAAAAADXgAAAAACXgAAAAADXgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAXgAAAAABXgAAAAACXgAAAAACXgAAAAADXgAAAAAAXgAAAAABAQAAAAAAXgAAAAABfwAAAAAAXgAAAAACXgAAAAAAXgAAAAABXgAAAAADAQAAAAAAMgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAMAAAAAABXgAAAAACUAAAAAAAXgAAAAAAXgAAAAAAXgAAAAADXgAAAAACAQAAAAAAAQAAAAAAAQAAAAAAXgAAAAACXgAAAAAAXgAAAAABXgAAAAABXgAAAAABXgAAAAACAQAAAAAAXgAAAAABUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAABAQAAAAAAXgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAAAAQAAAAAAXgAAAAAAUAAAAAAAXgAAAAAAXgAAAAADXgAAAAAAXgAAAAAAXgAAAAADAQAAAAAAXgAAAAABXgAAAAABXgAAAAACXgAAAAABXgAAAAABfwAAAAAAXgAAAAACAQAAAAAAXgAAAAABfwAAAAAAXgAAAAABXgAAAAAAXgAAAAACfwAAAAAAXgAAAAACAQAAAAAAXgAAAAACXgAAAAACXgAAAAACXgAAAAAAXgAAAAADfwAAAAAAXgAAAAAAAQAAAAAAAQAAAAAAXgAAAAAAfwAAAAAAfwAAAAAAXgAAAAACXgAAAAACXgAAAAADAQAAAAAAXgAAAAACfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAABAQAAAAAAXgAAAAAAXgAAAAADfwAAAAAAXgAAAAACfwAAAAAAXgAAAAACMAAAAAADXgAAAAABXgAAAAACXgAAAAABXgAAAAAAXgAAAAABXgAAAAAAfwAAAAAAXgAAAAABMAAAAAACXgAAAAADXgAAAAABXgAAAAABXgAAAAAAXgAAAAADXgAAAAACXgAAAAACXgAAAAADXgAAAAABXgAAAAACXgAAAAAAXgAAAAAAXgAAAAADfwAAAAAAXgAAAAAAAQAAAAAAXgAAAAACXgAAAAABXgAAAAABXgAAAAACfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAAAAQAAAAAAXgAAAAABfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAADAQAAAAAAXgAAAAADfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAXgAAAAADAQAAAAAAXgAAAAACfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAXgAAAAACMAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAQwAAAAAAQwAAAAAAfwAAAAAAXgAAAAAAXgAAAAABAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAACAQAAAAAA + tiles: fwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAADAQAAAAAAXgAAAAABfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAAAXgAAAAADAQAAAAAAXgAAAAAAfwAAAAAAXgAAAAADXgAAAAACXgAAAAADXgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAXgAAAAABXgAAAAACXgAAAAACXgAAAAADXgAAAAAAXgAAAAABAQAAAAAAXgAAAAABfwAAAAAAXgAAAAACXgAAAAAAXgAAAAABXgAAAAADAQAAAAAAMgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAMAAAAAABXgAAAAACUAAAAAAAXgAAAAAAXgAAAAAAXgAAAAADXgAAAAACAQAAAAAAAQAAAAAAAQAAAAAAXgAAAAACXgAAAAAAXgAAAAABXgAAAAABXgAAAAABXgAAAAACAQAAAAAAXgAAAAABUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAABAQAAAAAAXgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAAAAQAAAAAAXgAAAAAAUAAAAAAAXgAAAAAAXgAAAAADXgAAAAAAXgAAAAAAXgAAAAADAQAAAAAAXgAAAAABXgAAAAABXgAAAAACXgAAAAABXgAAAAABfwAAAAAAXgAAAAACAQAAAAAAXgAAAAABfwAAAAAAXgAAAAABXgAAAAAAXgAAAAACfwAAAAAAXgAAAAACAQAAAAAAXgAAAAACXgAAAAACXgAAAAACXgAAAAAAXgAAAAADfwAAAAAAXgAAAAAAAQAAAAAAAQAAAAAAXgAAAAAAfwAAAAAAfwAAAAAAXgAAAAACXgAAAAACXgAAAAADAQAAAAAAXgAAAAACfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAABAQAAAAAAXgAAAAAAXgAAAAADfwAAAAAAXgAAAAACfwAAAAAAXgAAAAACMAAAAAADXgAAAAABXgAAAAACXgAAAAABXgAAAAAAXgAAAAABXgAAAAAAfwAAAAAAXgAAAAABMAAAAAACXgAAAAADXgAAAAABXgAAAAABXgAAAAAAXgAAAAADXgAAAAACXgAAAAACXgAAAAADXgAAAAABXgAAAAACXgAAAAAAXgAAAAAAXgAAAAADfwAAAAAAXgAAAAAAAQAAAAAAXgAAAAACXgAAAAABXgAAAAABXgAAAAACfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAAAAQAAAAAAXgAAAAABfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAADAQAAAAAAXgAAAAADfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAXgAAAAADAQAAAAAAXgAAAAACfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAXgAAAAACMAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAQwAAAAAAQwAAAAAAfwAAAAAAXgAAAAAAXgAAAAABAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAUAAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAACAQAAAAAA version: 6 -3,-1: ind: -3,-1 @@ -180,7 +181,7 @@ entities: version: 6 -1,3: ind: -1,3 - tiles: cQAAAAADcQAAAAAAcQAAAAACfwAAAAAAcQAAAAADcQAAAAAAcQAAAAABcQAAAAACcQAAAAADfwAAAAAAXgAAAAABXgAAAAABAQAAAAAAXgAAAAADXgAAAAADfwAAAAAAcQAAAAAAcQAAAAADcQAAAAADcQAAAAABcQAAAAAAcQAAAAADcQAAAAABcQAAAAABcQAAAAADfwAAAAAAXgAAAAACAQAAAAAAMAAAAAABXgAAAAADXgAAAAABfwAAAAAAcQAAAAABcQAAAAADcQAAAAACfwAAAAAAcQAAAAACcQAAAAABcQAAAAAAcQAAAAACcQAAAAABfwAAAAAAXgAAAAAAAQAAAAAAXgAAAAAAXgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAcQAAAAAAfwAAAAAAfwAAAAAAXgAAAAACAQAAAAAAXgAAAAAAfwAAAAAAfwAAAAAAMgAAAAAAXgAAAAABXgAAAAACXgAAAAADXgAAAAAAXgAAAAACXgAAAAABXgAAAAAAXgAAAAACXgAAAAADXgAAAAAAXgAAAAAAAQAAAAAAXgAAAAABMgAAAAAAMgAAAAAAMgAAAAAAMAAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAMAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAMAAAAAACAQAAAAAAXgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAAQAAAAAAXgAAAAABXgAAAAADXgAAAAADXgAAAAABXgAAAAACXgAAAAACXgAAAAACXgAAAAACXgAAAAABXgAAAAABXgAAAAAAXgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAAQAAAAAAXgAAAAADfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAIAAAAAAAfwAAAAAAfwAAAAAAXgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAQAAAAAAXgAAAAAAfwAAAAAAIAAAAAAAIAAAAAABIAAAAAACIAAAAAACIAAAAAABfwAAAAAAIAAAAAACIAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAAQAAAAAAXgAAAAAAUAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAACIAAAAAADfwAAAAAAIAAAAAADIAAAAAACfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAQwAAAAAATwAAAAABXgAAAAABUAAAAAAAIAAAAAADIAAAAAABIAAAAAAAIAAAAAAAIAAAAAABfwAAAAAAIAAAAAADIAAAAAACfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAAQAAAAAAXgAAAAACXgAAAAADIAAAAAAAIAAAAAAAIAAAAAABIAAAAAADIAAAAAADfwAAAAAAIAAAAAABIAAAAAABfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAAQAAAAAAXgAAAAADUAAAAAAAIAAAAAADIAAAAAAAIAAAAAADIAAAAAACIAAAAAADfwAAAAAAIAAAAAACIAAAAAADUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAAQAAAAAAXgAAAAABUAAAAAAAIAAAAAABIAAAAAAAIAAAAAACIAAAAAADIAAAAAACfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAAQAAAAAAXgAAAAAAUAAAAAAAIAAAAAACIAAAAAADIAAAAAACIAAAAAAAIAAAAAABfwAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAUAAAAAAAXgAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAQwAAAAAAfwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAfwAAAAAA + tiles: cQAAAAADcQAAAAAAcQAAAAACfwAAAAAAcQAAAAADcQAAAAAAcQAAAAABcQAAAAACcQAAAAADfwAAAAAAXgAAAAABXgAAAAABAQAAAAAAXgAAAAADXgAAAAADfwAAAAAAcQAAAAAAcQAAAAADcQAAAAADcQAAAAABcQAAAAAAcQAAAAADcQAAAAABcQAAAAABcQAAAAADfwAAAAAAXgAAAAACAQAAAAAAMAAAAAABXgAAAAADXgAAAAABfwAAAAAAcQAAAAABcQAAAAADcQAAAAACfwAAAAAAcQAAAAACcQAAAAABcQAAAAAAcQAAAAACcQAAAAABfwAAAAAAXgAAAAAAAQAAAAAAXgAAAAAAXgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAcQAAAAAAfwAAAAAAfwAAAAAAXgAAAAACAQAAAAAAXgAAAAAAfwAAAAAAfwAAAAAAMgAAAAAAXgAAAAABXgAAAAACXgAAAAADXgAAAAAAXgAAAAACXgAAAAABXgAAAAAAXgAAAAACXgAAAAADXgAAAAAAXgAAAAAAAQAAAAAAXgAAAAABMgAAAAAAMgAAAAAAMgAAAAAAMAAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAMAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAMAAAAAACAQAAAAAAXgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAAQAAAAAAXgAAAAABXgAAAAADXgAAAAADXgAAAAABXgAAAAACXgAAAAACXgAAAAACXgAAAAACXgAAAAABXgAAAAABXgAAAAAAXgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAAQAAAAAAXgAAAAADfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAIAAAAAAAfwAAAAAAfwAAAAAAXgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAQAAAAAAXgAAAAAAfwAAAAAAIAAAAAAAIAAAAAABIAAAAAACIAAAAAACIAAAAAABfwAAAAAAIAAAAAACIAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAAQAAAAAAXgAAAAAAUAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAACIAAAAAADBAAAAAAAIAAAAAADIAAAAAACfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAQwAAAAAATwAAAAABXgAAAAABUAAAAAAAIAAAAAADIAAAAAABIAAAAAAAIAAAAAAAIAAAAAABfwAAAAAAIAAAAAADIAAAAAACfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAAQAAAAAAXgAAAAACXgAAAAADIAAAAAAAIAAAAAAAIAAAAAABIAAAAAADIAAAAAADfwAAAAAAIAAAAAABIAAAAAABfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAAQAAAAAAXgAAAAADUAAAAAAAIAAAAAADIAAAAAAAIAAAAAADIAAAAAACIAAAAAADfwAAAAAAIAAAAAACIAAAAAADUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAAQAAAAAAXgAAAAABUAAAAAAAIAAAAAABIAAAAAAAIAAAAAACIAAAAAADIAAAAAACfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAAQAAAAAAXgAAAAAAUAAAAAAAIAAAAAACIAAAAAADIAAAAAACIAAAAAAAIAAAAAABfwAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAUAAAAAAAXgAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAQwAAAAAAfwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAfwAAAAAA version: 6 -2,3: ind: -2,3 @@ -188,7 +189,7 @@ entities: version: 6 -3,3: ind: -3,3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAXgAAAAACMAAAAAADfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAXgAAAAADAQAAAAAANAAAAAAANAAAAAAANAAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAAQAAAAAANAAAAAAANAAAAAAANAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAfwAAAAAAXgAAAAAAAQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAGAAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAewAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAfwAAAAAAXgAAAAACAQAAAAAAcQAAAAADfwAAAAAAcQAAAAADfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAfwAAAAAAXgAAAAADMAAAAAABcQAAAAAAfwAAAAAAcQAAAAAAfwAAAAAAfwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAfQAAAAAAewAAAAAAewAAAAAAewAAAAAAfwAAAAAAXgAAAAACXgAAAAAAcQAAAAADcQAAAAABcQAAAAABcQAAAAABfwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAfQAAAAAAewAAAAAAewAAAAAAewAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAcQAAAAACcQAAAAAAcQAAAAACcQAAAAADfwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAfQAAAAAAewAAAAAAewAAAAAAfwAAAAAAfwAAAAAAIAAAAAACIAAAAAAAfwAAAAAAcQAAAAACcQAAAAAAcQAAAAAAfwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAfQAAAAAAewAAAAAAewAAAAAAfwAAAAAAJgAAAAAAIAAAAAABIAAAAAABfwAAAAAAcQAAAAADcQAAAAAAcQAAAAAAfwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAfQAAAAAAewAAAAAAewAAAAAAfwAAAAAAJgAAAAAAIAAAAAADIAAAAAADfwAAAAAAcQAAAAACcQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAcQAAAAAAcQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAIAAAAAACIAAAAAAAIAAAAAAATwAAAAADIAAAAAAAIAAAAAADIAAAAAABIAAAAAAATwAAAAADIAAAAAACIAAAAAABIAAAAAACIAAAAAACTwAAAAAAIAAAAAADIAAAAAADIAAAAAADIAAAAAABIAAAAAADTwAAAAACIAAAAAADIAAAAAABIAAAAAAAIAAAAAADTwAAAAACIAAAAAAAIAAAAAACIAAAAAADIAAAAAADTwAAAAACIAAAAAACIAAAAAABfwAAAAAAIAAAAAABIAAAAAABIAAAAAABIAAAAAADIAAAAAACfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAKQAAAAACKQAAAAABfwAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAIAAAAAADIAAAAAAAIAAAAAADIAAAAAAAIAAAAAADfwAAAAAAKQAAAAADKQAAAAAAKQAAAAADKQAAAAACKQAAAAACKQAAAAADKQAAAAABKQAAAAABKQAAAAAC + tiles: AAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAUAAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAXgAAAAACMAAAAAADfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAXgAAAAADAQAAAAAANAAAAAAANAAAAAAANAAAAAAAfwAAAAAAUAAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAUAAAAAAAfwAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAAQAAAAAANAAAAAAANAAAAAAANAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAfwAAAAAAXgAAAAAAAQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAGAAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAewAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAfwAAAAAAXgAAAAACAQAAAAAAcQAAAAADfwAAAAAAcQAAAAADfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAfwAAAAAAXgAAAAADMAAAAAABcQAAAAAAfwAAAAAAcQAAAAAAfwAAAAAAfwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAfQAAAAAAewAAAAAAewAAAAAAewAAAAAAfwAAAAAAXgAAAAACXgAAAAAAcQAAAAADcQAAAAABcQAAAAABcQAAAAABfwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAfQAAAAAAewAAAAAAewAAAAAAewAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAcQAAAAACcQAAAAAAcQAAAAACcQAAAAADfwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAfQAAAAAAewAAAAAAewAAAAAAfwAAAAAAfwAAAAAAIAAAAAACIAAAAAAAfwAAAAAAcQAAAAACcQAAAAAAcQAAAAAAfwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAfQAAAAAAewAAAAAAewAAAAAAfwAAAAAAJgAAAAAAIAAAAAABIAAAAAABfwAAAAAAcQAAAAADcQAAAAAAcQAAAAAAfwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAfQAAAAAAewAAAAAAewAAAAAAfwAAAAAAJgAAAAAAIAAAAAADIAAAAAADfwAAAAAAcQAAAAACcQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAcQAAAAAAcQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAIAAAAAACIAAAAAAAIAAAAAAATwAAAAADIAAAAAAAIAAAAAADIAAAAAABIAAAAAAATwAAAAADIAAAAAACIAAAAAABIAAAAAACIAAAAAACTwAAAAAAIAAAAAADIAAAAAADIAAAAAADIAAAAAABIAAAAAADTwAAAAACIAAAAAADIAAAAAABIAAAAAAAIAAAAAADTwAAAAACIAAAAAAAIAAAAAACIAAAAAADIAAAAAADTwAAAAACIAAAAAACIAAAAAABfwAAAAAAIAAAAAABIAAAAAABIAAAAAABIAAAAAADIAAAAAACfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAKQAAAAACKQAAAAABfwAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAIAAAAAADIAAAAAAAIAAAAAADIAAAAAAAIAAAAAADfwAAAAAAKQAAAAADKQAAAAAAKQAAAAADKQAAAAACKQAAAAACKQAAAAADKQAAAAABKQAAAAABKQAAAAAC version: 6 0,3: ind: 0,3 @@ -232,7 +233,7 @@ entities: version: 6 -4,-2: ind: -4,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAACBwAAAAACBwAAAAABBwAAAAACBwAAAAAABwAAAAACBwAAAAABBwAAAAABBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfQAAAAACfQAAAAACfQAAAAADfQAAAAADBwAAAAABBwAAAAAABwAAAAAABwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAADewAAAAADewAAAAAAfQAAAAADfQAAAAADfQAAAAAABwAAAAABBwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfQAAAAADfQAAAAABfQAAAAACfQAAAAACfQAAAAACBwAAAAAABwAAAAAABwAAAAABBwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAACBwAAAAACBwAAAAABBwAAAAABBwAAAAABBwAAAAAABwAAAAACBwAAAAABBwAAAAABBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAACBwAAAAABBwAAAAAABwAAAAACBwAAAAABBwAAAAAABwAAAAACBwAAAAAABwAAAAABBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAACfgAAAAAABwAAAAABBwAAAAAABwAAAAABBwAAAAABBwAAAAABBwAAAAABBwAAAAACBwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAABwAAAAABCAAAAAAABwAAAAACBwAAAAACBwAAAAAABwAAAAABBwAAAAABfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAACBwAAAAACBwAAAAABBwAAAAACBwAAAAAABwAAAAACBwAAAAABBwAAAAABBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfQAAAAACfQAAAAACfQAAAAADfQAAAAADBwAAAAABBwAAAAAABwAAAAAABwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAADewAAAAADewAAAAAAfQAAAAADfQAAAAADfQAAAAAABwAAAAABBwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfQAAAAADfQAAAAABfQAAAAACfQAAAAACfQAAAAACBwAAAAAABwAAAAAABwAAAAABBwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAACBwAAAAACBwAAAAABBwAAAAABBwAAAAABBwAAAAAABwAAAAACBwAAAAABBwAAAAABBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAACBwAAAAABBwAAAAAABwAAAAACBwAAAAABBwAAAAAABwAAAAACBwAAAAAABwAAAAABBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAACfgAAAAAABwAAAAABBwAAAAAABwAAAAABBwAAAAABBwAAAAABBwAAAAABBwAAAAACBwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAABwAAAAABCAAAAAAABwAAAAACBwAAAAACBwAAAAAABwAAAAABBwAAAAABfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAA version: 6 -4,0: ind: -4,0 @@ -332,7 +333,7 @@ entities: version: 6 -2,-5: ind: -2,-5 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAACBwAAAAABBwAAAAABBwAAAAACBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAABfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAABBwAAAAABfwAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAACBwAAAAACfwAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAABwAAAAACBwAAAAAAfwAAAAAAGAAAAAAAGAAAAAAAGAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAABAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAABBwAAAAAABwAAAAAABgAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAACBwAAAAABBwAAAAABBgAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAABfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAABBwAAAAABfwAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAACBwAAAAACfwAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAABwAAAAACBwAAAAAAfwAAAAAAGAAAAAAAGAAAAAAAGAAAAAAA version: 6 -5,2: ind: -5,2 @@ -364,7 +365,7 @@ entities: version: 6 2,3: ind: 2,3 - tiles: UAAAAAAAUAAAAAAAXgAAAAAAfwAAAAAAfwAAAAAAbwAAAAADXgAAAAABXgAAAAADfwAAAAAAXgAAAAACXgAAAAADfwAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAXgAAAAAAXgAAAAACXgAAAAAAXgAAAAAAfwAAAAAAbwAAAAAAXgAAAAAAXgAAAAADfwAAAAAAXgAAAAADXgAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXgAAAAABXgAAAAABXgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAACXgAAAAACXgAAAAADfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAADXgAAAAADXgAAAAADfwAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAACXgAAAAACXgAAAAAAXgAAAAABfwAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: UAAAAAAAUAAAAAAAXgAAAAAAfwAAAAAAfwAAAAAAbwAAAAADXgAAAAABXgAAAAADfwAAAAAAXgAAAAACXgAAAAADfwAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAXgAAAAAAXgAAAAACXgAAAAAAXgAAAAAAfwAAAAAAbwAAAAAAXgAAAAAAXgAAAAADfwAAAAAAXgAAAAADXgAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXgAAAAABXgAAAAABXgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAACXgAAAAACXgAAAAADBAAAAAAABAAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAADXgAAAAADXgAAAAADfwAAAAAAfwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAACXgAAAAACXgAAAAAAXgAAAAABfwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 0,5: ind: 0,5 @@ -5709,6 +5710,7 @@ entities: 1: 7 8,12: 0: 30708 + 7: 32768 8,13: 0: 247 1: 61440 @@ -6564,7 +6566,7 @@ entities: 1: 57856 9,12: 0: 238 - 1: 61440 + 7: 61440 10,10: 1: 15 0: 47872 @@ -6575,7 +6577,8 @@ entities: 1: 8192 10,12: 0: 102 - 1: 61440 + 7: 4096 + 1: 49152 10,8: 0: 32768 11,8: @@ -6817,7 +6820,8 @@ entities: 8,-14: 0: 63280 9,13: - 1: 29794 + 1: 28672 + 7: 238 9,14: 1: 18146 0: 8192 @@ -6826,12 +6830,13 @@ entities: 9,16: 1: 7715 0: 8192 + 10,13: + 7: 17 + 1: 9728 10,14: 1: 242 10,15: 1: 256 - 10,13: - 1: 9778 11,14: 1: 8916 0: 32 @@ -7123,6 +7128,21 @@ entities: - 0 - 0 - 0 + - volume: 2500 + temperature: 293.15 + moles: + - 0 + - 103.92799 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 chunkSize: 4 - type: BecomesStation id: Lighthouse @@ -7203,6 +7223,17 @@ entities: - 2267 - 20893 - 20892 + - uid: 4016 + components: + - type: Transform + pos: 22.5,46.5 + parent: 100 + - type: DeviceList + devices: + - 18858 + - 18857 + - 21121 + - 12414 - uid: 5673 components: - type: Transform @@ -7285,6 +7316,20 @@ entities: - 3405 - 11022 - 13144 + - uid: 17058 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,54.5 + parent: 100 + - type: DeviceList + devices: + - 21112 + - 21121 + - 18662 + - 18859 + - 18855 + - 18860 - uid: 17125 components: - type: Transform @@ -8710,6 +8755,68 @@ entities: - 20893 - 20892 - 20894 + - uid: 21165 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,43.5 + parent: 100 + - type: DeviceList + devices: + - 16998 + - 18838 + - 18662 + - 18853 + - 18852 + - uid: 21166 + components: + - type: Transform + pos: 44.5,47.5 + parent: 100 + - type: DeviceList + devices: + - 18852 + - 18853 + - 18839 + - 18850 + - 18840 + - 18851 + - 18841 + - 18849 + - 19382 + - 19384 + - 18845 + - 18842 + - 18843 + - 18848 + - 18661 + - 18657 + - 18656 + - 18658 + - 18659 + - 18660 + - 18846 + - 18844 +- proto: AirAlarmVox + entities: + - uid: 21104 + components: + - type: Transform + pos: 38.5,54.5 + parent: 100 + - type: DeviceList + devices: + - 21110 + - 21105 + - 21106 + - 21109 + - 21122 + - type: DeviceLinkSource + linkedPorts: + 21123: + - AirDanger: InputB + 21101: + - AirDanger: Close - proto: AirCanister entities: - uid: 12559 @@ -8717,11 +8824,6 @@ entities: - type: Transform pos: 11.5,-9.5 parent: 100 - - uid: 17346 - components: - - type: Transform - pos: -52.5,38.5 - parent: 100 - proto: Airlock entities: - uid: 2132 @@ -10117,6 +10219,12 @@ entities: - type: Transform pos: 48.5,38.5 parent: 100 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 19409: + - DoorStatus: DoorBolt - uid: 19409 components: - type: MetaData @@ -10124,6 +10232,12 @@ entities: - type: Transform pos: 48.5,40.5 parent: 100 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 19408: + - DoorStatus: DoorBolt - proto: AirlockFreezerKitchenHydroLocked entities: - uid: 1030 @@ -11487,6 +11601,22 @@ entities: - type: Transform pos: 6.5,-18.5 parent: 100 +- proto: AirlockMedical + entities: + - uid: 2214 + components: + - type: MetaData + name: Psychology + - type: Transform + pos: -50.5,62.5 + parent: 100 + - uid: 2346 + components: + - type: MetaData + name: Psychology + - type: Transform + pos: -49.5,62.5 + parent: 100 - proto: AirlockMedicalGlass entities: - uid: 475 @@ -11589,20 +11719,6 @@ entities: - type: Transform pos: -12.5,45.5 parent: 100 - - uid: 12764 - components: - - type: MetaData - name: Psychology - - type: Transform - pos: -49.5,62.5 - parent: 100 - - uid: 12768 - components: - - type: MetaData - name: Psychology - - type: Transform - pos: -50.5,62.5 - parent: 100 - uid: 14836 components: - type: MetaData @@ -12429,6 +12545,16 @@ entities: rot: -1.5707963267948966 rad pos: -4.5,63.5 parent: 100 +- proto: AirSensorVox + entities: + - uid: 21122 + components: + - type: Transform + pos: 36.5,51.5 + parent: 100 + - type: DeviceNetwork + deviceLists: + - 21104 - proto: AloeSeeds entities: - uid: 2815 @@ -12686,14 +12812,6 @@ entities: rot: -1.5707963267948966 rad pos: -15.5,38.5 parent: 100 - - uid: 17612 - components: - - type: MetaData - name: Perma APC - - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,38.5 - parent: 100 - uid: 18456 components: - type: MetaData @@ -12775,6 +12893,28 @@ entities: - type: Transform pos: -24.5,16.5 parent: 100 + - uid: 21063 + components: + - type: MetaData + name: Perma APC + - type: Transform + pos: 23.5,46.5 + parent: 100 + - uid: 21064 + components: + - type: MetaData + name: Perma Cells APC + - type: Transform + pos: 37.5,47.5 + parent: 100 + - uid: 21103 + components: + - type: MetaData + name: Perma Vox APC + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,54.5 + parent: 100 - proto: APCHighCapacity entities: - uid: 14184 @@ -12993,6 +13133,18 @@ entities: rot: -1.5707963267948966 rad pos: -63.5,-5.5 parent: 100 + - uid: 21061 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -63.5,-2.5 + parent: 100 + - uid: 21062 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -63.5,-6.5 + parent: 100 - proto: AtmosFixBlockerMarker entities: - uid: 14626 @@ -13135,6 +13287,26 @@ entities: - type: Transform pos: -22.5,-55.5 parent: 100 + - uid: 21174 + components: + - type: Transform + pos: -25.5,-51.5 + parent: 100 + - uid: 21175 + components: + - type: Transform + pos: -25.5,-52.5 + parent: 100 + - uid: 21176 + components: + - type: Transform + pos: -25.5,-53.5 + parent: 100 + - uid: 21177 + components: + - type: Transform + pos: -24.5,-51.5 + parent: 100 - proto: AtmosFixFreezerMarker entities: - uid: 1190 @@ -13228,6 +13400,78 @@ entities: - type: Transform pos: -8.5,-56.5 parent: 100 +- proto: AtmosFixVoxMarker + entities: + - uid: 21130 + components: + - type: Transform + pos: 37.5,53.5 + parent: 100 + - uid: 21131 + components: + - type: Transform + pos: 37.5,52.5 + parent: 100 + - uid: 21132 + components: + - type: Transform + pos: 37.5,51.5 + parent: 100 + - uid: 21133 + components: + - type: Transform + pos: 38.5,53.5 + parent: 100 + - uid: 21134 + components: + - type: Transform + pos: 38.5,52.5 + parent: 100 + - uid: 21135 + components: + - type: Transform + pos: 38.5,51.5 + parent: 100 + - uid: 21136 + components: + - type: Transform + pos: 39.5,53.5 + parent: 100 + - uid: 21137 + components: + - type: Transform + pos: 39.5,52.5 + parent: 100 + - uid: 21138 + components: + - type: Transform + pos: 39.5,51.5 + parent: 100 + - uid: 21139 + components: + - type: Transform + pos: 40.5,53.5 + parent: 100 + - uid: 21140 + components: + - type: Transform + pos: 40.5,52.5 + parent: 100 + - uid: 21141 + components: + - type: Transform + pos: 40.5,51.5 + parent: 100 + - uid: 21142 + components: + - type: Transform + pos: 36.5,51.5 + parent: 100 + - uid: 21143 + components: + - type: Transform + pos: 35.5,51.5 + parent: 100 - proto: Autolathe entities: - uid: 3041 @@ -13452,6 +13696,11 @@ entities: - type: Transform pos: -23.5,73.5 parent: 100 + - uid: 4882 + components: + - type: Transform + pos: 37.5,53.5 + parent: 100 - uid: 5617 components: - type: Transform @@ -13572,6 +13821,11 @@ entities: - type: Transform pos: 0.5,47.5 parent: 100 + - uid: 18917 + components: + - type: Transform + pos: 40.5,52.5 + parent: 100 - uid: 19437 components: - type: Transform @@ -13729,12 +13983,22 @@ entities: - type: Transform pos: 1.5,32.5 parent: 100 + - uid: 4017 + components: + - type: Transform + pos: 40.5,52.5 + parent: 100 - uid: 6845 components: - type: Transform rot: -1.5707963267948966 rad pos: -34.5,58.5 parent: 100 + - uid: 8668 + components: + - type: Transform + pos: 37.5,53.5 + parent: 100 - uid: 16797 components: - type: Transform @@ -14199,6 +14463,11 @@ entities: - type: Transform pos: 7.5,-6.5 parent: 100 + - uid: 21128 + components: + - type: Transform + pos: 39.5,53.5 + parent: 100 - proto: BoozeDispenser entities: - uid: 711 @@ -15118,6 +15387,11 @@ entities: - type: Transform pos: 29.5,15.5 parent: 100 + - uid: 2349 + components: + - type: Transform + pos: 25.5,48.5 + parent: 100 - uid: 2367 components: - type: Transform @@ -15153,6 +15427,11 @@ entities: - type: Transform pos: -41.5,-10.5 parent: 100 + - uid: 2858 + components: + - type: Transform + pos: 25.5,47.5 + parent: 100 - uid: 2914 components: - type: Transform @@ -17753,11 +18032,6 @@ entities: - type: Transform pos: 27.5,46.5 parent: 100 - - uid: 8668 - components: - - type: Transform - pos: 24.5,46.5 - parent: 100 - uid: 8669 components: - type: Transform @@ -22818,6 +23092,11 @@ entities: - type: Transform pos: -40.5,-49.5 parent: 100 + - uid: 12434 + components: + - type: Transform + pos: 24.5,47.5 + parent: 100 - uid: 12450 components: - type: Transform @@ -22923,6 +23202,16 @@ entities: - type: Transform pos: -47.5,-45.5 parent: 100 + - uid: 12764 + components: + - type: Transform + pos: 23.5,45.5 + parent: 100 + - uid: 12768 + components: + - type: Transform + pos: 23.5,46.5 + parent: 100 - uid: 12822 components: - type: Transform @@ -25833,11 +26122,6 @@ entities: - type: Transform pos: -42.5,-31.5 parent: 100 - - uid: 17044 - components: - - type: Transform - pos: 30.5,44.5 - parent: 100 - uid: 17045 components: - type: Transform @@ -25948,6 +26232,11 @@ entities: - type: Transform pos: -39.5,-14.5 parent: 100 + - uid: 17346 + components: + - type: Transform + pos: -17.5,-71.5 + parent: 100 - uid: 17347 components: - type: Transform @@ -25988,6 +26277,11 @@ entities: - type: Transform pos: -47.5,-15.5 parent: 100 + - uid: 17406 + components: + - type: Transform + pos: -12.5,-72.5 + parent: 100 - uid: 17430 components: - type: Transform @@ -26133,21 +26427,6 @@ entities: - type: Transform pos: -19.5,-33.5 parent: 100 - - uid: 18917 - components: - - type: Transform - pos: 26.5,47.5 - parent: 100 - - uid: 18918 - components: - - type: Transform - pos: 26.5,48.5 - parent: 100 - - uid: 18919 - components: - - type: Transform - pos: 26.5,49.5 - parent: 100 - uid: 18920 components: - type: Transform @@ -26223,11 +26502,6 @@ entities: - type: Transform pos: 28.5,38.5 parent: 100 - - uid: 18935 - components: - - type: Transform - pos: 27.5,38.5 - parent: 100 - uid: 18936 components: - type: Transform @@ -27963,6 +28237,176 @@ entities: - type: Transform pos: -6.5,-71.5 parent: 100 + - uid: 21091 + components: + - type: Transform + pos: 37.5,47.5 + parent: 100 + - uid: 21092 + components: + - type: Transform + pos: 25.5,49.5 + parent: 100 + - uid: 21155 + components: + - type: Transform + pos: 37.5,54.5 + parent: 100 + - uid: 21156 + components: + - type: Transform + pos: 37.5,53.5 + parent: 100 + - uid: 21157 + components: + - type: Transform + pos: 37.5,52.5 + parent: 100 + - uid: 21158 + components: + - type: Transform + pos: 37.5,51.5 + parent: 100 + - uid: 21159 + components: + - type: Transform + pos: 36.5,51.5 + parent: 100 + - uid: 21160 + components: + - type: Transform + pos: 35.5,51.5 + parent: 100 + - uid: 21161 + components: + - type: Transform + pos: 38.5,51.5 + parent: 100 + - uid: 21162 + components: + - type: Transform + pos: 39.5,51.5 + parent: 100 + - uid: 21163 + components: + - type: Transform + pos: 39.5,52.5 + parent: 100 + - uid: 21178 + components: + - type: Transform + pos: -13.5,-72.5 + parent: 100 + - uid: 21179 + components: + - type: Transform + pos: -14.5,-72.5 + parent: 100 + - uid: 21180 + components: + - type: Transform + pos: -15.5,-72.5 + parent: 100 + - uid: 21181 + components: + - type: Transform + pos: -16.5,-72.5 + parent: 100 + - uid: 21182 + components: + - type: Transform + pos: -17.5,-72.5 + parent: 100 + - uid: 21183 + components: + - type: Transform + pos: -18.5,-72.5 + parent: 100 + - uid: 21184 + components: + - type: Transform + pos: -19.5,-72.5 + parent: 100 + - uid: 21185 + components: + - type: Transform + pos: -20.5,-72.5 + parent: 100 + - uid: 21186 + components: + - type: Transform + pos: -12.5,-73.5 + parent: 100 + - uid: 21187 + components: + - type: Transform + pos: -17.5,-70.5 + parent: 100 + - uid: 21188 + components: + - type: Transform + pos: -12.5,-74.5 + parent: 100 + - uid: 21189 + components: + - type: Transform + pos: -10.5,-74.5 + parent: 100 + - uid: 21190 + components: + - type: Transform + pos: -9.5,-74.5 + parent: 100 + - uid: 21191 + components: + - type: Transform + pos: -8.5,-74.5 + parent: 100 + - uid: 21192 + components: + - type: Transform + pos: -7.5,-74.5 + parent: 100 + - uid: 21193 + components: + - type: Transform + pos: -11.5,-74.5 + parent: 100 + - uid: 21194 + components: + - type: Transform + pos: -6.5,-74.5 + parent: 100 + - uid: 21195 + components: + - type: Transform + pos: -5.5,-74.5 + parent: 100 + - uid: 21196 + components: + - type: Transform + pos: -4.5,-74.5 + parent: 100 + - uid: 21197 + components: + - type: Transform + pos: -6.5,-73.5 + parent: 100 + - uid: 21198 + components: + - type: Transform + pos: -6.5,-72.5 + parent: 100 + - uid: 21199 + components: + - type: Transform + pos: -17.5,-69.5 + parent: 100 + - uid: 21200 + components: + - type: Transform + pos: -17.5,-68.5 + parent: 100 - proto: CableApcStack entities: - uid: 10832 @@ -35793,11 +36237,6 @@ entities: - type: Transform pos: 13.5,-59.5 parent: 100 - - uid: 17058 - components: - - type: Transform - pos: 27.5,38.5 - parent: 100 - uid: 17224 components: - type: Transform @@ -35878,11 +36317,6 @@ entities: - type: Transform pos: 28.5,39.5 parent: 100 - - uid: 17614 - components: - - type: Transform - pos: 28.5,38.5 - parent: 100 - uid: 17722 components: - type: Transform @@ -37243,6 +37677,191 @@ entities: - type: Transform pos: 9.5,-40.5 parent: 100 + - uid: 21065 + components: + - type: Transform + pos: 23.5,46.5 + parent: 100 + - uid: 21066 + components: + - type: Transform + pos: 23.5,45.5 + parent: 100 + - uid: 21067 + components: + - type: Transform + pos: 23.5,44.5 + parent: 100 + - uid: 21068 + components: + - type: Transform + pos: 24.5,44.5 + parent: 100 + - uid: 21069 + components: + - type: Transform + pos: 25.5,44.5 + parent: 100 + - uid: 21070 + components: + - type: Transform + pos: 26.5,44.5 + parent: 100 + - uid: 21071 + components: + - type: Transform + pos: 28.5,44.5 + parent: 100 + - uid: 21072 + components: + - type: Transform + pos: 27.5,44.5 + parent: 100 + - uid: 21073 + components: + - type: Transform + pos: 28.5,43.5 + parent: 100 + - uid: 21074 + components: + - type: Transform + pos: 28.5,42.5 + parent: 100 + - uid: 21075 + components: + - type: Transform + pos: 28.5,41.5 + parent: 100 + - uid: 21076 + components: + - type: Transform + pos: 29.5,41.5 + parent: 100 + - uid: 21077 + components: + - type: Transform + pos: 29.5,40.5 + parent: 100 + - uid: 21078 + components: + - type: Transform + pos: 29.5,39.5 + parent: 100 + - uid: 21079 + components: + - type: Transform + pos: 29.5,44.5 + parent: 100 + - uid: 21080 + components: + - type: Transform + pos: 30.5,44.5 + parent: 100 + - uid: 21081 + components: + - type: Transform + pos: 31.5,44.5 + parent: 100 + - uid: 21082 + components: + - type: Transform + pos: 32.5,44.5 + parent: 100 + - uid: 21083 + components: + - type: Transform + pos: 33.5,44.5 + parent: 100 + - uid: 21084 + components: + - type: Transform + pos: 33.5,45.5 + parent: 100 + - uid: 21085 + components: + - type: Transform + pos: 33.5,46.5 + parent: 100 + - uid: 21086 + components: + - type: Transform + pos: 34.5,46.5 + parent: 100 + - uid: 21087 + components: + - type: Transform + pos: 35.5,46.5 + parent: 100 + - uid: 21088 + components: + - type: Transform + pos: 36.5,46.5 + parent: 100 + - uid: 21089 + components: + - type: Transform + pos: 37.5,46.5 + parent: 100 + - uid: 21090 + components: + - type: Transform + pos: 37.5,47.5 + parent: 100 + - uid: 21144 + components: + - type: Transform + pos: 37.5,54.5 + parent: 100 + - uid: 21145 + components: + - type: Transform + pos: 37.5,53.5 + parent: 100 + - uid: 21146 + components: + - type: Transform + pos: 37.5,52.5 + parent: 100 + - uid: 21147 + components: + - type: Transform + pos: 37.5,51.5 + parent: 100 + - uid: 21148 + components: + - type: Transform + pos: 36.5,51.5 + parent: 100 + - uid: 21149 + components: + - type: Transform + pos: 35.5,51.5 + parent: 100 + - uid: 21150 + components: + - type: Transform + pos: 34.5,51.5 + parent: 100 + - uid: 21151 + components: + - type: Transform + pos: 34.5,50.5 + parent: 100 + - uid: 21152 + components: + - type: Transform + pos: 34.5,49.5 + parent: 100 + - uid: 21153 + components: + - type: Transform + pos: 34.5,48.5 + parent: 100 + - uid: 21154 + components: + - type: Transform + pos: 34.5,47.5 + parent: 100 - proto: CableTerminal entities: - uid: 10857 @@ -43694,6 +44313,13 @@ entities: - type: Transform pos: 20.01587,-14.425987 parent: 100 +- proto: ClothingHandsGlovesCombat + entities: + - uid: 21222 + components: + - type: Transform + pos: -5.625706,-49.196655 + parent: 100 - proto: ClothingHandsGlovesFingerless entities: - uid: 12232 @@ -44757,6 +45383,12 @@ entities: - type: Transform pos: 11.5,23.5 parent: 100 + - uid: 21129 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,52.5 + parent: 100 - proto: CommsComputerCircuitboard entities: - uid: 19634 @@ -45449,6 +46081,24 @@ entities: rot: 1.5707963267948966 rad pos: -39.5,-14.5 parent: 100 + - uid: 21211 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -54.5,-17.5 + parent: 100 + - uid: 21212 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -55.5,-17.5 + parent: 100 + - uid: 21213 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -56.5,-17.5 + parent: 100 - proto: CounterWoodFrame entities: - uid: 1959 @@ -54658,6 +55308,10 @@ entities: - type: Transform pos: 34.5,48.5 parent: 100 + - type: DeviceNetwork + deviceLists: + - 17058 + - 21165 - uid: 19024 components: - type: Transform @@ -54678,6 +55332,16 @@ entities: - type: Transform pos: -43.5,-28.5 parent: 100 + - uid: 21121 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,48.5 + parent: 100 + - type: DeviceNetwork + deviceLists: + - 17058 + - 4016 - proto: FirelockEdge entities: - uid: 337 @@ -54779,6 +55443,9 @@ entities: rot: -1.5707963267948966 rad pos: 22.5,44.5 parent: 100 + - type: DeviceNetwork + deviceLists: + - 4016 - uid: 17294 components: - type: Transform @@ -55783,31 +56450,49 @@ entities: - type: Transform pos: 39.5,47.5 parent: 100 + - type: DeviceNetwork + deviceLists: + - 21166 - uid: 18657 components: - type: Transform pos: 41.5,47.5 parent: 100 + - type: DeviceNetwork + deviceLists: + - 21166 - uid: 18658 components: - type: Transform pos: 38.5,44.5 parent: 100 + - type: DeviceNetwork + deviceLists: + - 21166 - uid: 18659 components: - type: Transform pos: 40.5,44.5 parent: 100 + - type: DeviceNetwork + deviceLists: + - 21166 - uid: 18660 components: - type: Transform pos: 44.5,44.5 parent: 100 + - type: DeviceNetwork + deviceLists: + - 21166 - uid: 18661 components: - type: Transform pos: 45.5,46.5 parent: 100 + - type: DeviceNetwork + deviceLists: + - 21166 - uid: 18759 components: - type: Transform @@ -55822,11 +56507,19 @@ entities: - type: Transform pos: 36.5,46.5 parent: 100 + - type: DeviceNetwork + deviceLists: + - 21165 + - 21166 - uid: 18853 components: - type: Transform pos: 36.5,45.5 parent: 100 + - type: DeviceNetwork + deviceLists: + - 21165 + - 21166 - uid: 18867 components: - type: Transform @@ -56413,6 +57106,18 @@ entities: - type: Transform pos: -54.271267,11.631478 parent: 100 +- proto: FoodKebabSkewer + entities: + - uid: 12116 + components: + - type: Transform + pos: -36.411007,-21.465963 + parent: 100 + - uid: 18881 + components: + - type: Transform + pos: 25.495583,45.7853 + parent: 100 - proto: FoodLemon entities: - uid: 12707 @@ -56468,18 +57173,6 @@ entities: - type: Transform pos: -8.219691,77.89517 parent: 100 -- proto: FoodMeatRatdoubleKebab - entities: - - uid: 12116 - components: - - type: Transform - pos: -36.411007,-21.465963 - parent: 100 - - uid: 18881 - components: - - type: Transform - pos: 25.495583,45.7853 - parent: 100 - proto: FoodPieBananaCream entities: - uid: 6349 @@ -56765,12 +57458,6 @@ entities: color: '#42F5F5FF' - proto: GasOutletInjector entities: - - uid: 2858 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,-56.5 - parent: 100 - uid: 5257 components: - type: Transform @@ -56795,6 +57482,36 @@ entities: rot: -1.5707963267948966 rad pos: -8.5,-52.5 parent: 100 + - uid: 17044 + components: + - type: Transform + pos: -25.5,-55.5 + parent: 100 + - uid: 21125 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,49.5 + parent: 100 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 21168 + components: + - type: Transform + pos: -21.5,-55.5 + parent: 100 + - uid: 21169 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,-57.5 + parent: 100 + - uid: 21170 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,-57.5 + parent: 100 - proto: GasPassiveVent entities: - uid: 1485 @@ -58729,6 +59446,14 @@ entities: parent: 100 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 21120 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,52.5 + parent: 100 + - type: AtmosPipeColor + color: '#990000FF' - proto: GasPipeFourway entities: - uid: 4099 @@ -58911,6 +59636,11 @@ entities: parent: 100 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 21173 + components: + - type: Transform + pos: -21.5,-56.5 + parent: 100 - proto: GasPipeStraight entities: - uid: 7 @@ -70889,12 +71619,6 @@ entities: parent: 100 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 14544 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -21.5,-56.5 - parent: 100 - uid: 14550 components: - type: Transform @@ -76024,6 +76748,64 @@ entities: parent: 100 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 21114 + components: + - type: Transform + pos: 33.5,51.5 + parent: 100 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 21115 + components: + - type: Transform + pos: 35.5,50.5 + parent: 100 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 21116 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,52.5 + parent: 100 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 21117 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,52.5 + parent: 100 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 21118 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,52.5 + parent: 100 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 21119 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,52.5 + parent: 100 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 21171 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,-56.5 + parent: 100 + - uid: 21172 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,-56.5 + parent: 100 - proto: GasPipeTJunction entities: - uid: 167 @@ -78192,6 +78974,12 @@ entities: parent: 100 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 14544 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,-56.5 + parent: 100 - uid: 14885 components: - type: Transform @@ -78871,6 +79659,21 @@ entities: parent: 100 - type: AtmosPipeColor color: '#990000FF' + - uid: 21111 + components: + - type: Transform + pos: 37.5,52.5 + parent: 100 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 21113 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,50.5 + parent: 100 + - type: AtmosPipeColor + color: '#990000FF' - proto: GasPort entities: - uid: 62 @@ -78905,6 +79708,12 @@ entities: rot: 3.141592653589793 rad pos: -20.5,-51.5 parent: 100 + - uid: 21107 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.5,51.5 + parent: 100 - proto: GasPressurePump entities: - uid: 355 @@ -80488,6 +81297,9 @@ entities: rot: 1.5707963267948966 rad pos: 31.5,45.5 parent: 100 + - type: DeviceNetwork + deviceLists: + - 21165 - type: AtmosPipeColor color: '#0055CCFF' - uid: 18839 @@ -80495,6 +81307,9 @@ entities: - type: Transform pos: 38.5,48.5 parent: 100 + - type: DeviceNetwork + deviceLists: + - 21166 - type: AtmosPipeColor color: '#0055CCFF' - uid: 18840 @@ -80503,6 +81318,9 @@ entities: rot: 3.141592653589793 rad pos: 38.5,43.5 parent: 100 + - type: DeviceNetwork + deviceLists: + - 21166 - type: AtmosPipeColor color: '#0055CCFF' - uid: 18841 @@ -80511,6 +81329,9 @@ entities: rot: 3.141592653589793 rad pos: 40.5,43.5 parent: 100 + - type: DeviceNetwork + deviceLists: + - 21166 - type: AtmosPipeColor color: '#0055CCFF' - uid: 18842 @@ -80519,6 +81340,9 @@ entities: rot: 3.141592653589793 rad pos: 42.5,45.5 parent: 100 + - type: DeviceNetwork + deviceLists: + - 21166 - type: AtmosPipeColor color: '#0055CCFF' - uid: 18843 @@ -80526,6 +81350,9 @@ entities: - type: Transform pos: 42.5,48.5 parent: 100 + - type: DeviceNetwork + deviceLists: + - 21166 - type: AtmosPipeColor color: '#0055CCFF' - uid: 18844 @@ -80533,6 +81360,9 @@ entities: - type: Transform pos: 47.5,47.5 parent: 100 + - type: DeviceNetwork + deviceLists: + - 21166 - type: AtmosPipeColor color: '#0055CCFF' - uid: 18858 @@ -80541,6 +81371,9 @@ entities: rot: 3.141592653589793 rad pos: 26.5,41.5 parent: 100 + - type: DeviceNetwork + deviceLists: + - 4016 - type: AtmosPipeColor color: '#0055CCFF' - uid: 18859 @@ -80548,6 +81381,9 @@ entities: - type: Transform pos: 25.5,52.5 parent: 100 + - type: DeviceNetwork + deviceLists: + - 17058 - type: AtmosPipeColor color: '#0055CCFF' - uid: 18860 @@ -80555,6 +81391,9 @@ entities: - type: Transform pos: 32.5,52.5 parent: 100 + - type: DeviceNetwork + deviceLists: + - 17058 - type: AtmosPipeColor color: '#0055CCFF' - uid: 18946 @@ -80623,6 +81462,9 @@ entities: rot: -1.5707963267948966 rad pos: 44.5,42.5 parent: 100 + - type: DeviceNetwork + deviceLists: + - 21166 - type: AtmosPipeColor color: '#0055CCFF' - uid: 19385 @@ -80747,6 +81589,17 @@ entities: - 9601 - type: AtmosPipeColor color: '#0055CCFF' +- proto: GasVentPumpVox + entities: + - uid: 21106 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 39.5,51.5 + parent: 100 + - type: DeviceNetwork + deviceLists: + - 21104 - proto: GasVentScrubber entities: - uid: 912 @@ -82084,6 +82937,9 @@ entities: rot: 3.141592653589793 rad pos: 32.5,42.5 parent: 100 + - type: DeviceNetwork + deviceLists: + - 21165 - type: AtmosPipeColor color: '#990000FF' - uid: 17325 @@ -82161,6 +83017,9 @@ entities: - type: Transform pos: 44.5,46.5 parent: 100 + - type: DeviceNetwork + deviceLists: + - 21166 - type: AtmosPipeColor color: '#990000FF' - uid: 18846 @@ -82169,6 +83028,9 @@ entities: rot: -1.5707963267948966 rad pos: 48.5,45.5 parent: 100 + - type: DeviceNetwork + deviceLists: + - 21166 - type: AtmosPipeColor color: '#990000FF' - uid: 18848 @@ -82176,6 +83038,9 @@ entities: - type: Transform pos: 41.5,48.5 parent: 100 + - type: DeviceNetwork + deviceLists: + - 21166 - type: AtmosPipeColor color: '#990000FF' - uid: 18849 @@ -82184,6 +83049,9 @@ entities: rot: 3.141592653589793 rad pos: 41.5,43.5 parent: 100 + - type: DeviceNetwork + deviceLists: + - 21166 - type: AtmosPipeColor color: '#990000FF' - uid: 18850 @@ -82191,6 +83059,9 @@ entities: - type: Transform pos: 39.5,48.5 parent: 100 + - type: DeviceNetwork + deviceLists: + - 21166 - type: AtmosPipeColor color: '#990000FF' - uid: 18851 @@ -82199,13 +83070,9 @@ entities: rot: 3.141592653589793 rad pos: 37.5,43.5 parent: 100 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 18854 - components: - - type: Transform - pos: 33.5,50.5 - parent: 100 + - type: DeviceNetwork + deviceLists: + - 21166 - type: AtmosPipeColor color: '#990000FF' - uid: 18855 @@ -82214,6 +83081,9 @@ entities: rot: -1.5707963267948966 rad pos: 28.5,50.5 parent: 100 + - type: DeviceNetwork + deviceLists: + - 17058 - type: AtmosPipeColor color: '#990000FF' - uid: 18856 @@ -82230,6 +83100,9 @@ entities: rot: 3.141592653589793 rad pos: 25.5,41.5 parent: 100 + - type: DeviceNetwork + deviceLists: + - 4016 - type: AtmosPipeColor color: '#990000FF' - uid: 19197 @@ -82275,6 +83148,9 @@ entities: rot: 1.5707963267948966 rad pos: 43.5,43.5 parent: 100 + - type: DeviceNetwork + deviceLists: + - 21166 - type: AtmosPipeColor color: '#990000FF' - uid: 19383 @@ -82338,6 +83214,51 @@ entities: - 9601 - type: AtmosPipeColor color: '#990000FF' + - uid: 21112 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,50.5 + parent: 100 + - type: DeviceNetwork + deviceLists: + - 17058 + - type: AtmosPipeColor + color: '#990000FF' +- proto: GasVentScrubberVox + entities: + - uid: 21105 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.5,51.5 + parent: 100 + - type: DeviceNetwork + deviceLists: + - 21104 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 21109 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,52.5 + parent: 100 + - type: DeviceNetwork + deviceLists: + - 21104 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 21110 + components: + - type: Transform + pos: 35.5,51.5 + parent: 100 + - type: DeviceNetwork + deviceLists: + - 21104 + - type: AtmosPipeColor + color: '#990000FF' - proto: GasVolumePump entities: - uid: 1391 @@ -84738,12 +85659,6 @@ entities: rot: 1.5707963267948966 rad pos: -18.5,-72.5 parent: 100 - - uid: 4882 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,-72.5 - parent: 100 - uid: 4883 components: - type: Transform @@ -89146,6 +90061,31 @@ entities: - type: Transform pos: -58.5,10.5 parent: 100 + - uid: 21202 + components: + - type: Transform + pos: -17.5,-70.5 + parent: 100 + - uid: 21203 + components: + - type: Transform + pos: -17.5,-68.5 + parent: 100 + - uid: 21204 + components: + - type: Transform + pos: -17.5,-69.5 + parent: 100 + - uid: 21205 + components: + - type: Transform + pos: -17.5,-71.5 + parent: 100 + - uid: 21206 + components: + - type: Transform + pos: -4.5,-73.5 + parent: 100 - proto: GunpetInstrument entities: - uid: 11510 @@ -89340,6 +90280,14 @@ entities: - type: Transform pos: -34.5,48.5 parent: 100 + - uid: 17638 + components: + - type: MetaData + desc: Locked; Nice and tight. + name: Vault + - type: Transform + pos: -7.5,57.5 + parent: 100 - uid: 20270 components: - type: MetaData @@ -90527,6 +91475,21 @@ entities: - type: Physics canCollide: False bodyType: Static + - uid: 21123 + components: + - type: Transform + anchored: True + pos: 38.5,53.5 + parent: 100 + - type: DeviceLinkSink + invokeCounter: 2 + - type: DeviceLinkSource + linkedPorts: + 21102: + - Output: DoorBolt + - type: Physics + canCollide: False + bodyType: Static - proto: LuxuryPen entities: - uid: 18642 @@ -90861,13 +91824,6 @@ entities: - type: Transform pos: 25.702765,8.09902 parent: 100 -- proto: MaterialReclaimer - entities: - - uid: 17406 - components: - - type: Transform - pos: -22.5,6.5 - parent: 100 - proto: MaterialWoodPlank1 entities: - uid: 96 @@ -91553,6 +92509,11 @@ entities: parent: 100 - proto: NitrogenCanister entities: + - uid: 2212 + components: + - type: Transform + pos: -52.5,38.5 + parent: 100 - uid: 13243 components: - type: Transform @@ -91563,6 +92524,14 @@ entities: - type: Transform pos: -42.5,-21.5 parent: 100 + - uid: 21108 + components: + - type: Transform + anchored: True + pos: 40.5,51.5 + parent: 100 + - type: Physics + bodyType: Static - proto: NitrogenTankFilled entities: - uid: 992 @@ -92647,6 +93616,18 @@ entities: - type: Transform pos: 22.5,54.5 parent: 100 + - uid: 21058 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,-10.5 + parent: 100 + - uid: 21059 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,-11.5 + parent: 100 - proto: PlasticFlapsAirtightClear entities: - uid: 5607 @@ -92936,20 +93917,40 @@ entities: - type: Transform pos: -0.5,56.5 parent: 100 -- proto: PortableGeneratorPacmanMachineCircuitboard - entities: - - uid: 12387 + - uid: 21054 components: - type: Transform - pos: 12.439571,-49.457287 + pos: -23.5,33.5 + parent: 100 + - uid: 21055 + components: + - type: Transform + pos: -26.5,40.5 parent: 100 -- proto: PortableGeneratorSuperPacman + - uid: 21056 + components: + - type: Transform + pos: -51.5,42.5 + parent: 100 + - uid: 21057 + components: + - type: Transform + pos: -44.5,-29.5 + parent: 100 +- proto: PortableGeneratorPacman entities: - - uid: 19413 + - uid: 17612 components: - type: Transform pos: 46.5,38.5 parent: 100 +- proto: PortableGeneratorPacmanMachineCircuitboard + entities: + - uid: 12387 + components: + - type: Transform + pos: 12.439571,-49.457287 + parent: 100 - proto: PortableScrubber entities: - uid: 14533 @@ -95041,6 +96042,12 @@ entities: rot: 1.5707963267948966 rad pos: -67.5,80.5 parent: 100 + - uid: 21207 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,-71.5 + parent: 100 - proto: PoweredLightBlueInterior entities: - uid: 11428 @@ -96134,6 +97141,12 @@ entities: - type: Transform pos: -59.5,77.5 parent: 100 + - uid: 21164 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 39.5,51.5 + parent: 100 - proto: PoweredSmallLightEmpty entities: - uid: 18466 @@ -97214,6 +98227,13 @@ entities: - type: Transform pos: 46.5,35.5 parent: 100 +- proto: RandomBook + entities: + - uid: 21127 + components: + - type: Transform + pos: 37.518826,52.541714 + parent: 100 - proto: RandomBox entities: - uid: 20743 @@ -101824,6 +102844,12 @@ entities: rot: 1.5707963267948966 rad pos: -22.5,8.5 parent: 100 + - uid: 21210 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -55.5,-17.5 + parent: 100 - proto: ReinforcedGirder entities: - uid: 2392 @@ -102089,6 +103115,11 @@ entities: rot: 1.5707963267948966 rad pos: -12.5,-72.5 parent: 100 + - uid: 21201 + components: + - type: Transform + pos: -17.5,-72.5 + parent: 100 - proto: ReinforcedPlasmaWindow entities: - uid: 33 @@ -105758,6 +106789,13 @@ entities: rot: -1.5707963267948966 rad pos: -56.5,-19.5 parent: 100 +- proto: SalvageMaterialCrateSpawner + entities: + - uid: 21060 + components: + - type: Transform + pos: -51.5,-30.5 + parent: 100 - proto: Saw entities: - uid: 16588 @@ -106110,6 +107148,59 @@ entities: parent: 100 - type: Stack count: 3 +- proto: ShelfBar + entities: + - uid: 21220 + components: + - type: Transform + pos: -5.5,8.5 + parent: 100 +- proto: ShelfChemistryChemistrySecure + entities: + - uid: 21219 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,35.5 + parent: 100 +- proto: ShelfKitchen + entities: + - uid: 21221 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.5,28.5 + parent: 100 +- proto: ShelfMetal + entities: + - uid: 21215 + components: + - type: Transform + pos: -39.5,-9.5 + parent: 100 + - uid: 21216 + components: + - type: Transform + pos: -31.5,-9.5 + parent: 100 +- proto: ShelfRGlass + entities: + - uid: 18919 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,43.5 + parent: 100 + - type: AccessReader + access: + - - Corpsman +- proto: ShelfWood + entities: + - uid: 21217 + components: + - type: Transform + pos: 10.5,29.5 + parent: 100 - proto: ShotgunSafeSpawner entities: - uid: 10049 @@ -106496,6 +107587,14 @@ entities: - type: Transform pos: -58.5,76.5 parent: 100 +- proto: SignAiUpload + entities: + - uid: 21208 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -63.5,78.5 + parent: 100 - proto: SignalButton entities: - uid: 338 @@ -107322,15 +108421,15 @@ entities: parent: 100 - proto: SignEVA entities: - - uid: 2346 + - uid: 17614 components: - type: Transform - pos: 19.5,14.5 + pos: 19.5,13.5 parent: 100 - - uid: 2349 + - uid: 17620 components: - type: Transform - pos: 19.5,13.5 + pos: 19.5,14.5 parent: 100 - proto: SignGravity entities: @@ -109032,6 +110131,13 @@ entities: - type: Transform pos: -1.5,10.5 parent: 100 +- proto: SpawnMobMouse + entities: + - uid: 21167 + components: + - type: Transform + pos: -19.5,57.5 + parent: 100 - proto: SpawnMobPossumMorty entities: - uid: 13511 @@ -110118,6 +111224,13 @@ entities: - type: Transform pos: -7.5,46.5 parent: 100 +- proto: StationAiUploadComputer + entities: + - uid: 21209 + components: + - type: Transform + pos: -63.5,77.5 + parent: 100 - proto: StationMap entities: - uid: 15066 @@ -114070,6 +115183,12 @@ entities: rot: -1.5707963267948966 rad pos: 30.5,24.5 parent: 100 + - uid: 21124 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,52.5 + parent: 100 - proto: TableWoodReinforced entities: - uid: 136 @@ -114934,6 +116053,29 @@ entities: - Left: Forward - Right: Reverse - Middle: Off + - uid: 21214 + components: + - type: Transform + pos: -53.5,-17.5 + parent: 100 + - type: DeviceLinkSource + linkedPorts: + 21211: + - Left: Forward + - Right: Reverse + - Middle: Off + 21213: + - Left: Forward + - Right: Reverse + - Middle: Off + 21212: + - Left: Forward + - Right: Reverse + - Middle: Off + 21210: + - Left: Forward + - Right: Reverse + - Middle: Off - proto: UnfinishedMachineFrame entities: - uid: 1353 @@ -119081,16 +120223,6 @@ entities: - type: Transform pos: -17.5,63.5 parent: 100 - - uid: 4016 - components: - - type: Transform - pos: -7.5,57.5 - parent: 100 - - uid: 4017 - components: - - type: Transform - pos: -7.5,58.5 - parent: 100 - uid: 4018 components: - type: Transform @@ -123282,11 +124414,6 @@ entities: - type: Transform pos: 35.5,50.5 parent: 100 - - uid: 17620 - components: - - type: Transform - pos: 35.5,51.5 - parent: 100 - uid: 17621 components: - type: Transform @@ -123705,6 +124832,11 @@ entities: - type: Transform pos: 31.5,25.5 parent: 100 + - uid: 18854 + components: + - type: Transform + pos: -7.5,58.5 + parent: 100 - uid: 18873 components: - type: Transform @@ -124633,6 +125765,36 @@ entities: - type: Transform pos: 8.5,21.5 parent: 100 + - uid: 21093 + components: + - type: Transform + pos: 38.5,54.5 + parent: 100 + - uid: 21094 + components: + - type: Transform + pos: 39.5,54.5 + parent: 100 + - uid: 21095 + components: + - type: Transform + pos: 40.5,54.5 + parent: 100 + - uid: 21096 + components: + - type: Transform + pos: 41.5,53.5 + parent: 100 + - uid: 21097 + components: + - type: Transform + pos: 41.5,52.5 + parent: 100 + - uid: 21098 + components: + - type: Transform + pos: 41.5,51.5 + parent: 100 - proto: WallReinforcedDiagonal entities: - uid: 5573 @@ -124652,6 +125814,18 @@ entities: rot: -1.5707963267948966 rad pos: -13.5,-7.5 parent: 100 + - uid: 21099 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,54.5 + parent: 100 + - uid: 21100 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 40.5,53.5 + parent: 100 - proto: WallShuttle entities: - uid: 2446 @@ -130422,6 +131596,13 @@ entities: - type: Transform pos: -9.5,-53.5 parent: 100 + - uid: 21126 + components: + - type: MetaData + desc: WARNING! Nitrogen-only atmosphere inside. + - type: Transform + pos: 35.5,52.5 + parent: 100 - proto: WarningO2 entities: - uid: 13248 @@ -130599,10 +131780,10 @@ entities: - type: Transform pos: -50.5,13.5 parent: 100 - - uid: 17638 + - uid: 18918 components: - type: Transform - pos: 34.5,51.5 + pos: 33.5,49.5 parent: 100 - proto: WaterTankHighCapacity entities: @@ -130662,20 +131843,20 @@ entities: parent: 100 - proto: WeaponDisabler entities: - - uid: 2212 + - uid: 18935 components: - type: Transform - pos: 16.60844,45.502533 + pos: 16.523514,45.545307 parent: 100 - - uid: 2214 + - uid: 19413 components: - type: Transform - pos: 16.38969,45.768158 + pos: 16.711014,45.342182 parent: 100 - - uid: 12434 + - uid: 21218 components: - type: Transform - pos: 16.624065,45.690033 + pos: 16.289139,45.748432 parent: 100 - proto: WeaponDisablerPractice entities: @@ -131030,6 +132211,30 @@ entities: - type: Transform pos: -32.5,-27.5 parent: 100 + - uid: 21101 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,51.5 + parent: 100 + - type: DeviceLinkSink + invokeCounter: 2 + - type: DeviceLinkSource + linkedPorts: + 21123: + - DoorStatus: InputA + - uid: 21102 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,51.5 + parent: 100 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 21101: + - DoorStatus: DoorBolt - proto: WindoorSecureArmoryLocked entities: - uid: 12439 diff --git a/Resources/Maps/micro.yml b/Resources/Maps/micro.yml index 581ccf46164..5e93e3b9fce 100644 --- a/Resources/Maps/micro.yml +++ b/Resources/Maps/micro.yml @@ -74,11 +74,11 @@ entities: chunks: 0,0: ind: 0,0 - tiles: FAAAAAAAFAAAAAAADAAAAAADBAAAAAAABgAAAAAABgAAAAABBQAAAAAABgAAAAADDAAAAAACFQAAAAAAeQAAAAAAeQAAAAAAegAAAAAABgAAAAAABQAAAAAABQAAAAADFAAAAAAAFAAAAAAADAAAAAAAegAAAAAABQAAAAADBQAAAAADBgAAAAACBQAAAAAADAAAAAADFQAAAAAAeQAAAAAAAAAAAAAAFQAAAAAABQAAAAACBgAAAAADBQAAAAABDAAAAAABDAAAAAAADAAAAAADegAAAAAADAAAAAAADAAAAAACDAAAAAABDAAAAAADegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAFQAAAAAABQAAAAADBQAAAAACBgAAAAABBAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAABAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAeQAAAAAAegAAAAAAegAAAAAABAAAAAAABAAAAAAAegAAAAAABgAAAAABDAAAAAAAFQAAAAAADAAAAAADBgAAAAABDAAAAAADBgAAAAAADAAAAAACegAAAAAAeQAAAAAAeQAAAAAAFQAAAAAABQAAAAABBQAAAAACBQAAAAACegAAAAAABQAAAAABDAAAAAACFQAAAAAADAAAAAABBgAAAAABDAAAAAAABgAAAAACDAAAAAABegAAAAAAeQAAAAAAAAAAAAAAFQAAAAAABgAAAAAABQAAAAACBQAAAAAAegAAAAAABgAAAAADDAAAAAAAegAAAAAADAAAAAACDAAAAAADDAAAAAAADAAAAAABegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAegAAAAAABgAAAAACBQAAAAADegAAAAAAegAAAAAABAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAFQAAAAAABQAAAAADBQAAAAAAAwAAAAAAegAAAAAABQAAAAABBQAAAAAAegAAAAAABAAAAAAABAAAAAAABAAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAFQAAAAAABQAAAAACBQAAAAADegAAAAAAAQAAAAAABgAAAAACBQAAAAAABwAAAAAAegAAAAAAegAAAAAAegAAAAAABwAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAABgAAAAAABQAAAAAAegAAAAAAegAAAAAABgAAAAABBQAAAAADegAAAAAAegAAAAAAAQAAAAABAQAAAAACegAAAAAAegAAAAAAFQAAAAAAFQAAAAAAegAAAAAABQAAAAACBgAAAAACBQAAAAABegAAAAAAegAAAAAABgAAAAADBQAAAAAABQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAegAAAAAABQAAAAABBQAAAAAABQAAAAABAwAAAAAAegAAAAAABQAAAAADBQAAAAABBQAAAAABBQAAAAAABQAAAAADBAAAAAAADAAAAAADDAAAAAADDAAAAAAADAAAAAACBAAAAAAABQAAAAADBQAAAAADBQAAAAACegAAAAAAegAAAAAABQAAAAABBQAAAAADBQAAAAACBQAAAAAABQAAAAABBAAAAAAADAAAAAACDAAAAAABDAAAAAAADAAAAAABBAAAAAAABQAAAAAABgAAAAAABQAAAAADegAAAAAAegAAAAAAegAAAAAAegAAAAAAAgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAABgAAAAACegAAAAAADAAAAAAAegAAAAAABQAAAAADBgAAAAABegAAAAAAegAAAAAAegAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAegAAAAAAegAAAAAABgAAAAAAegAAAAAADAAAAAAAFQAAAAAABQAAAAABBQAAAAABegAAAAAAegAAAAAAegAAAAAA + tiles: FAAAAAAAFAAAAAAADAAAAAADBAAAAAAABgAAAAAABgAAAAABBQAAAAAABgAAAAADDAAAAAACeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAABgAAAAAABQAAAAAABQAAAAADFAAAAAAAFAAAAAAADAAAAAAAegAAAAAABQAAAAADBQAAAAADBgAAAAACBQAAAAAADAAAAAADeQAAAAAAeQAAAAAAAAAAAAAAFQAAAAAABQAAAAACBgAAAAADBQAAAAABDAAAAAABDAAAAAAADAAAAAADegAAAAAADAAAAAAADAAAAAACDAAAAAABDAAAAAADegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAFQAAAAAABQAAAAADBQAAAAACBgAAAAABBAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAABAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAABwAAAAAAegAAAAAAegAAAAAABAAAAAAABAAAAAAAegAAAAAABgAAAAABDAAAAAAAFQAAAAAADAAAAAADBgAAAAABDAAAAAADBgAAAAAADAAAAAACegAAAAAAegAAAAAAegAAAAAAegAAAAAABQAAAAABBQAAAAACBQAAAAACegAAAAAABQAAAAABDAAAAAACFQAAAAAADAAAAAABBgAAAAABDAAAAAAABgAAAAACDAAAAAABegAAAAAAegAAAAAAegAAAAAAegAAAAAABgAAAAAABQAAAAACBQAAAAAAegAAAAAABgAAAAADDAAAAAAAegAAAAAADAAAAAACDAAAAAADDAAAAAAADAAAAAABDAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAABgAAAAACBQAAAAADegAAAAAAegAAAAAABAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAABwAAAAAAegAAAAAAegAAAAAABQAAAAADBQAAAAAAAwAAAAAAegAAAAAABQAAAAABBQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABAAAAAAABQAAAAAABQAAAAACBQAAAAADegAAAAAAAQAAAAAABgAAAAACBQAAAAAABgAAAAAABgAAAAAABQAAAAAABQAAAAAABgAAAAAABQAAAAAABgAAAAAABQAAAAAABAAAAAAABQAAAAAABgAAAAAABQAAAAAAegAAAAAAegAAAAAABgAAAAABBQAAAAADBgAAAAAABgAAAAAABQAAAAAAegAAAAAAegAAAAAAegAAAAAAFQAAAAAAFQAAAAAAegAAAAAABQAAAAACBgAAAAACBQAAAAABegAAAAAAegAAAAAABgAAAAADBQAAAAAABgAAAAAABgAAAAAABQAAAAAAegAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAegAAAAAABQAAAAABBQAAAAAABQAAAAABAwAAAAAAegAAAAAABQAAAAADBQAAAAABBQAAAAABBQAAAAAABQAAAAADBAAAAAAADAAAAAADDAAAAAADDAAAAAAADAAAAAACBAAAAAAABQAAAAADBQAAAAADBQAAAAACegAAAAAAegAAAAAABQAAAAABBQAAAAADBQAAAAACBQAAAAAABQAAAAABBAAAAAAADAAAAAACDAAAAAABDAAAAAAADAAAAAABBAAAAAAABQAAAAAABgAAAAAABQAAAAADegAAAAAAegAAAAAAegAAAAAAegAAAAAAAgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAABgAAAAACegAAAAAADAAAAAAAegAAAAAABQAAAAADBgAAAAABegAAAAAAegAAAAAAegAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAegAAAAAAegAAAAAABgAAAAAAegAAAAAADAAAAAAAFQAAAAAABQAAAAABBQAAAAABegAAAAAAegAAAAAAegAAAAAA version: 6 0,-1: ind: 0,-1 - tiles: DgAAAAABDgAAAAACEgAAAAAAEgAAAAABEgAAAAACEgAAAAADEgAAAAAADgAAAAABDgAAAAAADgAAAAAADgAAAAACFQAAAAAABQAAAAACBQAAAAACBQAAAAABegAAAAAAFgAAAAAAFgAAAAAAEgAAAAABEgAAAAADEgAAAAADEgAAAAABEgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAABAAAAAAABQAAAAADBgAAAAABBQAAAAACegAAAAAABAAAAAAAegAAAAAAEgAAAAACEgAAAAADEgAAAAACEgAAAAACEgAAAAACegAAAAAAegAAAAAABAAAAAAAegAAAAAAegAAAAAABQAAAAAABgAAAAACBQAAAAACFQAAAAAAFgAAAAAADgAAAAACDgAAAAAADgAAAAAADgAAAAAAFgAAAAAAegAAAAAAegAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAegAAAAAABQAAAAACBQAAAAACBQAAAAABFQAAAAAAFgAAAAAADgAAAAABDgAAAAADDgAAAAABDgAAAAADFgAAAAAAegAAAAAADgAAAAAADgAAAAABDgAAAAADFgAAAAAAegAAAAAAFQAAAAAABAAAAAAAFQAAAAAAegAAAAAADgAAAAABegAAAAAAFQAAAAAABAAAAAAABAAAAAAAFQAAAAAAegAAAAAADgAAAAADDgAAAAAADgAAAAADFgAAAAAAegAAAAAABQAAAAADBQAAAAABBQAAAAADegAAAAAAegAAAAAAegAAAAAABQAAAAABBQAAAAAABQAAAAAABQAAAAADegAAAAAAegAAAAAAFQAAAAAAFQAAAAAAegAAAAAAegAAAAAABQAAAAACBgAAAAADBQAAAAAABAAAAAAABQAAAAADBQAAAAACBQAAAAABBgAAAAABBQAAAAADBQAAAAADBQAAAAAABgAAAAACBQAAAAAABQAAAAACBQAAAAAAFQAAAAAABQAAAAABBgAAAAACBQAAAAACegAAAAAABQAAAAAABQAAAAACBQAAAAACBgAAAAADBQAAAAADBQAAAAADBQAAAAAABgAAAAADBQAAAAADBQAAAAACBQAAAAAABAAAAAAABQAAAAABBQAAAAAABQAAAAADFQAAAAAAFQAAAAAABAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAABQAAAAABBQAAAAACBQAAAAAAFQAAAAAABQAAAAADBQAAAAADBQAAAAAAFQAAAAAADAAAAAACBgAAAAAADAAAAAAAFQAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAegAAAAAAegAAAAAAFQAAAAAAFQAAAAAAegAAAAAABQAAAAADBgAAAAABBQAAAAADFQAAAAAADAAAAAAABgAAAAACDAAAAAABBAAAAAAADAAAAAADegAAAAAAegAAAAAAGgAAAAAAegAAAAAAeQAAAAAAAAAAAAAAFQAAAAAABQAAAAABBgAAAAACBQAAAAAAegAAAAAADAAAAAADDAAAAAAADAAAAAACegAAAAAAFQAAAAAAFQAAAAAADAAAAAABGgAAAAAAegAAAAAAeQAAAAAAeQAAAAAAFQAAAAAABQAAAAABBQAAAAACBQAAAAADegAAAAAAegAAAAAABAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAABAAAAAAAFQAAAAAAegAAAAAAAAAAAAAAeQAAAAAAegAAAAAAegAAAAAABAAAAAAABAAAAAAAegAAAAAAFAAAAAAADAAAAAADDAAAAAADegAAAAAADAAAAAAADAAAAAADDAAAAAADDAAAAAADegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAFQAAAAAABQAAAAAABQAAAAADBgAAAAABFAAAAAAAFAAAAAAADAAAAAACFQAAAAAABQAAAAABBQAAAAAABgAAAAABBQAAAAAADAAAAAAAFQAAAAAAeQAAAAAAAAAAAAAAFQAAAAAABQAAAAADBgAAAAACBQAAAAAB + tiles: DgAAAAABDgAAAAACEgAAAAAAEgAAAAABEgAAAAACEgAAAAADEgAAAAAADgAAAAABDgAAAAAADgAAAAAADgAAAAACFQAAAAAABQAAAAACBQAAAAACBQAAAAABegAAAAAAFgAAAAAAFgAAAAAAEgAAAAABEgAAAAADEgAAAAADEgAAAAABEgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAABAAAAAAABQAAAAADBgAAAAABBQAAAAACegAAAAAABAAAAAAAegAAAAAAEgAAAAACEgAAAAADEgAAAAACEgAAAAACEgAAAAACegAAAAAAegAAAAAABAAAAAAAegAAAAAAegAAAAAABQAAAAAABgAAAAACBQAAAAACFQAAAAAAFgAAAAAADgAAAAACDgAAAAAADgAAAAAADgAAAAAAFgAAAAAAegAAAAAAegAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAegAAAAAABQAAAAACBQAAAAACBQAAAAABFQAAAAAAFgAAAAAADgAAAAABDgAAAAADDgAAAAABDgAAAAADFgAAAAAAegAAAAAADgAAAAAADgAAAAABDgAAAAADFgAAAAAAegAAAAAAFQAAAAAABAAAAAAAFQAAAAAAegAAAAAADgAAAAABegAAAAAAFQAAAAAABAAAAAAABAAAAAAAFQAAAAAAegAAAAAADgAAAAADDgAAAAAADgAAAAADFgAAAAAAegAAAAAABQAAAAADBQAAAAABBQAAAAADegAAAAAAegAAAAAAegAAAAAABQAAAAABBQAAAAAABQAAAAAABQAAAAADegAAAAAAegAAAAAAFQAAAAAAFQAAAAAAegAAAAAAegAAAAAABQAAAAACBgAAAAADBQAAAAAABAAAAAAABQAAAAADBQAAAAACBQAAAAABBgAAAAABBQAAAAADBQAAAAADBQAAAAAABgAAAAACBQAAAAAABQAAAAACBQAAAAAAFQAAAAAABQAAAAABBgAAAAACBQAAAAACegAAAAAABQAAAAAABQAAAAACBQAAAAACBgAAAAADBQAAAAADBQAAAAADBQAAAAAABgAAAAADBQAAAAADBQAAAAACBQAAAAAABAAAAAAABQAAAAABBQAAAAAABQAAAAADFQAAAAAAFQAAAAAABAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAABQAAAAABBQAAAAACBQAAAAAAFQAAAAAABQAAAAADBQAAAAADBQAAAAAAFQAAAAAADAAAAAACBgAAAAAADAAAAAAAFQAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAegAAAAAAegAAAAAAFQAAAAAAFQAAAAAAegAAAAAABQAAAAADBgAAAAABBQAAAAADFQAAAAAADAAAAAAABgAAAAACDAAAAAABBAAAAAAADAAAAAADegAAAAAAegAAAAAAGgAAAAAAegAAAAAAeQAAAAAAAAAAAAAAFQAAAAAABQAAAAABBgAAAAACBQAAAAAAegAAAAAADAAAAAADDAAAAAAADAAAAAACegAAAAAAFQAAAAAAFQAAAAAADAAAAAABGgAAAAAAegAAAAAAeQAAAAAAeQAAAAAAFQAAAAAABQAAAAABBQAAAAACBQAAAAADegAAAAAAegAAAAAABAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAABAAAAAAAFQAAAAAAegAAAAAAAAAAAAAAeQAAAAAAegAAAAAAegAAAAAABAAAAAAABAAAAAAAegAAAAAAFAAAAAAADAAAAAADDAAAAAADegAAAAAADAAAAAAADAAAAAADDAAAAAADDAAAAAADegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAFQAAAAAABQAAAAAABQAAAAADBgAAAAABFAAAAAAAFAAAAAAADAAAAAACFQAAAAAABQAAAAABBQAAAAAABgAAAAABBQAAAAAADAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAFQAAAAAABQAAAAADBgAAAAACBQAAAAAB version: 6 -1,0: ind: -1,0 @@ -170,15 +170,15 @@ entities: version: 6 -3,0: ind: -3,0 - tiles: AAAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAFQAAAAAABAAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAegAAAAAAegAAAAAAKAAAAAADKAAAAAAAKAAAAAADKAAAAAABAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAABwAAAAAAegAAAAAABAAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAegAAAAAAegAAAAAAKAAAAAAAKAAAAAADKAAAAAABKAAAAAADAAAAAAAAAAAAAAAAeQAAAAAAFQAAAAAAFQAAAAAAegAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAegAAAAAAKAAAAAABKAAAAAADJwAAAAACJwAAAAACAAAAAAAAAAAAAAAAegAAAAAAegAAAAAABwAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAJwAAAAABJwAAAAAAJwAAAAAAegAAAAAAAAAAAAAAeQAAAAAAFQAAAAAAAQAAAAADegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAwAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAeQAAAAAAFQAAAAAAAQAAAAABegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAwAAAAAAegAAAAAACAAAAAADAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAAQAAAAACAQAAAAACegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAACAAAAAADCAAAAAAABgAAAAAABgAAAAABAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAACAAAAAAACAAAAAACCAAAAAADCAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAACAAAAAACBgAAAAADBgAAAAADBgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAACAAAAAAACAAAAAACCAAAAAAACAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAFQAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAACAAAAAADCAAAAAADAAAAAAAAAAAAAAAAFQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAACAAAAAADCAAAAAACAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAACAAAAAAACAAAAAADCAAAAAABCAAAAAAAegAAAAAAegAAAAAAegAAAAAAAwAAAAAACAAAAAABCAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAACAAAAAABCAAAAAAACAAAAAABCAAAAAADegAAAAAAegAAAAAAegAAAAAAegAAAAAACAAAAAACCAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAACAAAAAABCAAAAAAACAAAAAACCAAAAAADegAAAAAAegAAAAAAAwAAAAAAegAAAAAAegAAAAAACAAAAAAA + tiles: AAAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAABAAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAABAAAAAAAegAAAAAAKAAAAAADKAAAAAAAKAAAAAADKAAAAAABAAAAAAAAeQAAAAAAegAAAAAABwAAAAAAegAAAAAABAAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAABAAAAAAAegAAAAAAKAAAAAAAKAAAAAADKAAAAAABKAAAAAADAAAAAAAAeQAAAAAAegAAAAAAFQAAAAAAegAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAegAAAAAAKAAAAAABKAAAAAADJwAAAAACJwAAAAACAAAAAAAAAAAAAAAAegAAAAAABwAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAJwAAAAABJwAAAAAAJwAAAAAAegAAAAAAAAAAAAAAeQAAAAAAFQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAwAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAeQAAAAAAFQAAAAAAAQAAAAABegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAwAAAAAAegAAAAAACAAAAAADAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAAQAAAAACAQAAAAACegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAACAAAAAADCAAAAAAABgAAAAAABgAAAAABAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAACAAAAAAACAAAAAACCAAAAAADCAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAACAAAAAACBgAAAAADBgAAAAADBgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAACAAAAAAACAAAAAACCAAAAAAACAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAFQAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAACAAAAAADCAAAAAADAAAAAAAAAAAAAAAAFQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAACAAAAAADCAAAAAACAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAACAAAAAAACAAAAAADCAAAAAABCAAAAAAAegAAAAAAegAAAAAAegAAAAAAAwAAAAAACAAAAAABCAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAACAAAAAABCAAAAAAACAAAAAABCAAAAAADegAAAAAAegAAAAAAegAAAAAAegAAAAAACAAAAAACCAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAACAAAAAABCAAAAAAACAAAAAACCAAAAAADegAAAAAAegAAAAAAAwAAAAAAegAAAAAAegAAAAAACAAAAAAA version: 6 -3,-1: ind: -3,-1 - tiles: eQAAAAAAeQAAAAAAFQAAAAAAegAAAAAAegAAAAAAegAAAAAAAQAAAAAAAQAAAAAAFQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAFQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAFQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAFQAAAAAAegAAAAAAegAAAAAAAQAAAAACegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAQAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAFQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAADgAAAAABAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAFQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAADgAAAAADAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAFQAAAAAAegAAAAAAegAAAAAAegAAAAAAFQAAAAAADgAAAAABAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAFQAAAAAAegAAAAAAegAAAAAAegAAAAAAFQAAAAAADgAAAAACAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAFQAAAAAAegAAAAAAegAAAAAAAQAAAAAAegAAAAAADgAAAAADAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAFQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAABwAAAAAABwAAAAAAegAAAAAABwAAAAAAFQAAAAAAegAAAAAAFQAAAAAAFQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAABwAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAFQAAAAAAFQAAAAAAegAAAAAAFQAAAAAABAAAAAAAegAAAAAAAwAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAFQAAAAAABAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAKAAAAAADKAAAAAAAKAAAAAADKAAAAAAD + tiles: eQAAAAAAeQAAAAAAFQAAAAAAegAAAAAAegAAAAAAegAAAAAAAQAAAAAAAQAAAAAAFQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAFQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAFQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAFQAAAAAAegAAAAAAegAAAAAAAQAAAAACegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAQAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAFQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAADgAAAAABAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAFQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAADgAAAAADAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAFQAAAAAAegAAAAAAegAAAAAAegAAAAAAFQAAAAAADgAAAAABAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAFQAAAAAAegAAAAAAegAAAAAAegAAAAAAFQAAAAAADgAAAAACAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAFQAAAAAAegAAAAAAegAAAAAAAQAAAAAAegAAAAAADgAAAAADAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAFQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAABwAAAAAABwAAAAAAegAAAAAABwAAAAAAFQAAAAAAegAAAAAAFQAAAAAAFQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAABwAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAFQAAAAAAFQAAAAAAegAAAAAAFQAAAAAABAAAAAAAegAAAAAAAwAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAABAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAKAAAAAADKAAAAAAAKAAAAAADKAAAAAAD version: 6 2,1: ind: 2,1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAegAAAAAABwAAAAAAegAAAAAABwAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFQAAAAAAegAAAAAAFQAAAAAAegAAAAAAegAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFQAAAAAAegAAAAAAFQAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAFQAAAAAAFQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAABwAAAAAAegAAAAAABwAAAAAAegAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAGQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAGQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAegAAAAAAJQAAAAAAJQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAFQAAAAAAFQAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAFQAAAAAABwAAAAAAFQAAAAAAJQAAAAAAFQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAABwAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAFQAAAAAABwAAAAAAFQAAAAAAJQAAAAAAFQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAFQAAAAAAFQAAAAAABwAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAegAAAAAABwAAAAAAegAAAAAABwAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFQAAAAAAegAAAAAAFQAAAAAAegAAAAAAegAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFQAAAAAAegAAAAAAFQAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAFQAAAAAAFQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAABwAAAAAAegAAAAAABwAAAAAAegAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAGQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAegAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAGQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAegAAAAAAJQAAAAAAJQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAFQAAAAAAFQAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAFQAAAAAABwAAAAAAFQAAAAAAJQAAAAAAFQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAABwAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAFQAAAAAABwAAAAAAFQAAAAAAJQAAAAAAFQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAFQAAAAAAFQAAAAAABwAAAAAA version: 6 3,0: ind: 3,0 @@ -186,7 +186,7 @@ entities: version: 6 3,1: ind: 3,1 - tiles: egAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAABQAAAAACDQAAAAAABQAAAAACBQAAAAACBQAAAAACegAAAAAAAgAAAAAAAgAAAAAAegAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAABQAAAAADBQAAAAABBQAAAAADBQAAAAACegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAFQAAAAAAFQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAGQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAGQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAGQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAGQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJQAAAAAAJQAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAegAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJQAAAAAAFQAAAAAAFQAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJQAAAAAAJgAAAAAAJgAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJQAAAAAAFQAAAAAAFQAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAegAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: egAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAABQAAAAACDQAAAAAABQAAAAACBQAAAAACBQAAAAACegAAAAAAAgAAAAAAAgAAAAAAegAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAABQAAAAADBQAAAAABBQAAAAADBQAAAAACegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAFQAAAAAAFQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAGQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAGQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAGQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAGQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJQAAAAAAJQAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAegAAAAAAegAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJQAAAAAAFQAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJQAAAAAAJgAAAAAAJgAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJQAAAAAAFQAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAegAAAAAAegAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 3,-1: ind: 3,-1 @@ -218,11 +218,11 @@ entities: version: 6 2,2: ind: 2,2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAegAAAAAAJQAAAAAAJQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAJQAAAAAAJQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 3,2: ind: 3,2 - tiles: JQAAAAAAJQAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: JQAAAAAAJQAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 4,0: ind: 4,0 @@ -251,8 +251,8 @@ entities: - type: Broadphase - type: Physics bodyStatus: InAir - angularDamping: 10000 - linearDamping: 10000 + angularDamping: 0.05 + linearDamping: 0.05 fixedRotation: False bodyType: Dynamic - type: Fixtures @@ -260,8 +260,6 @@ entities: - type: OccluderTree - type: SpreaderGrid - type: Shuttle - angularDamping: 10000 - linearDamping: 10000 - type: GridPathfinding - type: Gravity gravityShakeSound: !type:SoundPathSpecifier @@ -355,6 +353,11 @@ entities: decals: 53: 45,0 54: 45,3 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkInnerNe + decals: + 812: 4,11 - node: color: '#FFFFFFFF' id: BrickTileDarkInnerNw @@ -894,7 +897,10 @@ entities: 494: 5,-2 495: 6,-2 496: 7,-2 - 591: 11,10 + 807: 3,8 + 808: 5,8 + 809: 7,8 + 810: 9,8 - node: color: '#52B4E996' id: HalfTileOverlayGreyscale180 @@ -1013,9 +1019,6 @@ entities: 585: 12,-5 588: 12,4 589: 12,7 - 590: 12,8 - 592: 11,15 - 593: 11,16 - node: color: '#52B4E996' id: HalfTileOverlayGreyscale270 @@ -1437,7 +1440,6 @@ entities: id: ThreeQuarterTileOverlayGreyscale180 decals: 454: 2,-2 - 594: 2,11 - node: color: '#52B4E996' id: ThreeQuarterTileOverlayGreyscale180 @@ -1616,6 +1618,7 @@ entities: 26: 8,11 27: 9,11 127: -20,37 + 806: 6,11 - node: color: '#FFFFFFFF' id: WoodTrimThinCornerNe @@ -1729,7 +1732,7 @@ entities: -1,1: 0: 40399 0,2: - 0: 29691 + 0: 65535 -1,2: 0: 65020 0,3: @@ -1743,10 +1746,9 @@ entities: 1,0: 0: 12287 1,1: - 0: 2047 + 0: 4095 1,2: - 0: 33651 - 2: 136 + 0: 53759 1,3: 0: 52479 1: 4096 @@ -1756,18 +1758,17 @@ entities: 1: 1 0: 63244 2,0: - 0: 17 - 2: 20044 - 2,1: - 2: 22054 + 0: 16401 + 2: 3694 2,2: - 2: 7 - 0: 47104 + 0: 47359 2,3: 0: 48127 2,-1: 0: 4096 - 2: 20038 + 2: 28230 + 2,1: + 0: 9830 2,4: 0: 63675 3,1: @@ -2642,8 +2643,6 @@ entities: 2: 50372 10,6: 2: 1092 - 10,8: - 2: 50292 11,5: 2: 55508 0: 8738 @@ -2654,7 +2653,7 @@ entities: 2: 4 11,8: 0: 6 - 2: 47616 + 2: 45056 12,4: 0: 8447 2: 32768 @@ -2719,15 +2718,15 @@ entities: 2: 4369 12,8: 0: 3 - 2: 57856 + 2: 57344 13,5: 2: 4607 13,6: - 2: 57105 + 2: 52753 13,7: - 2: 55528 + 2: 51432 13,8: - 2: 4383 + 2: 4366 14,5: 2: 191 15,5: @@ -2801,6 +2800,8 @@ entities: 2: 96 -6,12: 2: 192 + 10,8: + 2: 50224 11,9: 2: 14 12,9: @@ -2930,6 +2931,27 @@ entities: id: Micro - proto: AirAlarm entities: + - uid: 664 + components: + - type: Transform + pos: 5.5,10.5 + parent: 2 + - type: DeviceList + devices: + - 6480 + - 167 + - 9842 + - 9841 + - 5366 + - 6463 + - 9658 + - 9659 + - 9872 + - 6481 + - 5339 + - 12044 + - 76 + - 12404 - uid: 904 components: - type: Transform @@ -3006,20 +3028,6 @@ entities: - 9929 - 9928 - 9927 - - uid: 3684 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 44.5,31.5 - parent: 2 - - type: DeviceList - devices: - - 7047 - - 5813 - - 5812 - - 7041 - - 5814 - - 7040 - uid: 4131 components: - type: Transform @@ -3038,6 +3046,20 @@ entities: - 9884 - 9886 - 9887 + - uid: 4278 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 47.5,29.5 + parent: 2 + - type: DeviceList + devices: + - 7047 + - 5813 + - 5812 + - 7041 + - 5814 + - 7040 - uid: 4393 components: - type: Transform @@ -3149,26 +3171,6 @@ entities: - 6496 - 3935 - 818 - - uid: 9742 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,10.5 - parent: 2 - - type: DeviceList - devices: - - 6480 - - 5346 - - 9842 - - 9841 - - 5366 - - 6463 - - 9658 - - 9659 - - 9872 - - 6481 - - 5339 - - 12044 - uid: 9749 components: - type: Transform @@ -3310,6 +3312,8 @@ entities: - 9658 - 9657 - 9656 + - 76 + - 12404 - uid: 9767 components: - type: Transform @@ -4060,16 +4064,18 @@ entities: - type: Transform pos: 23.5,-18.5 parent: 2 - - uid: 4357 + - uid: 3586 components: - type: Transform pos: 44.5,28.5 parent: 2 - type: DeviceLinkSink - invokeCounter: 1 + invokeCounter: 2 - type: DeviceLinkSource linkedPorts: - 4354: + 3573: + - DoorStatus: DoorBolt + 3575: - DoorStatus: DoorBolt - uid: 4358 components: @@ -4106,6 +4112,21 @@ entities: - type: Transform pos: -0.5,7.5 parent: 2 +- proto: AirlockCommandLocked + entities: + - uid: 3573 + components: + - type: Transform + pos: 42.5,29.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 2 + - type: DeviceLinkSource + linkedPorts: + 3575: + - DoorStatus: DoorBolt + 3586: + - DoorStatus: DoorBolt - proto: AirlockDetectiveGlassLocked entities: - uid: 10162 @@ -4144,22 +4165,6 @@ entities: parent: 2 - proto: AirlockEngineeringGlassLocked entities: - - uid: 4355 - components: - - type: Transform - pos: 47.5,31.5 - parent: 2 - - uid: 4356 - components: - - type: Transform - pos: 44.5,30.5 - parent: 2 - - type: DeviceLinkSink - invokeCounter: 1 - - type: DeviceLinkSource - linkedPorts: - 4354: - - DoorStatus: DoorBolt - uid: 9988 components: - type: Transform @@ -4299,19 +4304,6 @@ entities: - type: Transform pos: 10.5,12.5 parent: 2 -- proto: AirlockExternalEngineeringLocked - entities: - - uid: 10212 - components: - - type: Transform - pos: 2.5,9.5 - parent: 2 - - type: DeviceLinkSink - invokeCounter: 1 - - type: DeviceLinkSource - linkedPorts: - 325: - - DoorStatus: DoorBolt - proto: AirlockExternalGlass entities: - uid: 10190 @@ -4338,16 +4330,16 @@ entities: parent: 2 - proto: AirlockExternalGlassEngineeringLocked entities: - - uid: 325 + - uid: 772 components: - type: Transform - pos: 6.5,9.5 + pos: 9.5,7.5 parent: 2 - type: DeviceLinkSink invokeCounter: 1 - type: DeviceLinkSource linkedPorts: - 10212: + 11823: - DoorStatus: DoorBolt - uid: 9997 components: @@ -4393,6 +4385,17 @@ entities: linkedPorts: 9999: - DoorStatus: DoorBolt + - uid: 11823 + components: + - type: Transform + pos: 10.5,3.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 772: + - DoorStatus: DoorBolt - uid: 12158 components: - type: Transform @@ -4461,29 +4464,27 @@ entities: linkedPorts: 3528: - DoorStatus: DoorBolt - - uid: 4354 + - uid: 4994 components: - type: Transform - pos: 42.5,29.5 + pos: -44.5,3.5 parent: 2 - type: DeviceLinkSink - invokeCounter: 2 + invokeCounter: 1 - type: DeviceLinkSource linkedPorts: - 4356: - - DoorStatus: DoorBolt - 4357: + 10638: - DoorStatus: DoorBolt - - uid: 10192 + - uid: 10638 components: - type: Transform - pos: -43.5,1.5 + pos: -44.5,1.5 parent: 2 - type: DeviceLinkSink invokeCounter: 1 - type: DeviceLinkSource linkedPorts: - 10193: + 4994: - DoorStatus: DoorBolt - proto: AirlockExternalGlassSalvageLocked entities: @@ -4601,19 +4602,6 @@ entities: rot: 1.5707963267948966 rad pos: 8.5,40.5 parent: 2 -- proto: AirlockExternalLocked - entities: - - uid: 10193 - components: - - type: Transform - pos: -43.5,3.5 - parent: 2 - - type: DeviceLinkSink - invokeCounter: 1 - - type: DeviceLinkSource - linkedPorts: - 10192: - - DoorStatus: DoorBolt - proto: AirlockFreezerServiceLocked entities: - uid: 914 @@ -4633,11 +4621,21 @@ entities: parent: 2 - proto: AirlockGlass entities: + - uid: 57 + components: + - type: Transform + pos: 11.5,17.5 + parent: 2 - uid: 361 components: - type: Transform pos: -2.5,11.5 parent: 2 + - uid: 8818 + components: + - type: Transform + pos: 10.5,9.5 + parent: 2 - uid: 10004 components: - type: Transform @@ -4738,11 +4736,6 @@ entities: - type: Transform pos: 12.5,17.5 parent: 2 - - uid: 10024 - components: - - type: Transform - pos: 11.5,17.5 - parent: 2 - uid: 10025 components: - type: Transform @@ -4843,6 +4836,11 @@ entities: - type: Transform pos: 9.5,19.5 parent: 2 + - uid: 10325 + components: + - type: Transform + pos: 10.5,8.5 + parent: 2 - proto: AirlockHeadOfPersonnelLocked entities: - uid: 10209 @@ -5518,6 +5516,24 @@ entities: parent: 2 - proto: AirlockResearchDirectorGlassLocked entities: + - uid: 3575 + components: + - type: Transform + pos: 44.5,30.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 2 + - type: DeviceLinkSource + linkedPorts: + 3573: + - DoorStatus: DoorBolt + 3586: + - DoorStatus: DoorBolt + - uid: 3585 + components: + - type: Transform + pos: 47.5,31.5 + parent: 2 - uid: 10207 components: - type: Transform @@ -6245,6 +6261,13 @@ entities: - type: Transform pos: 7.656033,-4.5932565 parent: 2 +- proto: AsimovCircuitBoard + entities: + - uid: 12366 + components: + - type: Transform + pos: 46.32533,32.557377 + parent: 2 - proto: AtmosDeviceFanDirectional entities: - uid: 707 @@ -7145,6 +7168,13 @@ entities: - type: Transform pos: 17.316841,-5.148589 parent: 2 +- proto: BoxEnvelope + entities: + - uid: 12414 + components: + - type: Transform + pos: 29.981363,10.8358755 + parent: 2 - proto: BoxFlare entities: - uid: 2200 @@ -7390,6 +7420,66 @@ entities: parent: 2 - proto: CableApcExtension entities: + - uid: 62 + components: + - type: Transform + pos: 9.5,9.5 + parent: 2 + - uid: 63 + components: + - type: Transform + pos: 10.5,9.5 + parent: 2 + - uid: 64 + components: + - type: Transform + pos: 11.5,9.5 + parent: 2 + - uid: 65 + components: + - type: Transform + pos: 12.5,9.5 + parent: 2 + - uid: 66 + components: + - type: Transform + pos: 9.5,8.5 + parent: 2 + - uid: 74 + components: + - type: Transform + pos: 9.5,7.5 + parent: 2 + - uid: 75 + components: + - type: Transform + pos: 10.5,4.5 + parent: 2 + - uid: 86 + components: + - type: Transform + pos: 9.5,5.5 + parent: 2 + - uid: 88 + components: + - type: Transform + pos: 9.5,4.5 + parent: 2 + - uid: 89 + components: + - type: Transform + pos: 9.5,6.5 + parent: 2 + - uid: 113 + components: + - type: Transform + pos: 5.5,9.5 + parent: 2 + - uid: 141 + components: + - type: Transform + pos: 7.5,9.5 + parent: 2 - uid: 243 components: - type: Transform @@ -7415,11 +7505,21 @@ entities: - type: Transform pos: 52.5,-2.5 parent: 2 + - uid: 770 + components: + - type: Transform + pos: 6.5,9.5 + parent: 2 - uid: 2324 components: - type: Transform pos: 15.5,-4.5 parent: 2 + - uid: 2545 + components: + - type: Transform + pos: -40.5,-0.5 + parent: 2 - uid: 2646 components: - type: Transform @@ -7430,6 +7530,26 @@ entities: - type: Transform pos: 22.5,39.5 parent: 2 + - uid: 4133 + components: + - type: Transform + pos: -41.5,-0.5 + parent: 2 + - uid: 5009 + components: + - type: Transform + pos: -44.5,2.5 + parent: 2 + - uid: 5348 + components: + - type: Transform + pos: 8.5,9.5 + parent: 2 + - uid: 5350 + components: + - type: Transform + pos: 3.5,11.5 + parent: 2 - uid: 6538 components: - type: Transform @@ -14655,11 +14775,31 @@ entities: - type: Transform pos: -9.5,3.5 parent: 2 + - uid: 9289 + components: + - type: Transform + pos: 4.5,9.5 + parent: 2 + - uid: 9294 + components: + - type: Transform + pos: 3.5,10.5 + parent: 2 - uid: 9735 components: - type: Transform pos: 4.5,28.5 parent: 2 + - uid: 10193 + components: + - type: Transform + pos: -44.5,1.5 + parent: 2 + - uid: 10512 + components: + - type: Transform + pos: -44.5,3.5 + parent: 2 - uid: 10572 components: - type: Transform @@ -14755,26 +14895,6 @@ entities: - type: Transform pos: -43.5,4.5 parent: 2 - - uid: 10637 - components: - - type: Transform - pos: -43.5,3.5 - parent: 2 - - uid: 10638 - components: - - type: Transform - pos: -43.5,2.5 - parent: 2 - - uid: 10639 - components: - - type: Transform - pos: -43.5,1.5 - parent: 2 - - uid: 10640 - components: - - type: Transform - pos: -43.5,0.5 - parent: 2 - uid: 10641 components: - type: Transform @@ -14965,6 +15085,11 @@ entities: - type: Transform pos: -32.5,-19.5 parent: 2 + - uid: 10746 + components: + - type: Transform + pos: 3.5,9.5 + parent: 2 - uid: 10912 components: - type: Transform @@ -14985,6 +15110,11 @@ entities: - type: Transform pos: 13.5,6.5 parent: 2 + - uid: 11612 + components: + - type: Transform + pos: -44.5,4.5 + parent: 2 - uid: 11773 components: - type: Transform @@ -15219,6 +15349,11 @@ entities: - type: Transform pos: -40.5,-21.5 parent: 2 + - uid: 484 + components: + - type: Transform + pos: 9.5,6.5 + parent: 2 - uid: 549 components: - type: Transform @@ -15954,6 +16089,11 @@ entities: - type: Transform pos: -44.5,-19.5 parent: 2 + - uid: 4929 + components: + - type: Transform + pos: 9.5,4.5 + parent: 2 - uid: 5159 components: - type: Transform @@ -15964,6 +16104,11 @@ entities: - type: Transform pos: -32.5,-23.5 parent: 2 + - uid: 6178 + components: + - type: Transform + pos: 9.5,7.5 + parent: 2 - uid: 8281 components: - type: Transform @@ -17069,41 +17214,6 @@ entities: - type: Transform pos: 9.5,8.5 parent: 2 - - uid: 9289 - components: - - type: Transform - pos: 8.5,8.5 - parent: 2 - - uid: 9290 - components: - - type: Transform - pos: 7.5,8.5 - parent: 2 - - uid: 9291 - components: - - type: Transform - pos: 7.5,9.5 - parent: 2 - - uid: 9292 - components: - - type: Transform - pos: 6.5,9.5 - parent: 2 - - uid: 9293 - components: - - type: Transform - pos: 5.5,9.5 - parent: 2 - - uid: 9294 - components: - - type: Transform - pos: 4.5,9.5 - parent: 2 - - uid: 9295 - components: - - type: Transform - pos: 4.5,10.5 - parent: 2 - uid: 9296 components: - type: Transform @@ -18884,6 +18994,11 @@ entities: - type: Transform pos: -55.5,-14.5 parent: 2 + - uid: 11933 + components: + - type: Transform + pos: 9.5,5.5 + parent: 2 - uid: 12060 components: - type: Transform @@ -20901,11 +21016,6 @@ entities: - type: Transform pos: 38.5,-13.5 parent: 2 - - uid: 8818 - components: - - type: Transform - pos: 4.5,10.5 - parent: 2 - uid: 8819 components: - type: Transform @@ -22421,6 +22531,56 @@ entities: - type: Transform pos: -10.5,45.5 parent: 2 + - uid: 12394 + components: + - type: Transform + pos: 5.5,9.5 + parent: 2 + - uid: 12395 + components: + - type: Transform + pos: 7.5,9.5 + parent: 2 + - uid: 12396 + components: + - type: Transform + pos: 8.5,9.5 + parent: 2 + - uid: 12397 + components: + - type: Transform + pos: 9.5,9.5 + parent: 2 + - uid: 12398 + components: + - type: Transform + pos: 6.5,9.5 + parent: 2 + - uid: 12399 + components: + - type: Transform + pos: 9.5,8.5 + parent: 2 + - uid: 12400 + components: + - type: Transform + pos: 9.5,7.5 + parent: 2 + - uid: 12401 + components: + - type: Transform + pos: 9.5,6.5 + parent: 2 + - uid: 12402 + components: + - type: Transform + pos: 9.5,5.5 + parent: 2 + - uid: 12403 + components: + - type: Transform + pos: 9.5,4.5 + parent: 2 - proto: CableTerminal entities: - uid: 360 @@ -22814,6 +22974,11 @@ entities: parent: 2 - proto: CarpetSBlue entities: + - uid: 77 + components: + - type: Transform + pos: 4.5,6.5 + parent: 2 - uid: 886 components: - type: Transform @@ -22824,11 +22989,6 @@ entities: - type: Transform pos: 0.5,-18.5 parent: 2 - - uid: 1208 - components: - - type: Transform - pos: 4.5,6.5 - parent: 2 - uid: 3797 components: - type: Transform @@ -22866,6 +23026,21 @@ entities: parent: 2 - proto: Catwalk entities: + - uid: 40 + components: + - type: Transform + pos: 9.5,6.5 + parent: 2 + - uid: 41 + components: + - type: Transform + pos: 9.5,5.5 + parent: 2 + - uid: 259 + components: + - type: Transform + pos: 10.5,4.5 + parent: 2 - uid: 331 components: - type: Transform @@ -22898,21 +23073,6 @@ entities: - type: Transform pos: 40.5,-11.5 parent: 2 - - uid: 772 - components: - - type: Transform - pos: 4.5,9.5 - parent: 2 - - uid: 773 - components: - - type: Transform - pos: 3.5,9.5 - parent: 2 - - uid: 775 - components: - - type: Transform - pos: 5.5,9.5 - parent: 2 - uid: 806 components: - type: Transform @@ -23336,6 +23496,11 @@ entities: rot: 1.5707963267948966 rad pos: -48.5,-20.5 parent: 2 + - uid: 4223 + components: + - type: Transform + pos: -44.5,4.5 + parent: 2 - uid: 4298 components: - type: Transform @@ -25351,21 +25516,11 @@ entities: - type: Transform pos: -37.5,-0.5 parent: 2 - - uid: 4991 - components: - - type: Transform - pos: -37.5,0.5 - parent: 2 - uid: 4993 components: - type: Transform pos: -37.5,-2.5 parent: 2 - - uid: 4994 - components: - - type: Transform - pos: -37.5,1.5 - parent: 2 - uid: 4995 components: - type: Transform @@ -25431,11 +25586,6 @@ entities: - type: Transform pos: -44.5,0.5 parent: 2 - - uid: 5009 - components: - - type: Transform - pos: -43.5,0.5 - parent: 2 - uid: 5010 components: - type: Transform @@ -25626,6 +25776,11 @@ entities: - type: Transform pos: -12.5,50.5 parent: 2 + - uid: 5244 + components: + - type: Transform + pos: -41.5,-0.5 + parent: 2 - uid: 6115 components: - type: Transform @@ -25727,6 +25882,11 @@ entities: - type: Transform pos: 25.5,21.5 parent: 2 + - uid: 10371 + components: + - type: Transform + pos: -39.5,4.5 + parent: 2 - uid: 10627 components: - type: Transform @@ -25787,6 +25947,11 @@ entities: - type: Transform pos: 2.5,-23.5 parent: 2 + - uid: 11720 + components: + - type: Transform + pos: 10.5,5.5 + parent: 2 - uid: 11825 components: - type: Transform @@ -26156,12 +26321,6 @@ entities: rot: 3.141592653589793 rad pos: 15.730776,25.813417 parent: 2 - - uid: 771 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 4.3531265,8.715352 - parent: 2 - uid: 854 components: - type: Transform @@ -26550,6 +26709,12 @@ entities: rot: 1.5707963267948966 rad pos: -1.500061,-1.4212903 parent: 2 + - uid: 12368 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 45.791164,30.524715 + parent: 2 - proto: ChairOfficeLight entities: - uid: 2131 @@ -27474,10 +27639,10 @@ entities: - type: InsideEntityStorage - proto: ClothingUnderSocksCoder entities: - - uid: 4992 + - uid: 12416 components: - type: Transform - pos: -41.376274,2.2372346 + pos: -39.73264,0.043956757 parent: 2 - proto: ClothingUniformJumpskirtPrisoner entities: @@ -27595,14 +27760,6 @@ entities: rot: 1.5707963267948966 rad pos: -11.5,-21.5 parent: 2 -- proto: ComputerAlert - entities: - - uid: 3681 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 46.5,30.5 - parent: 2 - proto: ComputerAnalysisConsole entities: - uid: 2892 @@ -27614,14 +27771,6 @@ entities: linkedPorts: 2890: - ArtifactAnalyzerSender: ArtifactAnalyzerReceiver -- proto: ComputerBroken - entities: - - uid: 11612 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -44.5,4.5 - parent: 2 - proto: ComputerCargoBounty entities: - uid: 727 @@ -27794,13 +27943,6 @@ entities: - type: Transform pos: 23.5,25.5 parent: 2 -- proto: ComputerShuttleSalvage - entities: - - uid: 4278 - components: - - type: Transform - pos: 19.5,29.5 - parent: 2 - proto: ComputerSolarControl entities: - uid: 413 @@ -27966,6 +28108,13 @@ entities: rot: -1.5707963267948966 rad pos: 23.5,19.5 parent: 2 +- proto: CorporateCircuitBoard + entities: + - uid: 12365 + components: + - type: Transform + pos: 46.62741,32.692886 + parent: 2 - proto: CounterWoodFrame entities: - uid: 4146 @@ -28113,6 +28262,13 @@ entities: - type: Transform pos: -44.5,-21.5 parent: 2 +- proto: CrateEngineeringMiniJetpack + entities: + - uid: 11771 + components: + - type: Transform + pos: 7.5,11.5 + parent: 2 - proto: CrateEngineeringSingularityEmitter entities: - uid: 2794 @@ -32138,15 +32294,15 @@ entities: - type: Transform pos: -4.5,37.5 parent: 2 - - uid: 4634 + - uid: 5112 components: - type: Transform - pos: 6.5,6.5 + pos: -37.5,21.5 parent: 2 - - uid: 5112 + - uid: 9295 components: - type: Transform - pos: -37.5,21.5 + pos: 7.5,6.5 parent: 2 - uid: 11655 components: @@ -32160,15 +32316,15 @@ entities: parent: 2 - proto: DonkpocketBoxSpawner entities: - - uid: 1099 + - uid: 2293 components: - type: Transform - pos: -0.5,26.5 + pos: -31.5,5.5 parent: 2 - - uid: 2293 + - uid: 12374 components: - type: Transform - pos: -31.5,5.5 + pos: -1.5,25.5 parent: 2 - proto: DresserCaptainFilled entities: @@ -32667,6 +32823,17 @@ entities: parent: 2 - proto: EmergencyLight entities: + - uid: 773 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,8.5 + parent: 2 + - uid: 4992 + components: + - type: Transform + pos: -40.5,2.5 + parent: 2 - uid: 10524 components: - type: Transform @@ -32938,12 +33105,6 @@ entities: rot: 3.141592653589793 rad pos: -6.5,-12.5 parent: 2 - - uid: 11975 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -37.5,-0.5 - parent: 2 - uid: 11976 components: - type: Transform @@ -32979,12 +33140,6 @@ entities: rot: 3.141592653589793 rad pos: -15.5,34.5 parent: 2 - - uid: 11982 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,5.5 - parent: 2 - uid: 11983 components: - type: Transform @@ -33463,6 +33618,8 @@ entities: - 9659 - 9653 - 9652 + - 76 + - 12404 - uid: 11738 components: - type: Transform @@ -33833,7 +33990,7 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 9742 + - 664 - proto: FirelockEdge entities: - uid: 818 @@ -34017,6 +34174,16 @@ entities: - 9966 - proto: FirelockGlass entities: + - uid: 76 + components: + - type: Transform + pos: 10.5,9.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 664 + - 11737 + - 9766 - uid: 878 components: - type: Transform @@ -34309,7 +34476,7 @@ entities: - 9766 - 9767 - 11737 - - 9742 + - 664 - uid: 9659 components: - type: Transform @@ -34320,7 +34487,7 @@ entities: - 9766 - 9767 - 11737 - - 9742 + - 664 - uid: 9660 components: - type: Transform @@ -34716,7 +34883,7 @@ entities: deviceLists: - 9835 - 11732 - - 9742 + - 664 - uid: 9842 components: - type: Transform @@ -34726,7 +34893,7 @@ entities: deviceLists: - 9835 - 11732 - - 9742 + - 664 - uid: 9843 components: - type: Transform @@ -34834,7 +35001,7 @@ entities: - type: DeviceNetwork deviceLists: - 9870 - - 9742 + - 664 - uid: 9873 components: - type: Transform @@ -35062,6 +35229,16 @@ entities: - 9962 - 9966 - 11740 + - uid: 12404 + components: + - type: Transform + pos: 10.5,8.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 664 + - 11737 + - 9766 - proto: Fireplace entities: - uid: 3171 @@ -35663,6 +35840,14 @@ entities: parent: 2 - proto: GasPipeBend entities: + - uid: 142 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0066FF' - uid: 744 components: - type: Transform @@ -35912,22 +36097,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0066FF' - - uid: 5348 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,10.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0066FF' - - uid: 5350 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,12.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0066FF' - uid: 5358 components: - type: Transform @@ -37349,6 +37518,21 @@ entities: color: '#6666FFFF' - proto: GasPipeStraight entities: + - uid: 195 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0066FF' + - uid: 253 + components: + - type: Transform + pos: 0.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0066FF' - uid: 740 components: - type: Transform @@ -38287,13 +38471,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0066FF' - - uid: 5355 - components: - - type: Transform - pos: 1.5,11.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0066FF' - uid: 5356 components: - type: Transform @@ -50365,7 +50542,7 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 9742 + - 664 - type: AtmosPipeColor color: '#6666FFFF' - uid: 6464 @@ -50388,7 +50565,7 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 9742 + - 664 - type: AtmosPipeColor color: '#6666FFFF' - uid: 6481 @@ -50399,7 +50576,7 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 9742 + - 664 - type: AtmosPipeColor color: '#6666FFFF' - uid: 6482 @@ -51040,7 +51217,7 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 3684 + - 4278 - type: AtmosPipeColor color: '#6666FFFF' - uid: 7041 @@ -51051,7 +51228,7 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 3684 + - 4278 - type: AtmosPipeColor color: '#6666FFFF' - uid: 7047 @@ -51062,7 +51239,7 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 3684 + - 4278 - type: AtmosPipeColor color: '#6666FFFF' - uid: 7068 @@ -51209,6 +51386,17 @@ entities: color: '#6666FFFF' - proto: GasVentScrubber entities: + - uid: 167 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,10.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 664 + - type: AtmosPipeColor + color: '#FF0066FF' - uid: 838 components: - type: Transform @@ -51414,17 +51602,7 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 9742 - - type: AtmosPipeColor - color: '#FF0066FF' - - uid: 5346 - components: - - type: Transform - pos: 0.5,11.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 9742 + - 664 - type: AtmosPipeColor color: '#FF0066FF' - uid: 5360 @@ -51441,7 +51619,7 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 9742 + - 664 - type: AtmosPipeColor color: '#FF0066FF' - uid: 5372 @@ -51952,7 +52130,7 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 3684 + - 4278 - type: AtmosPipeColor color: '#FF0066FF' - uid: 5813 @@ -51963,7 +52141,7 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 3684 + - 4278 - type: AtmosPipeColor color: '#FF0066FF' - uid: 5814 @@ -51974,7 +52152,7 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 3684 + - 4278 - type: AtmosPipeColor color: '#FF0066FF' - uid: 5831 @@ -52764,10 +52942,10 @@ entities: parent: 2 - proto: GravityGenerator entities: - - uid: 2159 + - uid: 10637 components: - type: Transform - pos: -39.5,1.5 + pos: -38.5,1.5 parent: 2 - proto: Grille entities: @@ -52781,24 +52959,6 @@ entities: - type: Transform pos: 7.5,-2.5 parent: 2 - - uid: 75 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,-0.5 - parent: 2 - - uid: 76 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,0.5 - parent: 2 - - uid: 77 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,1.5 - parent: 2 - uid: 80 components: - type: Transform @@ -52891,26 +53051,6 @@ entities: rot: -1.5707963267948966 rad pos: 15.5,-6.5 parent: 2 - - uid: 253 - components: - - type: Transform - pos: 11.5,7.5 - parent: 2 - - uid: 254 - components: - - type: Transform - pos: 11.5,8.5 - parent: 2 - - uid: 256 - components: - - type: Transform - pos: 11.5,5.5 - parent: 2 - - uid: 257 - components: - - type: Transform - pos: 11.5,4.5 - parent: 2 - uid: 261 components: - type: Transform @@ -53754,16 +53894,6 @@ entities: - type: Transform pos: -12.5,39.5 parent: 2 - - uid: 2540 - components: - - type: Transform - pos: -42.5,-0.5 - parent: 2 - - uid: 2545 - components: - - type: Transform - pos: -42.5,0.5 - parent: 2 - uid: 2580 components: - type: Transform @@ -54198,16 +54328,6 @@ entities: - type: Transform pos: -11.5,27.5 parent: 2 - - uid: 3585 - components: - - type: Transform - pos: 50.5,30.5 - parent: 2 - - uid: 3586 - components: - - type: Transform - pos: 50.5,28.5 - parent: 2 - uid: 3592 components: - type: Transform @@ -54599,11 +54719,6 @@ entities: - type: Transform pos: 25.5,15.5 parent: 2 - - uid: 4134 - components: - - type: Transform - pos: -44.5,2.5 - parent: 2 - uid: 4156 components: - type: Transform @@ -54760,6 +54875,26 @@ entities: - type: Transform pos: -21.5,40.5 parent: 2 + - uid: 9292 + components: + - type: Transform + pos: 7.5,10.5 + parent: 2 + - uid: 9293 + components: + - type: Transform + pos: 6.5,10.5 + parent: 2 + - uid: 9742 + components: + - type: Transform + pos: 8.5,5.5 + parent: 2 + - uid: 10024 + components: + - type: Transform + pos: 8.5,4.5 + parent: 2 - uid: 10291 components: - type: Transform @@ -54815,20 +54950,6 @@ entities: - type: Transform pos: 50.5,-15.5 parent: 2 -- proto: GrilleDiagonal - entities: - - uid: 66 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,2.5 - parent: 2 - - uid: 74 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,-1.5 - parent: 2 - proto: GrilleSpawner entities: - uid: 3625 @@ -55211,13 +55332,20 @@ entities: parent: 2 - type: Stack count: 10 +- proto: IntercomAll + entities: + - uid: 3681 + components: + - type: Transform + pos: 50.5,30.5 + parent: 2 - proto: IntercomCommand entities: - - uid: 6178 + - uid: 193 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,6.5 + rot: 1.5707963267948966 rad + pos: 44.5,31.5 parent: 2 - uid: 11667 components: @@ -55237,8 +55365,19 @@ entities: rot: 1.5707963267948966 rad pos: -2.5,-5.5 parent: 2 + - uid: 12393 + components: + - type: Transform + pos: 6.5,7.5 + parent: 2 - proto: IntercomCommon entities: + - uid: 4354 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 50.5,28.5 + parent: 2 - uid: 11859 components: - type: Transform @@ -55321,12 +55460,6 @@ entities: - type: Transform pos: 55.5,-1.5 parent: 2 - - uid: 11919 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 47.5,32.5 - parent: 2 - proto: IntercomMedical entities: - uid: 5122 @@ -55472,20 +55605,15 @@ entities: parent: 2 - proto: JetpackMiniFilled entities: - - uid: 7679 - components: - - type: Transform - pos: 16.393778,29.80808 - parent: 2 - - uid: 7680 + - uid: 2957 components: - type: Transform - pos: 16.581276,29.662146 + pos: 16.61046,29.484638 parent: 2 - - uid: 11771 + - uid: 7679 components: - type: Transform - pos: 16.393778,29.464092 + pos: 16.393778,29.80808 parent: 2 - proto: Jukebox entities: @@ -55503,10 +55631,10 @@ entities: parent: 2 - proto: KitchenDeepFryer entities: - - uid: 664 + - uid: 444 components: - type: Transform - pos: 1.5,26.5 + pos: 0.5,26.5 parent: 2 - proto: KitchenElectricGrill entities: @@ -55517,10 +55645,10 @@ entities: parent: 2 - proto: KitchenMicrowave entities: - - uid: 484 + - uid: 140 components: - type: Transform - pos: 0.5,26.5 + pos: -0.5,26.5 parent: 2 - uid: 2346 components: @@ -56558,13 +56686,6 @@ entities: - type: Transform pos: -9.307849,-10.559241 parent: 2 -- proto: MaterialReclaimer - entities: - - uid: 193 - components: - - type: Transform - pos: -9.5,0.5 - parent: 2 - proto: MaterialWoodPlank10 entities: - uid: 4181 @@ -56815,6 +56936,11 @@ entities: parent: 2 - proto: NitrogenCanister entities: + - uid: 128 + components: + - type: Transform + pos: 19.5,29.5 + parent: 2 - uid: 4375 components: - type: Transform @@ -56846,6 +56972,13 @@ entities: - type: Transform pos: 21.5,2.5 parent: 2 +- proto: NTDefaultCircuitBoard + entities: + - uid: 12367 + components: + - type: Transform + pos: 46.62741,32.390594 + parent: 2 - proto: NuclearBomb entities: - uid: 2539 @@ -57310,10 +57443,10 @@ entities: parent: 2 - proto: PortableGeneratorJrPacman entities: - - uid: 774 + - uid: 268 components: - type: Transform - pos: 5.5,10.5 + pos: 10.5,6.5 parent: 2 - uid: 10715 components: @@ -57612,6 +57745,12 @@ entities: parent: 2 - proto: Poweredlight entities: + - uid: 4232 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,-0.5 + parent: 2 - uid: 5113 components: - type: Transform @@ -57992,12 +58131,6 @@ entities: rot: -1.5707963267948966 rad pos: 12.5,19.5 parent: 2 - - uid: 10325 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,12.5 - parent: 2 - uid: 10326 components: - type: Transform @@ -58194,8 +58327,8 @@ entities: - uid: 10373 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -37.5,0.5 + rot: 1.5707963267948966 rad + pos: -42.5,-0.5 parent: 2 - uid: 10374 components: @@ -58208,6 +58341,7 @@ entities: - type: Transform pos: 46.5,32.5 parent: 2 + - type: Timer - uid: 10384 components: - type: Transform @@ -58220,6 +58354,7 @@ entities: rot: 1.5707963267948966 rad pos: 48.5,29.5 parent: 2 + - type: Timer - uid: 10388 components: - type: Transform @@ -58476,6 +58611,18 @@ entities: rot: 1.5707963267948966 rad pos: 45.5,-14.5 parent: 2 + - uid: 12405 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,14.5 + parent: 2 + - uid: 12406 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,8.5 + parent: 2 - proto: PoweredlightBlue entities: - uid: 10442 @@ -58486,6 +58633,12 @@ entities: parent: 2 - proto: PoweredLightBlueInterior entities: + - uid: 2163 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.5,-1.5 + parent: 2 - uid: 3170 components: - type: Transform @@ -58498,12 +58651,6 @@ entities: rot: 3.141592653589793 rad pos: -49.5,-16.5 parent: 2 - - uid: 10371 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -43.5,-1.5 - parent: 2 - uid: 10372 components: - type: Transform @@ -58597,6 +58744,12 @@ entities: rot: 1.5707963267948966 rad pos: 35.5,2.5 parent: 2 + - uid: 10212 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,5.5 + parent: 2 - uid: 10270 components: - type: Transform @@ -58675,12 +58828,6 @@ entities: - type: Transform pos: -13.5,51.5 parent: 2 - - uid: 10379 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,8.5 - parent: 2 - uid: 10380 components: - type: Transform @@ -58740,13 +58887,18 @@ entities: - type: Transform pos: 40.5,12.5 parent: 2 + - uid: 12408 + components: + - type: Transform + pos: 9.5,2.5 + parent: 2 - proto: PoweredSmallLightMaintenance entities: - - uid: 10512 + - uid: 10640 components: - type: Transform rot: -1.5707963267948966 rad - pos: -43.5,2.5 + pos: -44.5,2.5 parent: 2 - proto: PoweredSmallLightMaintenanceRed entities: @@ -59091,6 +59243,11 @@ entities: rot: 1.5707963267948966 rad pos: -42.5,10.5 parent: 2 + - uid: 12415 + components: + - type: Transform + pos: 24.5,-13.5 + parent: 2 - proto: Protolathe entities: - uid: 2869 @@ -59297,6 +59454,11 @@ entities: - type: Transform pos: 45.5,-3.5 parent: 2 + - uid: 3593 + components: + - type: Transform + pos: 46.5,32.5 + parent: 2 - uid: 3754 components: - type: Transform @@ -59392,6 +59554,16 @@ entities: - type: Transform pos: 45.5,-12.5 parent: 2 + - uid: 12361 + components: + - type: Transform + pos: 49.5,32.5 + parent: 2 + - uid: 12362 + components: + - type: Transform + pos: 48.5,32.5 + parent: 2 - proto: RadiationCollectorNoTank entities: - uid: 1633 @@ -59643,11 +59815,6 @@ entities: - type: Transform pos: 25.5,-5.5 parent: 2 - - uid: 11720 - components: - - type: Transform - pos: 29.5,-2.5 - parent: 2 - uid: 11816 components: - type: Transform @@ -59673,6 +59840,11 @@ entities: - type: Transform pos: -2.5,-10.5 parent: 2 + - uid: 12375 + components: + - type: Transform + pos: 28.5,-7.5 + parent: 2 - proto: RandomPosterAny entities: - uid: 1637 @@ -59804,6 +59976,11 @@ entities: parent: 2 - proto: RandomPosterLegit entities: + - uid: 325 + components: + - type: Transform + pos: -0.5,27.5 + parent: 2 - uid: 3947 components: - type: Transform @@ -59969,11 +60146,6 @@ entities: - type: Transform pos: 31.5,7.5 parent: 2 - - uid: 11713 - components: - - type: Transform - pos: 10.5,9.5 - parent: 2 - uid: 11721 components: - type: Transform @@ -60009,11 +60181,6 @@ entities: - type: Transform pos: -27.5,1.5 parent: 2 - - uid: 11823 - components: - - type: Transform - pos: 3.5,11.5 - parent: 2 - uid: 11824 components: - type: Transform @@ -60034,11 +60201,6 @@ entities: - type: Transform pos: 3.5,17.5 parent: 2 - - uid: 11933 - components: - - type: Transform - pos: 1.5,27.5 - parent: 2 - uid: 12176 components: - type: Transform @@ -60110,6 +60272,11 @@ entities: - type: Transform pos: 7.5,13.5 parent: 2 + - uid: 7680 + components: + - type: Transform + pos: 4.5,8.5 + parent: 2 - uid: 10635 components: - type: Transform @@ -60745,6 +60912,11 @@ entities: - type: Transform pos: -17.5,29.5 parent: 2 + - uid: 12413 + components: + - type: Transform + pos: 7.5,9.5 + parent: 2 - proto: RandomVending entities: - uid: 1354 @@ -60887,10 +61059,10 @@ entities: parent: 2 - proto: Recycler entities: - - uid: 128 + - uid: 5135 components: - type: Transform - rot: -1.5707963267948966 rad + rot: 1.5707963267948966 rad pos: -9.5,-1.5 parent: 2 - proto: ReinforcedGirder @@ -61072,20 +61244,20 @@ entities: - type: Transform pos: -39.5,-15.5 parent: 2 - - uid: 3436 + - uid: 3421 components: - type: Transform - pos: 44.5,-1.5 + pos: 8.5,4.5 parent: 2 - - uid: 3573 + - uid: 3436 components: - type: Transform - pos: 50.5,30.5 + pos: 44.5,-1.5 parent: 2 - - uid: 3575 + - uid: 3523 components: - type: Transform - pos: 50.5,28.5 + pos: 8.5,5.5 parent: 2 - uid: 3587 components: @@ -61104,21 +61276,6 @@ entities: - type: Transform pos: 17.5,-25.5 parent: 2 - - uid: 62 - components: - - type: Transform - pos: 9.5,1.5 - parent: 2 - - uid: 64 - components: - - type: Transform - pos: 9.5,-0.5 - parent: 2 - - uid: 65 - components: - - type: Transform - pos: 9.5,0.5 - parent: 2 - uid: 106 components: - type: Transform @@ -61174,26 +61331,6 @@ entities: - type: Transform pos: 9.5,-5.5 parent: 2 - - uid: 266 - components: - - type: Transform - pos: 11.5,8.5 - parent: 2 - - uid: 267 - components: - - type: Transform - pos: 11.5,7.5 - parent: 2 - - uid: 268 - components: - - type: Transform - pos: 11.5,5.5 - parent: 2 - - uid: 269 - components: - - type: Transform - pos: 11.5,4.5 - parent: 2 - uid: 270 components: - type: Transform @@ -61981,11 +62118,6 @@ entities: - type: Transform pos: -33.5,-8.5 parent: 2 - - uid: 4222 - components: - - type: Transform - pos: -44.5,2.5 - parent: 2 - uid: 4226 components: - type: Transform @@ -62171,16 +62303,6 @@ entities: - type: Transform pos: 50.5,-6.5 parent: 2 - - uid: 5244 - components: - - type: Transform - pos: -42.5,0.5 - parent: 2 - - uid: 5245 - components: - - type: Transform - pos: -42.5,-0.5 - parent: 2 - uid: 5250 components: - type: Transform @@ -62216,11 +62338,21 @@ entities: - type: Transform pos: -0.50000006,-9.5 parent: 2 + - uid: 10279 + components: + - type: Transform + pos: 7.5,10.5 + parent: 2 - uid: 11474 components: - type: Transform pos: 45.5,-13.5 parent: 2 + - uid: 11713 + components: + - type: Transform + pos: 6.5,10.5 + parent: 2 - uid: 12056 components: - type: Transform @@ -62251,20 +62383,6 @@ entities: - type: Transform pos: -41.5,-28.5 parent: 2 -- proto: ReinforcedWindowDiagonal - entities: - - uid: 63 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,-1.5 - parent: 2 - - uid: 195 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,2.5 - parent: 2 - proto: ResearchAndDevelopmentServer entities: - uid: 1018 @@ -62380,6 +62498,9 @@ entities: parent: 2 - type: RandomSpawner chance: 0.5 + prototypes: [] + rarePrototypes: [] + gameRules: [] - proto: SalvageMagnet entities: - uid: 12319 @@ -62596,6 +62717,11 @@ entities: - type: Transform pos: -41.509315,-11.416571 parent: 2 + - uid: 12363 + components: + - type: Transform + pos: 48.5,32.5 + parent: 2 - proto: SheetPlastic entities: - uid: 3438 @@ -62677,6 +62803,11 @@ entities: - type: Transform pos: 24.5,16.5 parent: 2 + - uid: 12364 + components: + - type: Transform + pos: 49.5,32.5 + parent: 2 - proto: SheetSteel10 entities: - uid: 2345 @@ -62714,6 +62845,163 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage +- proto: ShelfBar + entities: + - uid: 9290 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,-11.5 + parent: 2 +- proto: ShelfChemistry + entities: + - uid: 12376 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.5,-9.5 + parent: 2 +- proto: ShelfChemistryChemistrySecure + entities: + - uid: 12370 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -34.5,14.5 + parent: 2 +- proto: ShelfGlass + entities: + - uid: 771 + components: + - type: Transform + pos: 29.5,-2.5 + parent: 2 + - uid: 12372 + components: + - type: Transform + pos: -10.5,27.5 + parent: 2 + - uid: 12379 + components: + - type: Transform + pos: 43.5,-12.5 + parent: 2 + - uid: 12380 + components: + - type: Transform + pos: 26.5,-14.5 + parent: 2 + - uid: 12382 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,-13.5 + parent: 2 + - uid: 12386 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-12.5 + parent: 2 + - uid: 12387 + components: + - type: Transform + pos: 6.5,3.5 + parent: 2 + - uid: 12388 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,-9.5 + parent: 2 + - uid: 12390 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -42.5,30.5 + parent: 2 + - uid: 12391 + components: + - type: Transform + pos: -44.5,6.5 + parent: 2 +- proto: ShelfKitchen + entities: + - uid: 774 + components: + - type: Transform + pos: 1.5,27.5 + parent: 2 +- proto: ShelfMetal + entities: + - uid: 5251 + components: + - type: Transform + pos: 53.5,10.5 + parent: 2 + - uid: 12371 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,26.5 + parent: 2 + - uid: 12381 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,-18.5 + parent: 2 + - uid: 12383 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,1.5 + parent: 2 + - uid: 12384 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,-16.5 + parent: 2 + - uid: 12385 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,-7.5 + parent: 2 + - uid: 12389 + components: + - type: Transform + pos: -19.5,48.5 + parent: 2 +- proto: ShelfRGlass + entities: + - uid: 9291 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -42.5,15.5 + parent: 2 +- proto: ShelfRWood + entities: + - uid: 5346 + components: + - type: Transform + pos: 38.5,8.5 + parent: 2 +- proto: ShelfWood + entities: + - uid: 12373 + components: + - type: Transform + pos: -14.5,20.5 + parent: 2 + - uid: 12378 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 47.5,11.5 + parent: 2 - proto: ShuttersNormalOpen entities: - uid: 289 @@ -62922,6 +63210,13 @@ entities: - type: Transform pos: 35.5,16.5 parent: 2 +- proto: SignAiUpload + entities: + - uid: 12369 + components: + - type: Transform + pos: 47.5,32.5 + parent: 2 - proto: SignalButtonDirectional entities: - uid: 2257 @@ -63261,6 +63556,12 @@ entities: - type: Transform pos: 9.504337,32.71366 parent: 2 + - uid: 12411 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.495246,10.285914 + parent: 2 - proto: SignDirectionalChapel entities: - uid: 12230 @@ -63276,11 +63577,11 @@ entities: - type: Transform pos: -9.5,27.5 parent: 2 - - uid: 5135 + - uid: 12412 components: - type: Transform rot: -1.5707963267948966 rad - pos: -2.5,12.5 + pos: 10.496905,10.70287 parent: 2 - proto: SignDirectionalEng entities: @@ -63457,6 +63758,12 @@ entities: rot: 3.141592653589793 rad pos: -24.496181,-5.2914896 parent: 2 + - uid: 12410 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,10.5 + parent: 2 - proto: SignDirectionalSalvage entities: - uid: 4945 @@ -63581,16 +63888,6 @@ entities: parent: 2 - proto: SignElectricalMed entities: - - uid: 3421 - components: - - type: Transform - pos: 53.5,14.5 - parent: 2 - - uid: 3523 - components: - - type: Transform - pos: 53.5,10.5 - parent: 2 - uid: 3670 components: - type: Transform @@ -63601,6 +63898,11 @@ entities: - type: Transform pos: 52.5,18.5 parent: 2 + - uid: 12377 + components: + - type: Transform + pos: 53.5,12.5 + parent: 2 - proto: SignEngineering entities: - uid: 4237 @@ -63628,10 +63930,10 @@ entities: parent: 2 - proto: SignEVA entities: - - uid: 4232 + - uid: 2162 components: - type: Transform - pos: -44.5,3.5 + pos: -45.5,3.5 parent: 2 - uid: 4247 components: @@ -63858,11 +64160,10 @@ entities: parent: 2 - proto: SignSpace entities: - - uid: 10279 + - uid: 5355 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,8.5 + pos: 9.5,3.5 parent: 2 - proto: SignSurgery entities: @@ -64204,6 +64505,11 @@ entities: parent: 2 - proto: SpaceHeaterEnabled entities: + - uid: 16 + components: + - type: Transform + pos: 3.5,13.5 + parent: 2 - uid: 1902 components: - type: Transform @@ -64214,11 +64520,6 @@ entities: - type: Transform pos: 4.5,20.5 parent: 2 - - uid: 4929 - components: - - type: Transform - pos: 2.5,11.5 - parent: 2 - proto: SpaceVillainArcadeFilled entities: - uid: 1195 @@ -64299,10 +64600,10 @@ entities: parent: 2 - proto: SpawnMobFoxRenault entities: - - uid: 4637 + - uid: 288 components: - type: Transform - pos: 6.5,6.5 + pos: 7.5,6.5 parent: 2 - proto: SpawnMobMcGriff entities: @@ -64332,7 +64633,7 @@ entities: - type: Transform pos: -22.5,28.5 parent: 2 -- proto: SpawnMobShiva +- proto: SpawnMobSecLaikaOrShiva entities: - uid: 11654 components: @@ -64981,6 +65282,21 @@ entities: - type: Transform pos: 5.6832523,-5.6245766 parent: 2 +- proto: StationAiUploadComputer + entities: + - uid: 3676 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 46.5,30.5 + parent: 2 +- proto: StationAnchor + entities: + - uid: 4991 + components: + - type: Transform + pos: -41.5,1.5 + parent: 2 - proto: StationMap entities: - uid: 2299 @@ -65051,6 +65367,12 @@ entities: rot: 1.5707963267948966 rad pos: 35.5,15.5 parent: 2 + - uid: 12407 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,7.5 + parent: 2 - proto: SteelBench entities: - uid: 2224 @@ -65233,12 +65555,10 @@ entities: parent: 2 - proto: SubstationBasic entities: - - uid: 16 + - uid: 124 components: - - type: MetaData - name: substation (bridge) - type: Transform - pos: 4.5,10.5 + pos: 9.5,4.5 parent: 2 - uid: 572 components: @@ -65668,17 +65988,6 @@ entities: - SurveillanceCameraGeneral nameSet: True id: hall, bar and logistics - - uid: 10746 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,0.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: hall, square - uid: 10747 components: - type: Transform @@ -65957,12 +66266,12 @@ entities: id: front - proto: SurveillanceCameraRouterEngineering entities: - - uid: 2260 + - uid: 4222 components: - type: MetaData name: camera router (engineering) - type: Transform - pos: -37.5,2.5 + pos: -42.5,-0.5 parent: 2 - proto: SurveillanceCameraRouterGeneral entities: @@ -66418,11 +66727,6 @@ entities: - type: Transform pos: 6.5,2.5 parent: 2 - - uid: 288 - components: - - type: Transform - pos: 3.5,8.5 - parent: 2 - uid: 389 components: - type: Transform @@ -66719,11 +67023,6 @@ entities: - type: Transform pos: -0.5,26.5 parent: 2 - - uid: 444 - components: - - type: Transform - pos: 0.5,26.5 - parent: 2 - uid: 625 components: - type: Transform @@ -67519,10 +67818,8 @@ entities: parent: 2 - proto: TelecomServerFilledCommon entities: - - uid: 3676 + - uid: 4356 components: - - type: MetaData - name: telecommunication server - type: Transform pos: 45.5,26.5 parent: 2 @@ -67766,13 +68063,6 @@ entities: - type: Transform pos: -3.4695294,43.542442 parent: 2 -- proto: ToyAi - entities: - - uid: 3593 - components: - - type: Transform - pos: 50.5,29.5 - parent: 2 - proto: ToyFigurineDetective entities: - uid: 4597 @@ -67890,10 +68180,10 @@ entities: parent: 2 - proto: TrialTimer entities: - - uid: 5251 + - uid: 11982 components: - type: Transform - pos: 7.5,-17.5 + pos: 4.5,-18.5 parent: 2 - proto: TromboneInstrument entities: @@ -67923,7 +68213,7 @@ entities: - Left: Forward - Right: Reverse - Middle: Off - 128: + 5135: - Left: Forward - Right: Reverse - Middle: Off @@ -68287,10 +68577,10 @@ entities: - type: Transform pos: 23.5,28.5 parent: 2 - - uid: 2957 + - uid: 12409 components: - type: Transform - pos: 7.5,11.5 + pos: 6.5,11.5 parent: 2 - proto: VendingMachineTheater entities: @@ -68422,16 +68712,6 @@ entities: - type: Transform pos: 1.5,7.5 parent: 2 - - uid: 40 - components: - - type: Transform - pos: 7.5,10.5 - parent: 2 - - uid: 41 - components: - - type: Transform - pos: 6.5,10.5 - parent: 2 - uid: 44 components: - type: Transform @@ -68467,11 +68747,6 @@ entities: - type: Transform pos: -2.5,6.5 parent: 2 - - uid: 57 - components: - - type: Transform - pos: 6.5,11.5 - parent: 2 - uid: 58 components: - type: Transform @@ -68537,29 +68812,12 @@ entities: rot: 3.141592653589793 rad pos: 7.5,7.5 parent: 2 - - uid: 86 - components: - - type: Transform - pos: 7.5,6.5 - parent: 2 - uid: 87 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,6.5 parent: 2 - - uid: 88 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,5.5 - parent: 2 - - uid: 89 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,4.5 - parent: 2 - uid: 90 components: - type: Transform @@ -68621,11 +68879,6 @@ entities: - type: Transform pos: 3.5,-6.5 parent: 2 - - uid: 113 - components: - - type: Transform - pos: 6.5,8.5 - parent: 2 - uid: 119 components: - type: Transform @@ -68641,11 +68894,6 @@ entities: - type: Transform pos: -2.5,-6.5 parent: 2 - - uid: 124 - components: - - type: Transform - pos: 4.5,11.5 - parent: 2 - uid: 132 components: - type: Transform @@ -68656,31 +68904,11 @@ entities: - type: Transform pos: -2.5,-1.5 parent: 2 - - uid: 140 - components: - - type: Transform - pos: 2.5,10.5 - parent: 2 - - uid: 141 - components: - - type: Transform - pos: 3.5,10.5 - parent: 2 - - uid: 142 - components: - - type: Transform - pos: 2.5,8.5 - parent: 2 - uid: 145 components: - type: Transform pos: -2.5,-0.5 parent: 2 - - uid: 167 - components: - - type: Transform - pos: 3.5,11.5 - parent: 2 - uid: 198 components: - type: Transform @@ -68724,17 +68952,22 @@ entities: - uid: 258 components: - type: Transform - pos: 11.5,9.5 + pos: 11.5,7.5 parent: 2 - - uid: 259 + - uid: 260 components: - type: Transform - pos: 10.5,9.5 + pos: 10.5,10.5 parent: 2 - - uid: 260 + - uid: 266 components: - type: Transform - pos: 10.5,10.5 + pos: 11.5,5.5 + parent: 2 + - uid: 267 + components: + - type: Transform + pos: 9.5,3.5 parent: 2 - uid: 273 components: @@ -70173,20 +70406,15 @@ entities: - type: Transform pos: -7.5,-14.5 parent: 2 - - uid: 2162 - components: - - type: Transform - pos: -42.5,1.5 - parent: 2 - - uid: 2163 + - uid: 2159 components: - type: Transform - pos: -42.5,2.5 + pos: -43.5,1.5 parent: 2 - uid: 2164 components: - type: Transform - pos: -42.5,3.5 + pos: -43.5,3.5 parent: 2 - uid: 2165 components: @@ -70346,6 +70574,11 @@ entities: rot: -1.5707963267948966 rad pos: -29.5,17.5 parent: 2 + - uid: 2260 + components: + - type: Transform + pos: -43.5,2.5 + parent: 2 - uid: 2263 components: - type: Transform @@ -70496,6 +70729,11 @@ entities: - type: Transform pos: 3.5,47.5 parent: 2 + - uid: 2540 + components: + - type: Transform + pos: -43.5,0.5 + parent: 2 - uid: 2567 components: - type: Transform @@ -71949,6 +72187,11 @@ entities: - type: Transform pos: 51.5,32.5 parent: 2 + - uid: 3684 + components: + - type: Transform + pos: 50.5,28.5 + parent: 2 - uid: 3704 components: - type: Transform @@ -72109,10 +72352,10 @@ entities: - type: Transform pos: -45.5,3.5 parent: 2 - - uid: 4133 + - uid: 4134 components: - type: Transform - pos: -44.5,3.5 + pos: -43.5,-0.5 parent: 2 - uid: 4148 components: @@ -72159,11 +72402,6 @@ entities: - type: Transform pos: -27.5,38.5 parent: 2 - - uid: 4223 - components: - - type: Transform - pos: -44.5,1.5 - parent: 2 - uid: 4249 components: - type: Transform @@ -72269,6 +72507,16 @@ entities: - type: Transform pos: -21.5,-25.5 parent: 2 + - uid: 4355 + components: + - type: Transform + pos: 50.5,30.5 + parent: 2 + - uid: 4357 + components: + - type: Transform + pos: 11.5,4.5 + parent: 2 - uid: 4395 components: - type: Transform @@ -72314,6 +72562,11 @@ entities: - type: Transform pos: 42.5,-16.5 parent: 2 + - uid: 4634 + components: + - type: Transform + pos: 10.5,7.5 + parent: 2 - uid: 4651 components: - type: Transform @@ -72483,6 +72736,11 @@ entities: - type: Transform pos: -10.5,51.5 parent: 2 + - uid: 5245 + components: + - type: Transform + pos: -43.5,-1.5 + parent: 2 - uid: 5262 components: - type: Transform @@ -72563,11 +72821,36 @@ entities: - type: Transform pos: 44.5,-16.5 parent: 2 + - uid: 10192 + components: + - type: Transform + pos: -45.5,2.5 + parent: 2 + - uid: 10379 + components: + - type: Transform + pos: 5.5,10.5 + parent: 2 + - uid: 10639 + components: + - type: Transform + pos: -45.5,1.5 + parent: 2 - uid: 11578 components: - type: Transform pos: 45.5,-16.5 parent: 2 + - uid: 11919 + components: + - type: Transform + pos: 52.5,31.5 + parent: 2 + - uid: 11975 + components: + - type: Transform + pos: -42.5,3.5 + parent: 2 - uid: 12052 components: - type: Transform @@ -72583,6 +72866,96 @@ entities: - type: Transform pos: 51.5,-13.5 parent: 2 + - uid: 12344 + components: + - type: Transform + pos: 52.5,32.5 + parent: 2 + - uid: 12345 + components: + - type: Transform + pos: 52.5,33.5 + parent: 2 + - uid: 12346 + components: + - type: Transform + pos: 51.5,33.5 + parent: 2 + - uid: 12347 + components: + - type: Transform + pos: 51.5,34.5 + parent: 2 + - uid: 12348 + components: + - type: Transform + pos: 50.5,34.5 + parent: 2 + - uid: 12349 + components: + - type: Transform + pos: 49.5,34.5 + parent: 2 + - uid: 12350 + components: + - type: Transform + pos: 48.5,34.5 + parent: 2 + - uid: 12351 + components: + - type: Transform + pos: 47.5,34.5 + parent: 2 + - uid: 12352 + components: + - type: Transform + pos: 46.5,34.5 + parent: 2 + - uid: 12353 + components: + - type: Transform + pos: 45.5,34.5 + parent: 2 + - uid: 12354 + components: + - type: Transform + pos: 44.5,34.5 + parent: 2 + - uid: 12355 + components: + - type: Transform + pos: 43.5,34.5 + parent: 2 + - uid: 12356 + components: + - type: Transform + pos: 43.5,33.5 + parent: 2 + - uid: 12357 + components: + - type: Transform + pos: 42.5,33.5 + parent: 2 + - uid: 12358 + components: + - type: Transform + pos: 42.5,32.5 + parent: 2 + - uid: 12359 + components: + - type: Transform + pos: 52.5,26.5 + parent: 2 + - uid: 12360 + components: + - type: Transform + pos: 52.5,27.5 + parent: 2 + - uid: 12392 + components: + - type: Transform + pos: 8.5,7.5 + parent: 2 - proto: WallSolid entities: - uid: 4 @@ -76521,11 +76894,6 @@ entities: parent: 2 - proto: WeldingFuelTankFull entities: - - uid: 770 - components: - - type: Transform - pos: 5.5,8.5 - parent: 2 - uid: 1995 components: - type: Transform @@ -77234,6 +77602,30 @@ entities: parent: 2 - proto: WindowReinforcedDirectional entities: + - uid: 254 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-0.5 + parent: 2 + - uid: 256 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,0.5 + parent: 2 + - uid: 257 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,1.5 + parent: 2 + - uid: 269 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,1.5 + parent: 2 - uid: 557 components: - type: Transform @@ -77246,6 +77638,24 @@ entities: rot: -1.5707963267948966 rad pos: 26.5,8.5 parent: 2 + - uid: 775 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-1.5 + parent: 2 + - uid: 1099 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-0.5 + parent: 2 + - uid: 1208 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,2.5 + parent: 2 - uid: 1301 components: - type: Transform @@ -77279,6 +77689,12 @@ entities: rot: -1.5707963267948966 rad pos: 28.5,-18.5 parent: 2 + - uid: 4637 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,0.5 + parent: 2 - uid: 11253 components: - type: Transform diff --git a/Resources/Maps/shoukou.yml b/Resources/Maps/shoukou.yml index c48d4727224..ff49342223c 100644 --- a/Resources/Maps/shoukou.yml +++ b/Resources/Maps/shoukou.yml @@ -20,6 +20,7 @@ tilemap: 39: FloorDarkPavement 40: FloorDarkPavementVertical 41: FloorDarkPlastic + 9: FloorDirt 44: FloorEighties 47: FloorFreezer 48: FloorGlass @@ -60,14 +61,15 @@ tilemap: 111: FloorTechMaint3 113: FloorWhite 114: FloorWhiteDiagonal + 11: FloorWhiteOffset 122: FloorWhitePlastic 123: FloorWood 4: FloorWoodLarge 125: FloorWoodTile 126: Lattice 127: Plating - 9: PlatingBurnt - 8: PlatingDamaged + 8: PlatingBurnt + 10: PlatingDamaged entities: - proto: "" entities: @@ -85,11 +87,11 @@ entities: version: 6 -1,0: ind: -1,0 - tiles: XgAAAAABXgAAAAACXgAAAAAAXgAAAAABXgAAAAADXgAAAAAAXgAAAAAAXgAAAAACXgAAAAABXgAAAAACXgAAAAACXgAAAAACXgAAAAACaQAAAAAAMAAAAAAAaQAAAAAAUAAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAACXgAAAAABXgAAAAAAXgAAAAACTgAAAAABTgAAAAABTgAAAAAAfwAAAAAAIQAAAAACIQAAAAAAIQAAAAADagAAAAAAagAAAAAABAAAAAAABAAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAfwAAAAAATgAAAAAATgAAAAADTgAAAAAAfwAAAAAAIQAAAAABIQAAAAADIQAAAAAAagAAAAAAagAAAAAAewAAAAAAewAAAAAAfwAAAAAAewAAAAACewAAAAACewAAAAAAewAAAAACTgAAAAABTgAAAAABTgAAAAADfwAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAewAAAAAAewAAAAAAfwAAAAAAewAAAAADewAAAAADfQAAAAAAfQAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAABAAAAAAABAAAAAAAfwAAAAAAewAAAAACewAAAAADfQAAAAABfQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAewAAAAABewAAAAADfQAAAAACfQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfwAAAAAAewAAAAADFgAAAAAEFgAAAAAEFgAAAAABewAAAAADfwAAAAAAewAAAAABewAAAAACewAAAAAAewAAAAADfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAfwAAAAAAFgAAAAADewAAAAAAewAAAAADewAAAAAAFgAAAAAFfwAAAAAAewAAAAACewAAAAADewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAFgAAAAABewAAAAAAfwAAAAAAFgAAAAADewAAAAABfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAATwAAAAAAfwAAAAAATwAAAAABAAAAAAAAfwAAAAAAFgAAAAABewAAAAACewAAAAADFgAAAAAAewAAAAADfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAATwAAAAADfwAAAAAATwAAAAACAAAAAAAAfwAAAAAAewAAAAADFgAAAAAEewAAAAADewAAAAACFgAAAAAFbQAAAAAAbQAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAfgAAAAAATwAAAAABfwAAAAAATwAAAAACAAAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfgAAAAAATwAAAAAAfwAAAAAATwAAAAABAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAXgAAAAADTwAAAAACTgAAAAADTwAAAAAAXgAAAAABAAAAAAAATwAAAAABfwAAAAAATwAAAAACAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfwAAAAAATwAAAAACTwAAAAADTwAAAAAATwAAAAAATwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfwAAAAAAUAAAAAAAbQAAAAAAfwAAAAAAUAAAAAAAUAAAAAAA + tiles: XgAAAAABXgAAAAACXgAAAAAAXgAAAAABXgAAAAADXgAAAAAAXgAAAAAAXgAAAAACXgAAAAABXgAAAAACXgAAAAACXgAAAAACXgAAAAACaQAAAAAAMAAAAAAAaQAAAAAAUAAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAACXgAAAAABXgAAAAAAXgAAAAACTgAAAAABTgAAAAABTgAAAAAAfwAAAAAAIQAAAAACIQAAAAAAIQAAAAADagAAAAAAagAAAAAABAAAAAAABAAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAfwAAAAAATgAAAAAATgAAAAADTgAAAAAAfwAAAAAAIQAAAAABIQAAAAADIQAAAAAAagAAAAAAagAAAAAAewAAAAAAewAAAAAAfwAAAAAAewAAAAACewAAAAACewAAAAAAewAAAAACTgAAAAABTgAAAAABTgAAAAADfwAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAewAAAAAAewAAAAAAfwAAAAAAewAAAAADewAAAAADfQAAAAAAfQAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAABAAAAAAABAAAAAAAfwAAAAAAewAAAAACewAAAAADfQAAAAABfQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAewAAAAABewAAAAADfQAAAAACfQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfwAAAAAAewAAAAADFgAAAAAEFgAAAAAEFgAAAAABewAAAAADfwAAAAAAewAAAAABewAAAAACewAAAAAAewAAAAADfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAfwAAAAAAFgAAAAADewAAAAAAewAAAAADewAAAAAAFgAAAAAFfwAAAAAAewAAAAACewAAAAADewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAFgAAAAABewAAAAAAfwAAAAAAFgAAAAADewAAAAABfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAATwAAAAAAfwAAAAAATwAAAAABAAAAAAAAfwAAAAAAFgAAAAABewAAAAACewAAAAADFgAAAAAAewAAAAADfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAATwAAAAADfwAAAAAATwAAAAACAAAAAAAAfwAAAAAAewAAAAADFgAAAAAEewAAAAADewAAAAACFgAAAAAFbQAAAAAAbQAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAfgAAAAAATwAAAAABfwAAAAAATwAAAAACAAAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfgAAAAAATwAAAAAAfwAAAAAATwAAAAABAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAXgAAAAADTwAAAAACTgAAAAADTwAAAAAAXgAAAAABAAAAAAAATwAAAAABfwAAAAAATwAAAAACAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfwAAAAAATwAAAAACTwAAAAADTwAAAAAATwAAAAAATwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfwAAAAAAUAAAAAAAbQAAAAAAfwAAAAAAUAAAAAAAUAAAAAAA version: 6 0,0: ind: 0,0 - tiles: aQAAAAAAMAAAAAACaQAAAAAAaQAAAAAAMAAAAAACXgAAAAAAbQAAAAAAYwAAAAABYwAAAAABYwAAAAADYwAAAAABYwAAAAABYwAAAAADYwAAAAAAbAAAAAAAUAAAAAAAXgAAAAABXgAAAAAAXgAAAAABXgAAAAADXgAAAAAAXgAAAAAAUAAAAAAAawAAAAAAawAAAAACawAAAAABawAAAAADawAAAAACZgAAAAAAYwAAAAABbAAAAAACfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAAAXgAAAAACXgAAAAAAXgAAAAAAXgAAAAACbAAAAAADYwAAAAADbAAAAAABfwAAAAAAewAAAAACewAAAAADewAAAAABewAAAAACewAAAAADewAAAAADfwAAAAAAXgAAAAABXgAAAAACXgAAAAACXgAAAAAAXgAAAAABbAAAAAADYwAAAAAAbAAAAAADUAAAAAAAewAAAAACewAAAAAAewAAAAADewAAAAADewAAAAACewAAAAACfwAAAAAAUAAAAAAAUAAAAAAAbQAAAAAAUAAAAAAAfwAAAAAAbAAAAAABYwAAAAADbAAAAAADbQAAAAAAewAAAAACewAAAAABewAAAAAAewAAAAABewAAAAABewAAAAADfwAAAAAAewAAAAABewAAAAAAewAAAAAAewAAAAADfwAAAAAAbAAAAAACYwAAAAACbAAAAAADUAAAAAAAewAAAAADewAAAAAAewAAAAABewAAAAAAewAAAAADewAAAAADfwAAAAAAewAAAAADewAAAAABewAAAAABewAAAAADUAAAAAAAbAAAAAADYwAAAAAAbAAAAAABfwAAAAAAewAAAAADewAAAAABewAAAAADewAAAAABewAAAAAAewAAAAAAfwAAAAAAewAAAAADewAAAAADewAAAAADewAAAAACUAAAAAAAbAAAAAACYwAAAAADbAAAAAABfwAAAAAAewAAAAAAewAAAAACewAAAAACewAAAAABewAAAAACewAAAAADfwAAAAAAewAAAAACewAAAAAAewAAAAADewAAAAADUAAAAAAAbAAAAAADYwAAAAAAbAAAAAADbQAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbAAAAAAAYwAAAAAAbAAAAAADfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAbAAAAAAAYwAAAAACbAAAAAADfwAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAbAAAAAABYwAAAAADbAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAbQAAAAAAUAAAAAAAfwAAAAAATwAAAAAAXgAAAAADTwAAAAACfwAAAAAAXgAAAAADXgAAAAAAXgAAAAADXgAAAAADTgAAAAACXgAAAAACXgAAAAABXgAAAAACXgAAAAADXgAAAAABXgAAAAABfwAAAAAATwAAAAABTwAAAAAATwAAAAAAbQAAAAAAXgAAAAABXgAAAAADXgAAAAADXgAAAAACXgAAAAABXgAAAAACXgAAAAACXgAAAAAAXgAAAAAAXgAAAAADXgAAAAADUAAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAADIQAAAAAAIQAAAAABIQAAAAADIQAAAAABIQAAAAABIQAAAAAAIQAAAAACIQAAAAADIQAAAAAAXgAAAAADUAAAAAAA + tiles: aQAAAAAAMAAAAAACaQAAAAAAaQAAAAAAMAAAAAACXgAAAAAAbQAAAAAAYwAAAAABYwAAAAABYwAAAAADYwAAAAABYwAAAAABYwAAAAADYwAAAAAAbAAAAAAAUAAAAAAAXgAAAAABXgAAAAAAXgAAAAABXgAAAAADXgAAAAAAXgAAAAAAUAAAAAAAawAAAAAAawAAAAACawAAAAABawAAAAADawAAAAACZgAAAAAAYwAAAAABbAAAAAACfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAAAXgAAAAACXgAAAAAAXgAAAAAAXgAAAAACbAAAAAADYwAAAAADbAAAAAABfwAAAAAAewAAAAACewAAAAADewAAAAABewAAAAACewAAAAADewAAAAADfwAAAAAAXgAAAAABXgAAAAACXgAAAAACXgAAAAAAXgAAAAABbAAAAAADYwAAAAAAbAAAAAADUAAAAAAAewAAAAACewAAAAAAewAAAAADewAAAAADewAAAAACewAAAAACfwAAAAAAUAAAAAAAUAAAAAAAbQAAAAAAUAAAAAAAfwAAAAAAbAAAAAABYwAAAAADbAAAAAADbQAAAAAAewAAAAACewAAAAABewAAAAAAewAAAAABewAAAAABewAAAAADfwAAAAAAewAAAAABewAAAAAAewAAAAAAewAAAAADfwAAAAAAbAAAAAACYwAAAAACbAAAAAADUAAAAAAAewAAAAADewAAAAAAewAAAAABewAAAAAAewAAAAADewAAAAADfwAAAAAAewAAAAADewAAAAABewAAAAABewAAAAADUAAAAAAAbAAAAAADYwAAAAAAbAAAAAABfwAAAAAAewAAAAADewAAAAABewAAAAADewAAAAABewAAAAAAewAAAAAAfwAAAAAAewAAAAADewAAAAADewAAAAADewAAAAACUAAAAAAAbAAAAAACYwAAAAADbAAAAAABfwAAAAAAewAAAAAAewAAAAACewAAAAACewAAAAABewAAAAACewAAAAADfwAAAAAAewAAAAACewAAAAAAewAAAAADewAAAAADUAAAAAAAbAAAAAADYwAAAAAAbAAAAAADbQAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbAAAAAAAYwAAAAAAbAAAAAADfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAbAAAAAAAYwAAAAACbAAAAAADfwAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAbAAAAAABYwAAAAADbAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAbQAAAAAAUAAAAAAAfwAAAAAATwAAAAAAXgAAAAADTwAAAAACfwAAAAAAXgAAAAADXgAAAAAAXgAAAAADXgAAAAADTgAAAAACXgAAAAACXgAAAAABXgAAAAACXgAAAAADXgAAAAABXgAAAAABfwAAAAAATwAAAAABTwAAAAAATwAAAAAAbQAAAAAAXgAAAAABXgAAAAADXgAAAAADXgAAAAACXgAAAAABXgAAAAACXgAAAAACXgAAAAAAXgAAAAAAXgAAAAADXgAAAAADbQAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAADIQAAAAAAIQAAAAABIQAAAAADIQAAAAABIQAAAAABIQAAAAAAIQAAAAACIQAAAAADIQAAAAAAXgAAAAADUAAAAAAA version: 6 0,-1: ind: 0,-1 @@ -101,7 +103,7 @@ entities: version: 6 -2,-1: ind: -2,-1 - tiles: ewAAAAABfwAAAAAAewAAAAADMAAAAAADewAAAAAAewAAAAADMAAAAAABewAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAewAAAAAAbQAAAAAAewAAAAABewAAAAABewAAAAABewAAAAADewAAAAADewAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAIAAAAAADfwAAAAAAewAAAAADewAAAAADewAAAAADewAAAAAAewAAAAACewAAAAADfwAAAAAAbQAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAbwAAAAABbwAAAAABfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAXgAAAAAAXgAAAAAAXgAAAAADXgAAAAABagAAAAAAYwAAAAADYwAAAAABagAAAAAAagAAAAAAagAAAAAAagAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAaQAAAAADaQAAAAABaQAAAAADXgAAAAADagAAAAAAYwAAAAAAYwAAAAABagAAAAAAfwAAAAAAbQAAAAAAUAAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAagAAAAAAYwAAAAADYwAAAAADagAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAagAAAAAAagAAAAAAagAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAbQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAbQAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAUAAAAAAAPQAAAAAAPQAAAAAAUAAAAAAAfwAAAAAAXgAAAAAAXgAAAAABXgAAAAABXgAAAAAAXgAAAAAAXgAAAAACXgAAAAACXgAAAAABXgAAAAABXgAAAAAAXgAAAAABewAAAAACewAAAAABewAAAAADewAAAAADXgAAAAABXgAAAAADXgAAAAADXgAAAAADXgAAAAADXgAAAAACXgAAAAACMAAAAAACaQAAAAABaQAAAAABMAAAAAAAaQAAAAACaQAAAAACMAAAAAADaQAAAAADaQAAAAADMAAAAAAD + tiles: fwAAAAAAewAAAAAAMAAAAAAAIAAAAAAAJwAAAAAAIAAAAAAAMAAAAAABewAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAewAAAAAAewAAAAABewAAAAABewAAAAABewAAAAADewAAAAADewAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAfwAAAAAAewAAAAAAewAAAAAAewAAAAADewAAAAADewAAAAAAewAAAAAAewAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAXgAAAAAAXgAAAAAAXgAAAAADXgAAAAABfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAaQAAAAADaQAAAAABaQAAAAADXgAAAAADfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAPQAAAAAAPQAAAAAAUAAAAAAAfwAAAAAAXgAAAAAAXgAAAAABXgAAAAABXgAAAAAAXgAAAAAAXgAAAAACXgAAAAACXgAAAAABXgAAAAABXgAAAAAAXgAAAAABewAAAAACewAAAAABewAAAAADewAAAAADXgAAAAABXgAAAAADXgAAAAADXgAAAAADXgAAAAADXgAAAAACXgAAAAACMAAAAAACaQAAAAABaQAAAAABMAAAAAAAaQAAAAACaQAAAAACMAAAAAADaQAAAAADaQAAAAADMAAAAAAD version: 6 0,-2: ind: 0,-2 @@ -113,19 +115,19 @@ entities: version: 6 -2,-2: ind: -2,-2 - tiles: QwAAAAAAfwAAAAAAIAAAAAABIAAAAAABUAAAAAAAewAAAAAAewAAAAAAewAAAAACfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAIAAAAAADIAAAAAABUAAAAAAAewAAAAAAewAAAAADewAAAAADfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAIAAAAAACfwAAAAAAIAAAAAACIAAAAAAAfwAAAAAAewAAAAADewAAAAACewAAAAABfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAQwAAAAAAIAAAAAAAQwAAAAAAQwAAAAAAfwAAAAAAIAAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAIAAAAAAAIAAAAAADUAAAAAAAYwAAAAACXgAAAAAAXgAAAAABYwAAAAAAIAAAAAADIAAAAAACIAAAAAABIAAAAAAAbQAAAAAAIAAAAAABIAAAAAAAIAAAAAAAIAAAAAACIAAAAAAAIAAAAAAAbQAAAAAAYwAAAAACXgAAAAAAXgAAAAADYwAAAAABQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAfwAAAAAAQwAAAAAAIAAAAAACQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAUAAAAAAAYwAAAAACXgAAAAABXgAAAAABYwAAAAACfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAYwAAAAACXgAAAAAAXgAAAAADYwAAAAACewAAAAAAewAAAAABewAAAAABewAAAAADewAAAAADawAAAAADawAAAAABawAAAAABawAAAAABawAAAAADawAAAAAAawAAAAAAawAAAAADawAAAAADawAAAAADawAAAAACYwAAAAAAYwAAAAABYwAAAAABYwAAAAACYwAAAAAAYwAAAAAAYwAAAAABYwAAAAABYwAAAAADYwAAAAADYwAAAAADYwAAAAABYwAAAAADYwAAAAACYwAAAAABawAAAAAAawAAAAADawAAAAACawAAAAAAawAAAAABawAAAAADawAAAAADawAAAAADawAAAAABawAAAAAAawAAAAACawAAAAABawAAAAAAawAAAAADawAAAAACawAAAAADawAAAAACfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAbQAAAAAAbQAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAawAAAAAAawAAAAADfwAAAAAAUAAAAAAAbQAAAAAAUAAAAAAAUAAAAAAAaQAAAAACfwAAAAAAMgAAAAAAMgAAAAAAewAAAAAAewAAAAADMgAAAAAAMgAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAewAAAAACewAAAAABewAAAAABewAAAAACaQAAAAADbQAAAAAAewAAAAABMAAAAAABewAAAAAAewAAAAADMAAAAAABewAAAAACfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAewAAAAABewAAAAABewAAAAACewAAAAACaQAAAAACfwAAAAAAewAAAAACMAAAAAADewAAAAABewAAAAAAMAAAAAABewAAAAABfwAAAAAAbQAAAAAAfwAAAAAAbQAAAAAAewAAAAAAewAAAAABewAAAAABewAAAAADfwAAAAAAfwAAAAAAewAAAAAAMAAAAAADewAAAAACewAAAAAAMAAAAAADewAAAAACfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAewAAAAADewAAAAADewAAAAABewAAAAAA + tiles: QwAAAAAAfwAAAAAAIAAAAAABIAAAAAABUAAAAAAAewAAAAAAewAAAAAAewAAAAACfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAIAAAAAADIAAAAAABUAAAAAAAewAAAAAAewAAAAADewAAAAADfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAIAAAAAACfwAAAAAAIAAAAAACIAAAAAAAfwAAAAAAewAAAAADewAAAAACewAAAAABfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAQwAAAAAAIAAAAAAAQwAAAAAAQwAAAAAAfwAAAAAAIAAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAIAAAAAAAIAAAAAADUAAAAAAAYwAAAAACXgAAAAAAXgAAAAABYwAAAAAAIAAAAAADIAAAAAACIAAAAAABIAAAAAAAbQAAAAAAIAAAAAABIAAAAAAAIAAAAAAAIAAAAAACIAAAAAAAIAAAAAAAbQAAAAAAYwAAAAACXgAAAAAAXgAAAAADYwAAAAABQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAfwAAAAAAQwAAAAAAIAAAAAACQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAUAAAAAAAYwAAAAACXgAAAAABXgAAAAABYwAAAAACfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAYwAAAAACXgAAAAAAXgAAAAADYwAAAAACewAAAAAAewAAAAABewAAAAABewAAAAADewAAAAADawAAAAADawAAAAABawAAAAABawAAAAABawAAAAADawAAAAAAawAAAAAAawAAAAADawAAAAADawAAAAADawAAAAACYwAAAAAAYwAAAAABYwAAAAABYwAAAAACYwAAAAAAYwAAAAAAYwAAAAABYwAAAAABYwAAAAADYwAAAAADYwAAAAADYwAAAAABYwAAAAADYwAAAAACYwAAAAABawAAAAAAawAAAAADawAAAAACawAAAAAAawAAAAABawAAAAADawAAAAADawAAAAADawAAAAABawAAAAAAawAAAAACawAAAAABawAAAAAAawAAAAADawAAAAACawAAAAADawAAAAACfwAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAawAAAAAAawAAAAADfwAAAAAAUAAAAAAAbQAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAMgAAAAAAMgAAAAAAIAAAAAAAJwAAAAAAIAAAAAAAMgAAAAAAMgAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAewAAAAACewAAAAABewAAAAABewAAAAACfwAAAAAAewAAAAAAMAAAAAAAKAAAAAAAIQAAAAAAKAAAAAAAMAAAAAABewAAAAACfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAewAAAAABewAAAAABewAAAAACewAAAAACfwAAAAAAewAAAAAAMAAAAAAAKAAAAAAAIQAAAAAAKAAAAAAAMAAAAAABewAAAAABfwAAAAAAbQAAAAAAfwAAAAAAbQAAAAAAewAAAAAAewAAAAABewAAAAABewAAAAADfwAAAAAAewAAAAAAMAAAAAAAKAAAAAAAIQAAAAAAKAAAAAAAMAAAAAADewAAAAACfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAewAAAAADewAAAAADewAAAAABewAAAAAA version: 6 -3,0: ind: -3,0 - tiles: fwAAAAAAfwAAAAAAewAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAewAAAAAAewAAAAACewAAAAADfQAAAAADfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAJQAAAAACIAAAAAABIAAAAAADIQAAAAABIQAAAAABfwAAAAAAewAAAAACfwAAAAAAewAAAAAAewAAAAAAewAAAAABfQAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAJQAAAAABIAAAAAACIAAAAAACIQAAAAABIQAAAAADfwAAAAAAewAAAAACfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAIAAAAAADIAAAAAADIAAAAAADIAAAAAADQwAAAAAAfwAAAAAAewAAAAABfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAIAAAAAACIAAAAAADQwAAAAAAQwAAAAAAQwAAAAAAfwAAAAAAUAAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAQwAAAAAAJQAAAAABQwAAAAAAQwAAAAAAQwAAAAAAfwAAAAAAfgAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfwAAAAAAZQAAAAAAbgAAAAAAbgAAAAAAbwAAAAAAbwAAAAADfwAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAXgAAAAABbgAAAAAAbgAAAAAAbwAAAAACbwAAAAAAfwAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfwAAAAAAZQAAAAAAbgAAAAAAbgAAAAAAbwAAAAABbwAAAAABfwAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfwAAAAAAXgAAAAACbgAAAAAAbgAAAAAAbwAAAAADbwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAA + tiles: fwAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAJQAAAAACIAAAAAABIAAAAAADIQAAAAABIQAAAAABfwAAAAAAewAAAAACfwAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAJQAAAAABIAAAAAACIAAAAAACIQAAAAABIQAAAAADfwAAAAAAewAAAAACfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAIAAAAAADIAAAAAADIAAAAAADIAAAAAADQwAAAAAAfwAAAAAAewAAAAABfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAIAAAAAACIAAAAAADQwAAAAAAQwAAAAAAQwAAAAAAfwAAAAAAUAAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAQwAAAAAAJQAAAAABQwAAAAAAQwAAAAAAQwAAAAAAfwAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAfwAAAAAAZQAAAAAAbgAAAAAAbgAAAAAAbwAAAAAAbwAAAAADfwAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAfwAAAAAAfwAAAAAAXgAAAAABbgAAAAAAbgAAAAAAbwAAAAACbwAAAAAAfwAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAAAfwAAAAAAZQAAAAAAbgAAAAAAbgAAAAAAbwAAAAABbwAAAAABfwAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAfwAAAAAAXgAAAAACbgAAAAAAbgAAAAAAbwAAAAADbwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAA version: 6 -3,-1: ind: -3,-1 - tiles: fwAAAAAAIAAAAAAAMAAAAAAAIAAAAAAAKQAAAAADKQAAAAABfwAAAAAAewAAAAACewAAAAADbAAAAAAAbAAAAAAAfwAAAAAAaQAAAAAAaQAAAAAAfwAAAAAAewAAAAADfwAAAAAAMAAAAAAAIAAAAAAAMAAAAAAAIAAAAAAAIAAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAaQAAAAABaQAAAAADfwAAAAAAewAAAAAAfwAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAMAAAAAAAIAAAAAAAIAAAAAAAUAAAAAAAbAAAAAAAbAAAAAADbAAAAAADfwAAAAAAaQAAAAACaQAAAAADfwAAAAAAewAAAAABfwAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAbQAAAAAAbAAAAAACYwAAAAABbAAAAAACfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbAAAAAADYwAAAAACbAAAAAADfwAAAAAAXgAAAAAAXgAAAAACXgAAAAADUAAAAAAAXgAAAAADXgAAAAADXgAAAAADXgAAAAAAXgAAAAACXgAAAAADXgAAAAADZgAAAAAAbAAAAAAAYwAAAAADbAAAAAACfwAAAAAAXgAAAAADXgAAAAABXgAAAAAAbQAAAAAAXgAAAAABXgAAAAABXgAAAAACXgAAAAACXgAAAAABXgAAAAABXgAAAAAAZgAAAAABbAAAAAAAYwAAAAACbAAAAAABfwAAAAAAXgAAAAABXgAAAAADXgAAAAABUAAAAAAAfwAAAAAAewAAAAADfwAAAAAAfwAAAAAAUAAAAAAAewAAAAACfwAAAAAAfwAAAAAAbAAAAAADYwAAAAADbAAAAAABfwAAAAAAXgAAAAACXgAAAAABXgAAAAADfwAAAAAAewAAAAADewAAAAABewAAAAADfwAAAAAAewAAAAACewAAAAADewAAAAABUAAAAAAAbAAAAAACYwAAAAACbAAAAAABfwAAAAAAXgAAAAAAXgAAAAACXgAAAAACfwAAAAAAewAAAAADewAAAAAAewAAAAABfwAAAAAAewAAAAAAewAAAAACewAAAAABUAAAAAAAbAAAAAACYwAAAAACaQAAAAACfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAewAAAAACewAAAAADewAAAAABfwAAAAAAbAAAAAABYwAAAAABaQAAAAABfwAAAAAAIAAAAAACIAAAAAADIAAAAAADbQAAAAAATgAAAAAATgAAAAAATgAAAAADfwAAAAAAewAAAAACewAAAAACewAAAAABUAAAAAAAbAAAAAACYwAAAAADaQAAAAAAfwAAAAAAIAAAAAACIAAAAAABIAAAAAAAUAAAAAAATgAAAAABTgAAAAADTgAAAAADfwAAAAAAewAAAAAAewAAAAADewAAAAADUAAAAAAAbAAAAAACYwAAAAADbAAAAAADfwAAAAAAIAAAAAABIAAAAAABIAAAAAACUAAAAAAAbQAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAewAAAAABUAAAAAAAfwAAAAAAbAAAAAAAYwAAAAABbAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAACXgAAAAABXgAAAAABXgAAAAADXgAAAAAAXgAAAAADXgAAAAAAXgAAAAAAXgAAAAABXgAAAAACXgAAAAACXgAAAAADXgAAAAAAXgAAAAACbQAAAAAAXgAAAAADXgAAAAACXgAAAAAAXgAAAAACXgAAAAAAXgAAAAACXgAAAAACXgAAAAADXgAAAAAAXgAAAAADXgAAAAAAXgAAAAADXgAAAAACXgAAAAAAXgAAAAADbQAAAAAAXgAAAAAD + tiles: fwAAAAAAIAAAAAAAMAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAfwAAAAAAewAAAAACewAAAAADbAAAAAAAbAAAAAAAfwAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAfwAAAAAAMAAAAAAAIAAAAAAAMAAAAAAAIAAAAAAAIAAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAewAAAAAAfQAAAAAAfQAAAAAAewAAAAAAfwAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAMAAAAAAAIAAAAAAAIAAAAAAAUAAAAAAAbAAAAAAAbAAAAAADbAAAAAADfwAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAfwAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAUAAAAAAAbAAAAAACYwAAAAABbAAAAAACfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAbAAAAAADYwAAAAACbAAAAAADfwAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAbQAAAAAAbAAAAAAAYwAAAAADbAAAAAACbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAfwAAAAAAbAAAAAAAYwAAAAACbAAAAAABfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAXgAAAAAAXgAAAAAAfwAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAfwAAAAAAbAAAAAADYwAAAAADbAAAAAABfwAAAAAAewAAAAAAewAAAAAAewAAAAAAbQAAAAAAfwAAAAAAXgAAAAAAXgAAAAAAfwAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAUAAAAAAAbAAAAAACYwAAAAACbAAAAAABfwAAAAAAewAAAAAAewAAAAAAewAAAAAAfwAAAAAAfwAAAAAAXgAAAAAAXgAAAAAAfwAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAUAAAAAAAbAAAAAACYwAAAAACaQAAAAACfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAbQAAAAAAbAAAAAABYwAAAAABaQAAAAABfwAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAUAAAAAAAIAAAAAAAIAAAAAAAfwAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAUAAAAAAAbAAAAAACYwAAAAADaQAAAAAAfwAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAUAAAAAAAIAAAAAAAIAAAAAAAfwAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAUAAAAAAAbAAAAAACYwAAAAADbAAAAAADfwAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAfwAAAAAAIAAAAAAAIAAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAUAAAAAAAfwAAAAAAbAAAAAAAYwAAAAABbAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAUAAAAAAAXgAAAAADXgAAAAAAXgAAAAAAXgAAAAABXgAAAAACXgAAAAACXgAAAAADXgAAAAAAXgAAAAACbQAAAAAAXgAAAAADbQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAbQAAAAAAXgAAAAACXgAAAAADXgAAAAAAXgAAAAADXgAAAAAAXgAAAAADXgAAAAACXgAAAAAAXgAAAAADbQAAAAAAXgAAAAAD version: 6 -3,-2: ind: -3,-2 - tiles: TgAAAAAATgAAAAADfwAAAAAATgAAAAAATgAAAAABTgAAAAADfwAAAAAAbwAAAAADfwAAAAAAfwAAAAAAbwAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAQwAAAAAATgAAAAABTgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAATgAAAAACTgAAAAABTgAAAAAATgAAAAACTgAAAAADTgAAAAABfwAAAAAAbwAAAAADfwAAAAAAbwAAAAAAbwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAIAAAAAADIAAAAAABfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAIAAAAAACIAAAAAABIAAAAAAAIAAAAAADUAAAAAAAIAAAAAABIAAAAAACIAAAAAABIAAAAAABIAAAAAABIAAAAAABIAAAAAABIAAAAAAAIAAAAAADfwAAAAAAQwAAAAAATwAAAAACTwAAAAABTwAAAAADIAAAAAAAbQAAAAAAIAAAAAACTgAAAAACXgAAAAABXgAAAAACXgAAAAAAXgAAAAADXgAAAAABXgAAAAADXgAAAAADbQAAAAAAIAAAAAABTwAAAAACTwAAAAABTwAAAAABIAAAAAABbQAAAAAAKQAAAAACXgAAAAACXgAAAAABXgAAAAAAXgAAAAADXgAAAAACXgAAAAAAXgAAAAAAXgAAAAADfwAAAAAAQwAAAAAAIAAAAAADIAAAAAACIAAAAAACIAAAAAACfwAAAAAAIAAAAAABXgAAAAABfwAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAZgAAAAACawAAAAABawAAAAACawAAAAACawAAAAADawAAAAACawAAAAACewAAAAABfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbAAAAAABYwAAAAAAYwAAAAABYwAAAAABYwAAAAAAYwAAAAABYwAAAAACYwAAAAADfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAbAAAAAADYwAAAAAAZgAAAAADawAAAAACawAAAAAAawAAAAAAawAAAAABawAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbAAAAAAAYwAAAAAAbAAAAAABfwAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAKQAAAAADKQAAAAADKQAAAAADKQAAAAADKQAAAAABKQAAAAACUAAAAAAAewAAAAACewAAAAACYwAAAAAAbAAAAAABfwAAAAAAaQAAAAAAaQAAAAADaQAAAAADaQAAAAADKQAAAAABKQAAAAADIAAAAAADKQAAAAABKQAAAAACKQAAAAAAUAAAAAAAewAAAAABewAAAAACYwAAAAAAbAAAAAAAUAAAAAAAaQAAAAAAaQAAAAACaQAAAAADaQAAAAAATwAAAAACIAAAAAADIAAAAAAAKQAAAAABMAAAAAAAKQAAAAAAfwAAAAAAewAAAAADewAAAAABYwAAAAAAbAAAAAAAUAAAAAAAaQAAAAABaQAAAAACaQAAAAABaQAAAAADIAAAAAAAMAAAAAAAIAAAAAACMAAAAAAAKQAAAAAAKQAAAAAAfwAAAAAAewAAAAAAewAAAAACYwAAAAAAbAAAAAACUAAAAAAAaQAAAAAAaQAAAAACfwAAAAAAfwAAAAAA + tiles: TgAAAAAATgAAAAADfwAAAAAATgAAAAAATgAAAAABTgAAAAADfwAAAAAAbwAAAAADfwAAAAAAfwAAAAAAbwAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAQwAAAAAATgAAAAABTgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAATgAAAAACTgAAAAABTgAAAAAATgAAAAACTgAAAAADTgAAAAABfwAAAAAAbwAAAAADfwAAAAAAbwAAAAAAbwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAIAAAAAADIAAAAAABfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAIAAAAAACIAAAAAABIAAAAAAAIAAAAAADUAAAAAAAIAAAAAABIAAAAAACIAAAAAABIAAAAAABIAAAAAABIAAAAAABIAAAAAABIAAAAAAAIAAAAAADfwAAAAAAQwAAAAAATwAAAAACTwAAAAABTwAAAAADIAAAAAAAbQAAAAAAIAAAAAACTgAAAAACXgAAAAABXgAAAAACXgAAAAAAXgAAAAADXgAAAAABXgAAAAADXgAAAAADbQAAAAAAIAAAAAABTwAAAAACTwAAAAABTwAAAAABIAAAAAABbQAAAAAAKQAAAAACXgAAAAACXgAAAAABXgAAAAAAXgAAAAADXgAAAAACXgAAAAAAXgAAAAAAXgAAAAADfwAAAAAAQwAAAAAAIAAAAAADIAAAAAACIAAAAAACIAAAAAACfwAAAAAAIAAAAAABXgAAAAABfwAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAZgAAAAACawAAAAABawAAAAACawAAAAACawAAAAADawAAAAACawAAAAACewAAAAABfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbAAAAAABYwAAAAAAYwAAAAABYwAAAAABYwAAAAAAYwAAAAABYwAAAAACYwAAAAADfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAbAAAAAADYwAAAAAAZgAAAAADawAAAAACawAAAAAAawAAAAAAawAAAAABawAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbAAAAAAAYwAAAAAAbAAAAAABfwAAAAAAbQAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAUAAAAAAAewAAAAACewAAAAACYwAAAAAAbAAAAAABUAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAIAAAAAAAIAAAAAAAIAAAAAADIAAAAAAAIAAAAAAAIAAAAAAAUAAAAAAAewAAAAABewAAAAACYwAAAAAAbAAAAAAAUAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAATwAAAAACIAAAAAADIAAAAAAAIAAAAAAAMAAAAAAAIAAAAAAAfwAAAAAAewAAAAADewAAAAABYwAAAAAAbAAAAAAAfwAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAIAAAAAAAMAAAAAAAIAAAAAACMAAAAAAAIAAAAAAAIAAAAAAAfwAAAAAAewAAAAAAewAAAAACYwAAAAAAbAAAAAACfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAA version: 6 -1,-3: ind: -1,-3 @@ -145,7 +147,7 @@ entities: version: 6 -3,-4: ind: -3,-4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAIAAAAAACIAAAAAAAIAAAAAACUAAAAAAAIAAAAAADIAAAAAADIAAAAAADfgAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAIAAAAAADTwAAAAADIAAAAAAAbQAAAAAAIAAAAAACfwAAAAAAIAAAAAAAfgAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAIAAAAAAAIAAAAAAAIAAAAAADUAAAAAAAIAAAAAABfwAAAAAAIAAAAAAB + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAIAAAAAACIAAAAAAAIAAAAAACUAAAAAAAIAAAAAADIAAAAAADIAAAAAADfgAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAIAAAAAADTwAAAAADIAAAAAAAbQAAAAAAIAAAAAACfwAAAAAAIAAAAAAAfgAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAIAAAAAAAIAAAAAAAIAAAAAADUAAAAAAAIAAAAAABfwAAAAAAIAAAAAAB version: 6 -4,-4: ind: -4,-4 @@ -153,23 +155,23 @@ entities: version: 6 -4,-3: ind: -4,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfgAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAACQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAUAAAAAAACAAAAAAACQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAUAAAAAAACAAAAAAACQAAAAAACQAAAAAACAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfgAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAA version: 6 -4,-1: ind: -4,-1 - tiles: fgAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAUAAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAewAAAAAAewAAAAABewAAAAACewAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAewAAAAAAewAAAAADewAAAAABewAAAAACewAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAXgAAAAAAXgAAAAAAXgAAAAADXgAAAAADfgAAAAAAAAAAAAAAfgAAAAAAUAAAAAAAewAAAAABewAAAAADewAAAAAAewAAAAACfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAaQAAAAADXgAAAAADXgAAAAABXgAAAAADfgAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAewAAAAADewAAAAACewAAAAACewAAAAABfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfwAAAAAAbgAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAfwAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAUAAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAUAAAAAAAbgAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAALwAAAAAALwAAAAAALwAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfwAAAAAAbgAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAALwAAAAAALwAAAAAALwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAXgAAAAACXgAAAAACXgAAAAACXgAAAAABfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAUAAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAbQAAAAAAXgAAAAADXgAAAAABXgAAAAADXgAAAAAD + tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAUAAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAewAAAAAAewAAAAABewAAAAACewAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAUAAAAAAAUAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAewAAAAAAewAAAAADewAAAAABewAAAAACewAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAUAAAAAAAewAAAAABewAAAAADewAAAAAAewAAAAACfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAXgAAAAAAYwAAAAAAYwAAAAAAXgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAewAAAAADewAAAAACewAAAAACewAAAAABfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAXgAAAAAAYwAAAAAAXgAAAAAAXgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAXgAAAAAAYwAAAAAAEgAAAAAAEgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfwAAAAAAbgAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAAAXgAAAAAAEgAAAAAAEgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAUAAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAUAAAAAAAbgAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfwAAAAAAbgAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAUAAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAA version: 6 -4,0: ind: -4,0 - tiles: fgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAUAAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAewAAAAACfwAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAewAAAAABewAAAAABewAAAAACewAAAAADfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAewAAAAADfQAAAAADfQAAAAADewAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAewAAAAACewAAAAADfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAewAAAAAAewAAAAAAewAAAAAAfwAAAAAAfwAAAAAAewAAAAAAewAAAAAAewAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAewAAAAACOgAAAAAAOgAAAAABOgAAAAAAOgAAAAABOgAAAAACewAAAAADfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAewAAAAAAOgAAAAACOgAAAAADOgAAAAADOgAAAAACOgAAAAACewAAAAABewAAAAADewAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAewAAAAAAOgAAAAAAOgAAAAADOgAAAAACOgAAAAABOgAAAAADfwAAAAAAewAAAAABewAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAewAAAAAAewAAAAACewAAAAABewAAAAACewAAAAADewAAAAACfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAewAAAAABLAAAAAAALAAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAewAAAAADLAAAAAAALAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAewAAAAADLAAAAAAALAAAAAAAewAAAAACewAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAewAAAAADewAAAAAAewAAAAADewAAAAABfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAA + tiles: fgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAUAAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAewAAAAACewAAAAADfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAewAAAAAAewAAAAAAewAAAAAAfwAAAAAAfwAAAAAAewAAAAAAewAAAAAAewAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAewAAAAACOgAAAAAAOgAAAAABOgAAAAAAOgAAAAABOgAAAAACewAAAAADfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAewAAAAAAOgAAAAACOgAAAAADOgAAAAADOgAAAAACOgAAAAACewAAAAABewAAAAADewAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAewAAAAAAOgAAAAAAOgAAAAADOgAAAAACOgAAAAABOgAAAAADfwAAAAAAewAAAAABewAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAewAAAAAAewAAAAACewAAAAABewAAAAACewAAAAADewAAAAACfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAPQAAAAAAPQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAewAAAAABLAAAAAAALAAAAAAAfwAAAAAAPQAAAAAAPQAAAAAACgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAewAAAAADLAAAAAAALAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAewAAAAADLAAAAAAALAAAAAAAewAAAAACewAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAewAAAAADewAAAAAAewAAAAADewAAAAABfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAA version: 6 -4,-2: ind: -4,-2 - tiles: fgAAAAAAAAAAAAAAAAAAAAAAUAAAAAAACAAAAAAACQAAAAAACAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAATgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAACAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAATgAAAAACfgAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAACQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAATgAAAAADfgAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAIAAAAAADfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAKQAAAAADfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAIAAAAAADfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAIAAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAUAAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAUAAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAUAAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAKQAAAAACKQAAAAAAKQAAAAABKQAAAAAAIAAAAAABfgAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAKQAAAAACKQAAAAADKQAAAAABKQAAAAABIAAAAAACfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAUAAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAKQAAAAABKQAAAAAAKQAAAAABKQAAAAABIAAAAAAC + tiles: fgAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAATgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAATgAAAAACfgAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAATgAAAAADfgAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAIAAAAAADfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAKQAAAAADfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAIAAAAAADfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAIAAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAUAAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAUAAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAUAAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAABfgAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAACfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAUAAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAC version: 6 1,-3: ind: 1,-3 - tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAKQAAAAABKQAAAAADKQAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAKQAAAAAAKQAAAAAAKQAAAAADfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAKQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAewAAAAAAewAAAAAAewAAAAAAfwAAAAAAZgAAAAAAawAAAAAAZgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAABAAAAAAABAAAAAAABAAAAAAAfwAAAAAAbAAAAAAAYwAAAAAAbAAAAAAAfwAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAfwAAAAAABAAAAAAABAAAAAAABAAAAAAAfwAAAAAAbAAAAAAAYwAAAAAAbAAAAAAAbQAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAfwAAAAAABAAAAAAABAAAAAAABAAAAAAAbQAAAAAAbAAAAAAAYwAAAAAAbAAAAAAAfwAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAfwAAAAAAewAAAAAAewAAAAAAewAAAAAAfwAAAAAAbAAAAAAAYwAAAAAAbAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAbAAAAAAAYwAAAAAAbAAAAAAAfwAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAbAAAAAAAYwAAAAAAbAAAAAAAbQAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAbAAAAAAAYwAAAAAAbAAAAAAAfwAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAA + tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAKQAAAAABKQAAAAADKQAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAKQAAAAAAKQAAAAAAKQAAAAADfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAKQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAewAAAAAAewAAAAAAewAAAAAAfwAAAAAAZgAAAAAAawAAAAAAZgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAABAAAAAAABAAAAAAABAAAAAAAfwAAAAAAbAAAAAAAYwAAAAAAbAAAAAAAfwAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAfwAAAAAABAAAAAAABAAAAAAABAAAAAAAfwAAAAAAbAAAAAAAYwAAAAAAbAAAAAAAbQAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAfwAAAAAABAAAAAAABAAAAAAABAAAAAAAbQAAAAAAbAAAAAAAYwAAAAAAbAAAAAAAfwAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAfwAAAAAAewAAAAAAewAAAAAAewAAAAAAfwAAAAAAbAAAAAAAYwAAAAAAbAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAbAAAAAAAYwAAAAAAbAAAAAAAfwAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAbAAAAAAAYwAAAAAAbAAAAAAAbQAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAbAAAAAAAYwAAAAAAbAAAAAAAfwAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAA version: 6 1,-2: ind: 1,-2 @@ -185,7 +187,7 @@ entities: version: 6 1,0: ind: 1,0 - tiles: KQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAfwAAAAAAJwAAAAAAJwAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAbgAAAAAAbgAAAAAAfwAAAAAAUAAAAAAAJQAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAKAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAewAAAAADfwAAAAAAfwAAAAAAbgAAAAAAfwAAAAAAJwAAAAAAJwAAAAAAfwAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAKAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAewAAAAADfwAAAAAAfwAAAAAAbgAAAAAAfwAAAAAAewAAAAAAewAAAAAAfQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAKAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAewAAAAADfwAAAAAAfwAAAAAAbgAAAAAAfwAAAAAAJwAAAAAAJwAAAAAAfwAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAKAAAAAAAewAAAAACewAAAAADewAAAAADewAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAewAAAAACfwAAAAAAbQAAAAAAfwAAAAAAewAAAAACfwAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAewAAAAADfwAAAAAAbQAAAAAAfwAAAAAAewAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAewAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAewAAAAADfwAAAAAAfgAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAAAAAAAAATwAAAAAAegAAAAAATwAAAAAAegAAAAAAUAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAegAAAAAATwAAAAAAegAAAAAATwAAAAAAUAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAA + tiles: KQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAfwAAAAAAJwAAAAAAJwAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAbgAAAAAAbgAAAAAAfwAAAAAAUAAAAAAAJQAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAKAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAewAAAAADfwAAAAAAfwAAAAAAbgAAAAAAfwAAAAAAJwAAAAAAJwAAAAAAfwAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAKAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAewAAAAADfwAAAAAAfwAAAAAAbgAAAAAAfwAAAAAAewAAAAAAewAAAAAAfQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAKAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAewAAAAADfwAAAAAAfwAAAAAAbgAAAAAAfwAAAAAAJwAAAAAAJwAAAAAAfwAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAKAAAAAAAewAAAAACewAAAAADewAAAAADewAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAcQAAAAAATwAAAAAAcQAAAAAATwAAAAAAcQAAAAAAfwAAAAAAfwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAATwAAAAAAcQAAAAAATwAAAAAAcQAAAAAATwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAcQAAAAAATwAAAAAAcQAAAAAATwAAAAAAcQAAAAAAfwAAAAAAfwAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAbQAAAAAATwAAAAAAcQAAAAAATwAAAAAAcQAAAAAATwAAAAAAfwAAAAAAfwAAAAAATwAAAAAAYwAAAAAATwAAAAAAYwAAAAAATwAAAAAAYwAAAAAATwAAAAAAYwAAAAAAfwAAAAAAcQAAAAAATwAAAAAAcQAAAAAATwAAAAAAcQAAAAAAfwAAAAAAQQAAAAAA version: 6 2,-2: ind: 2,-2 @@ -197,11 +199,11 @@ entities: version: 6 2,0: ind: 2,0 - tiles: fwAAAAAAKQAAAAAAIQAAAAAAKQAAAAAAfwAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfwAAAAAAXgAAAAAAXgAAAAADXgAAAAAAXgAAAAACXgAAAAADbQAAAAAAewAAAAAAfwAAAAAAKQAAAAAAIQAAAAAAKQAAAAAAfwAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfwAAAAAAXgAAAAACTwAAAAACXgAAAAACTwAAAAAAXgAAAAAAfwAAAAAAXgAAAAADfwAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAbQAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAPQAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAXgAAAAADXgAAAAADXgAAAAAAXgAAAAAAfwAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAPQAAAAAAPQAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAATwAAAAABTwAAAAAAXgAAAAACXgAAAAAAUAAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAPQAAAAAAPQAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAXgAAAAACXgAAAAAATwAAAAACTwAAAAADUAAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAPQAAAAAAPQAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAXwAAAAAAXgAAAAADXgAAAAACXgAAAAABfwAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: fwAAAAAAKQAAAAAAIQAAAAAAKQAAAAAAfwAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfwAAAAAAXgAAAAAAXgAAAAADXgAAAAAAXgAAAAACXgAAAAADbQAAAAAAewAAAAAAfwAAAAAAKQAAAAAAIQAAAAAAKQAAAAAAfwAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfwAAAAAAXgAAAAACTwAAAAACXgAAAAACTwAAAAAAXgAAAAAAfwAAAAAAXgAAAAADfwAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAbQAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAPQAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAXgAAAAADXgAAAAADXgAAAAAAXgAAAAAAfwAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAPQAAAAAAPQAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAATwAAAAABTwAAAAAAXgAAAAACXgAAAAAAUAAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAPQAAAAAAPQAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAXgAAAAACXgAAAAAATwAAAAACTwAAAAADUAAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAPQAAAAAAPQAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAXwAAAAAAXgAAAAADXgAAAAACXgAAAAABfwAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQQAAAAAAQQAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 2,-3: ind: 2,-3 - tiles: fwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAZgAAAAAAawAAAAAAZgAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAfwAAAAAAbAAAAAAAYwAAAAAAbAAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAIAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAIAAAAAAAfwAAAAAAbAAAAAAAYwAAAAAAbAAAAAAAfwAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUAAAAAAAIAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAIAAAAAAAfwAAAAAAbAAAAAAAYwAAAAAAbAAAAAAAfwAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAbQAAAAAAIAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAIAAAAAAAbQAAAAAAbAAAAAAAYwAAAAAAbAAAAAAAfwAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUAAAAAAAIAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAIAAAAAAAfwAAAAAAbAAAAAAAYwAAAAAAbAAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAIAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAIAAAAAAA + tiles: fwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAZgAAAAAAawAAAAAAZgAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAfwAAAAAAbAAAAAAAYwAAAAAAbAAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAIAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAIAAAAAAAfwAAAAAAbAAAAAAAYwAAAAAAbAAAAAAAfwAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUAAAAAAAIAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAIAAAAAAAfwAAAAAAbAAAAAAAYwAAAAAAbAAAAAAAfwAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAbQAAAAAAIAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAIAAAAAAAbQAAAAAAbAAAAAAAYwAAAAAAbAAAAAAAfwAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUAAAAAAAIAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAIAAAAAAAfwAAAAAAbAAAAAAAYwAAAAAAbAAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAIAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAIAAAAAAA version: 6 -1,-4: ind: -1,-4 @@ -249,19 +251,19 @@ entities: version: 6 3,-3: ind: 3,-3 - tiles: fgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAUAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAUAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAUAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAUAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfwAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAUAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAUAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfwAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAUAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAIAAAAAAAIAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAUAAAAAAAAAAAAAAAfgAAAAAAbQAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAIAAAAAAAIAAAAAAAbQAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAUAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAIAAAAAAAIAAAAAAAbQAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAUAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAIAAAAAAAIAAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAbQAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAJgAAAAAAJgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAJgAAAAAAJgAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAUAAAAAAAJgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAJgAAAAAAUAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAUAAAAAAAJgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAJgAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAUAAAAAAAJgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAJgAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAbQAAAAAAJgAAAAAAJgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAJgAAAAAAJgAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAA + tiles: fgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAUAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAUAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAUAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAUAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAfwAAAAAACwAAAAAAfwAAAAAAfgAAAAAAfwAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAUAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAbQAAAAAACwAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAUAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAIAAAAAAACwAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfwAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAUAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAIAAAAAAAIAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAUAAAAAAAAAAAAAAAfgAAAAAAbQAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAIAAAAAAAIAAAAAAAbQAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAUAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAIAAAAAAAIAAAAAAAbQAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAUAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAIAAAAAAAIAAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAbQAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAJgAAAAAAJgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAJgAAAAAAJgAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAUAAAAAAAJgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAJgAAAAAAUAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAUAAAAAAAJgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAJgAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAUAAAAAAAJgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAJgAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAbQAAAAAAJgAAAAAAJgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAJgAAAAAAJgAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAA version: 6 1,1: ind: 1,1 - tiles: TwAAAAAAegAAAAAATwAAAAAAegAAAAAAUAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: awAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAbQAAAAAATwAAAAAAcQAAAAAATwAAAAAAcQAAAAAAbQAAAAAAfwAAAAAAQQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAQQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAQQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfwAAAAAAUAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 2,1: ind: 2,1 - tiles: fgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: QQAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 4,-2: ind: 4,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAJQAAAAAAIAAAAAAAIAAAAAAAJQAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAAAAAOQAAAAAAfwAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAAAAAOQAAAAAAfwAAAAAAOQAAAAAAfwAAAAAAfwAAAAAAKAAAAAAAfwAAAAAAOQAAAAAAJQAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATwAAAAAATwAAAAAAbQAAAAAAOQAAAAAAfwAAAAAAEgAAAAAAIAAAAAAAfwAAAAAAOQAAAAAAIAAAAAAAfwAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAAAAAOQAAAAAAfwAAAAAAOQAAAAAAfwAAAAAAfwAAAAAAKAAAAAAAfwAAAAAAOQAAAAAAJQAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAAAAAOQAAAAAAfwAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAJQAAAAAAIAAAAAAAIAAAAAAAJQAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAJQAAAAAAIAAAAAAAIAAAAAAAJQAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAAAAAOQAAAAAAfwAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAAAAAOQAAAAAAfwAAAAAAOQAAAAAAfwAAAAAAfwAAAAAAKAAAAAAAfwAAAAAAOQAAAAAAJQAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATwAAAAAATwAAAAAAbQAAAAAAOQAAAAAAfwAAAAAAEgAAAAAAIAAAAAAAfwAAAAAAOQAAAAAAIAAAAAAAfwAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAAAAAOQAAAAAAfwAAAAAAOQAAAAAAfwAAAAAAfwAAAAAAKAAAAAAAfwAAAAAAOQAAAAAAJQAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAAAAAOQAAAAAAfwAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAJQAAAAAAIAAAAAAAIAAAAAAAJQAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 3,-4: ind: 3,-4 @@ -277,12 +279,16 @@ entities: version: 6 -5,-2: ind: -5,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAA version: 6 -4,1: ind: -4,1 tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 + -5,-1: + ind: -5,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 - type: Broadphase - type: Physics bodyStatus: InAir @@ -324,6 +330,8 @@ entities: decals: 312: -39,1 313: -39,2 + 982: -52,1 + 1042: -52,2 - node: color: '#FFFFFFFF' id: Box @@ -1129,10 +1137,10 @@ entities: color: '#FFFFFFFF' id: Bushn1 decals: - 63: -29.570997,-20.070805 67: -25.456413,-20.206316 362: 1.6279085,-2.063757 542: 43,-22 + 1141: -30.513037,-20.209612 - node: color: '#52B4E996' id: CheckerNESW @@ -1186,6 +1194,7 @@ entities: 535: -42,-14 536: -43,-14 836: -46,-13 + 984: -49,2 - node: cleanable: True color: '#FFFFFFFF' @@ -1231,16 +1240,6 @@ entities: 932: -11,3 933: -10,3 934: -10,2 - - node: - color: '#D381C996' - id: DiagonalCheckerAOverlay - decals: - 230: -31,-11 - 231: -30,-11 - 232: -31,-9 - 233: -30,-9 - 238: -30,-10 - 239: -31,-10 - node: color: '#571212FF' id: DiagonalCheckerBOverlay @@ -1256,6 +1255,14 @@ entities: 83: -17,-27 84: -17,-26 85: -17,-25 + - node: + color: '#BE6BC3A6' + id: DiagonalCheckerBOverlay + decals: + 1070: -51,-8 + 1071: -51,-9 + 1072: -51,-10 + 1073: -50,-10 - node: cleanable: True color: '#EFB34196' @@ -1271,8 +1278,24 @@ entities: id: Dirt decals: 218: 4,-16 - 251: -52,-4 - 260: 18.962013,12.027142 + 1076: -49,1 + 1110: -48,-2 + 1118: -51,-11 + 1119: -52,-11 + 1121: -50,-11 + 1122: -42,-1 + 1123: -43,-1 + 1124: -43,-2 + 1148: -49,9 + 1149: -50,9 + 1150: -50,10 + 1151: -51,10 + 1152: -48,8 + 1153: -47,8 + 1154: -46,8 + 1155: -47,7 + 1156: -46,7 + 1157: -45,7 - node: cleanable: True angle: -1.5707963267948966 rad @@ -1296,6 +1319,16 @@ entities: 848: 37,-1 849: 38,-1 853: 38,1 + 1075: -50,1 + 1079: -52,0 + 1084: -47,2 + 1096: -46,1 + 1105: -47,-4 + 1109: -47,-3 + 1158: -47,8 + 1159: -48,8 + 1164: -49,9 + 1165: -50,9 - node: cleanable: True color: '#FFFFFFFF' @@ -1304,6 +1337,29 @@ entities: 846: 39,-1 850: 37,0 851: 38,0 + 1081: -52,1 + 1092: -47,2 + 1093: -46,2 + 1094: -45,2 + 1095: -47,1 + 1097: -45,1 + 1098: -45,2 + 1099: -47,3 + 1100: -47,2 + 1101: -51,0 + 1102: -46,-5 + 1103: -47,-5 + 1107: -46,-4 + 1111: -46,-2 + 1116: -49,-10 + 1162: -46,7 + 1175: -47,8 + 1176: -48,8 + 1177: -46,8 + 1178: -47,7 + 1179: -45,7 + 1180: -46,7 + 1181: -46,9 - node: cleanable: True color: '#FFFFFFFF' @@ -1329,6 +1385,18 @@ entities: 303: -43,10 304: -42,8 845: 39,0 + 1077: -50,0 + 1078: -51,1 + 1083: -47,1 + 1090: -46,2 + 1091: -46,2 + 1106: -47,-3 + 1163: -45,7 + 1166: -50,10 + 1167: -51,10 + 1172: -45,7 + 1173: -45,7 + 1174: -48,8 - node: cleanable: True angle: 0.7853981633974483 rad @@ -1353,6 +1421,23 @@ entities: 252: -50,-5 266: 9,-25 852: 39,1 + 1080: -52,2 + 1082: -46,1 + 1085: -45,2 + 1086: -45,2 + 1087: -45,1 + 1088: -45,1 + 1089: -46,2 + 1104: -46,-4 + 1108: -46,-3 + 1112: -47,-1 + 1117: -49,-11 + 1160: -47,7 + 1161: -46,8 + 1168: -47,8 + 1169: -47,7 + 1170: -46,8 + 1171: -46,7 - node: cleanable: True angle: 1.5707963267948966 rad @@ -1409,11 +1494,11 @@ entities: decals: 65: -25.831413,-20.112501 343: 8.925723,-2.1344383 + 1138: -31.075537,-20.131487 - node: color: '#FFFFFFFF' id: Flowersy2 decals: - 62: -29.998081,-20.195892 548: 45,-22 - node: cleanable: True @@ -1426,8 +1511,8 @@ entities: color: '#FFFFFFFF' id: Flowersy3 decals: - 61: -29.102247,-20.133348 342: 9.847598,-2.1188037 + 1140: -30.497412,-20.162737 - node: cleanable: True color: '#FFFFFFFF' @@ -1444,6 +1529,7 @@ entities: 341: 7.972598,-2.0875309 546: 48,-22 547: 44,-22 + 1139: -30.013037,-20.162737 - node: cleanable: True color: '#FFFFFFFF' @@ -1495,6 +1581,13 @@ entities: 397: 11,-37 483: 12,-37 484: 13,-37 + - node: + color: '#724276FF' + id: HalfTileOverlayGreyscale + decals: + 1038: -45,-1 + 1039: -46,-1 + 1040: -47,-1 - node: color: '#9D9D97FF' id: HalfTileOverlayGreyscale @@ -1509,6 +1602,11 @@ entities: 556: 10,-27 557: 11,-27 558: 9,-27 + - node: + color: '#BE6BC3A6' + id: HalfTileOverlayGreyscale + decals: + 1064: -45,-10 - node: color: '#F9801DBC' id: HalfTileOverlayGreyscale @@ -1530,6 +1628,11 @@ entities: decals: 398: 10,-39 399: 9,-39 + - node: + color: '#724276FF' + id: HalfTileOverlayGreyscale180 + decals: + 1037: -45,-2 - node: color: '#9D9D97FF' id: HalfTileOverlayGreyscale180 @@ -1544,6 +1647,14 @@ entities: 553: 10,-30 554: 9,-30 555: 11,-30 + - node: + color: '#BE6BC3A6' + id: HalfTileOverlayGreyscale180 + decals: + 1053: -43,-11 + 1054: -44,-11 + 1055: -45,-11 + 1056: -46,-11 - node: color: '#F9801DBC' id: HalfTileOverlayGreyscale180 @@ -1551,13 +1662,6 @@ entities: 338: -1,-30 339: 0,-30 340: 1,-30 - - node: - color: '#0000009A' - id: HalfTileOverlayGreyscale270 - decals: - 0: -26,-4 - 1: -26,-5 - 2: -26,-6 - node: color: '#52B4E996' id: HalfTileOverlayGreyscale270 @@ -1568,6 +1672,13 @@ entities: 440: 9,-34 441: 9,-33 442: 9,-32 + - node: + color: '#724276FF' + id: HalfTileOverlayGreyscale270 + decals: + 1030: -47,-5 + 1031: -47,-4 + 1032: -47,-3 - node: color: '#9D9D97FF' id: HalfTileOverlayGreyscale270 @@ -1584,20 +1695,30 @@ entities: 727: 29,-1 735: 28,-4 - node: - color: '#D381C996' + color: '#BE6BC3A6' id: HalfTileOverlayGreyscale270 decals: - 225: -36,-9 - 226: -36,-12 - 227: -36,-11 - 228: -36,-10 - 270: -36,-8 + 1043: -44,-9 + 1044: -44,-8 + 1045: -44,-7 + 1046: -44,-6 + 1047: -44,-5 + 1058: -47,-9 + 1059: -47,-8 + 1060: -47,-7 - node: color: '#F9801DBC' id: HalfTileOverlayGreyscale270 decals: 333: -2,-29 334: -2,-28 + - node: + color: '#724276FF' + id: HalfTileOverlayGreyscale90 + decals: + 1033: -46,-5 + 1034: -46,-4 + 1035: -46,-3 - node: color: '#9D9D97FF' id: HalfTileOverlayGreyscale90 @@ -1613,11 +1734,24 @@ entities: 712: 28,-4 713: 28,-2 715: 28,-1 + - node: + color: '#BE6BC3A6' + id: HalfTileOverlayGreyscale90 + decals: + 1048: -42,-7 + 1049: -42,-8 + 1050: -42,-9 + 1051: -42,-10 + 1061: -46,-7 + 1062: -46,-8 + 1063: -46,-9 + 1069: -42,-5 - node: color: '#FFFFFFFF' id: LoadingArea decals: 505: -21.999445,-42.990807 + 1074: -49,1 - node: angle: 3.141592653589793 rad color: '#FFFFFFFF' @@ -1674,36 +1808,6 @@ entities: 642: 29,-8 643: 29,-10 647: 29,-7 - - node: - color: '#FFFFFFFF' - id: MiniTileSteelCornerNe - decals: - 237: -30,-9 - - node: - color: '#FFFFFFFF' - id: MiniTileSteelCornerNw - decals: - 236: -31,-9 - - node: - color: '#FFFFFFFF' - id: MiniTileSteelCornerSe - decals: - 235: -30,-11 - - node: - color: '#FFFFFFFF' - id: MiniTileSteelCornerSw - decals: - 234: -31,-11 - - node: - color: '#FFFFFFFF' - id: MiniTileSteelLineE - decals: - 240: -30,-10 - - node: - color: '#FFFFFFFF' - id: MiniTileSteelLineW - decals: - 241: -31,-10 - node: color: '#951710FF' id: MiniTileWhiteLineE @@ -1712,16 +1816,6 @@ entities: 795: 34,-9 796: 34,-8 798: 34,-7 - - node: - color: '#D381C996' - id: MonoOverlay - decals: - 219: -36,-20 - 220: -34,-20 - 221: -32,-20 - 222: -36,-18 - 223: -36,-16 - 224: -36,-14 - node: color: '#D3586DFF' id: OffsetCheckerAOverlay @@ -1802,6 +1896,16 @@ entities: 669: 26,-5 732: 29,-5 739: 31,-5 + - node: + color: '#BE6BC3A6' + id: QuarterTileOverlayGreyscale + decals: + 1066: -44,-10 + - node: + color: '#724276FF' + id: QuarterTileOverlayGreyscale180 + decals: + 1036: -46,-2 - node: color: '#9D9D97FF' id: QuarterTileOverlayGreyscale180 @@ -1826,6 +1930,11 @@ entities: 731: 28,-5 736: 27,-4 744: 25,-5 + - node: + color: '#BE6BC3A6' + id: QuarterTileOverlayGreyscale90 + decals: + 1065: -46,-10 - node: color: '#FFFFFFFF' id: SpaceStationSign1 @@ -1876,6 +1985,11 @@ entities: id: ThreeQuarterTileOverlayGreyscale decals: 394: -2,-36 + - node: + color: '#BE6BC3A6' + id: ThreeQuarterTileOverlayGreyscale + decals: + 1067: -44,-4 - node: color: '#F9801DBC' id: ThreeQuarterTileOverlayGreyscale @@ -1886,6 +2000,11 @@ entities: id: ThreeQuarterTileOverlayGreyscale180 decals: 830: 17,0 + - node: + color: '#BE6BC3A6' + id: ThreeQuarterTileOverlayGreyscale180 + decals: + 1052: -42,-11 - node: color: '#37789B7F' id: ThreeQuarterTileOverlayGreyscale270 @@ -1896,6 +2015,12 @@ entities: id: ThreeQuarterTileOverlayGreyscale270 decals: 740: 30,-4 + - node: + cleanable: True + color: '#BE6BC3A6' + id: ThreeQuarterTileOverlayGreyscale270 + decals: + 1127: -47,-11 - node: color: '#F9801DBC' id: ThreeQuarterTileOverlayGreyscale270 @@ -1911,6 +2036,11 @@ entities: id: ThreeQuarterTileOverlayGreyscale90 decals: 741: 24,-1 + - node: + color: '#BE6BC3A6' + id: ThreeQuarterTileOverlayGreyscale90 + decals: + 1068: -42,-4 - node: color: '#FFFFFFFF' id: WarnBox @@ -1926,17 +2056,13 @@ entities: id: WarnCornerNE decals: 974: 64,-22 + 986: -48,-1 - node: color: '#FFFFFFFF' id: WarnCornerNW decals: 975: 62,-22 - - node: - cleanable: True - color: '#FFFFFFFF' - id: WarnCornerNW - decals: - 76: -27,-12 + 985: -52,-1 - node: color: '#FFFFFFFF' id: WarnCornerSE @@ -1958,22 +2084,7 @@ entities: color: '#FFFFFFFF' id: WarnCornerSmallNE decals: - 994: -57,-32 - - node: - color: '#FFFFFFFF' - id: WarnCornerSmallNW - decals: - 992: -55,-32 - - node: - color: '#FFFFFFFF' - id: WarnCornerSmallSE - decals: - 982: -57,-28 - - node: - color: '#FFFFFFFF' - id: WarnCornerSmallSW - decals: - 983: -55,-28 + 1196: 28,15 - node: color: '#FFFFFFFF' id: WarnEndS @@ -1988,9 +2099,8 @@ entities: 513: -47,-19 977: 64,-23 980: 64,-25 - 984: -57,-29 - 985: -57,-30 - 986: -57,-31 + 987: -48,-2 + 1195: 28,16 - node: angle: 1.5707963267948966 rad color: '#FFFFFFFF' @@ -2013,14 +2123,10 @@ entities: 512: -46,-18 965: 70,-23 981: 63,-26 - 990: -56,-28 - node: color: '#FFFFFFFF' id: WarnLineS decals: - 3: -26,-4 - 4: -26,-5 - 5: -26,-6 300: -37,5 363: -32,-51 364: -32,-50 @@ -2029,33 +2135,24 @@ entities: 510: -45,-19 978: 62,-23 979: 62,-25 - 987: -55,-31 - 988: -55,-30 - 989: -55,-29 + 988: -52,-2 - node: color: '#FFFFFFFF' id: WarnLineW decals: - 68: -31,-7 - 69: -30,-7 - 229: -32,-7 370: -37,-52 371: -38,-52 372: -39,-52 511: -46,-20 966: 70,-25 - 991: -56,-32 - - node: - cleanable: True - color: '#FFFFFFFF' - id: WarnLineW - decals: - 77: -26,-12 + 989: -51,-1 + 990: -49,-1 + 991: -50,-1 + 1194: 29,15 - node: color: '#FFFFFFFF' id: WoodTrimThinCornerNe decals: - 59: -29,-20 109: 19,5 171: -28,-24 206: -18,-2 @@ -2080,18 +2177,18 @@ entities: id: WoodTrimThinCornerSe decals: 842: 27,-31 - 866: 52,-43 905: 53,-37 906: 54,-36 + 1191: 52,-46 - node: color: '#FFFFFFFF' id: WoodTrimThinCornerSw decals: 841: 29,-31 - 874: 49,-43 904: 51,-37 907: 50,-36 957: -7,2 + 1192: 49,-46 - node: color: '#FFFFFFFF' id: WoodTrimThinEndE @@ -2110,7 +2207,6 @@ entities: 54: -10,-28 254: -53,11 255: -55,12 - 273: -33,-15 - node: color: '#FFFFFFFF' id: WoodTrimThinInnerNw @@ -2153,7 +2249,6 @@ entities: 167: -40,-18 168: -40,-17 169: -40,-16 - 272: -33,-14 348: -1,3 349: -1,4 350: -1,5 @@ -2165,13 +2260,15 @@ entities: 870: 52,-41 871: 52,-40 913: 54,-35 + 1186: 52,-43 + 1187: 52,-44 + 1188: 52,-45 - node: color: '#FFFFFFFF' id: WoodTrimThinLineN decals: 42: -14,-28 43: -9,-28 - 60: -30,-20 64: -25,-20 112: 18,5 113: 17,5 @@ -2207,7 +2304,6 @@ entities: 192: 5,-12 208: -20,-2 209: -19,-2 - 271: -32,-15 878: 50,-39 879: 51,-39 912: 52,-33 @@ -2241,9 +2337,9 @@ entities: 840: 30,-31 857: -6,-45 860: -5,-46 - 867: 51,-43 - 868: 50,-43 916: 52,-37 + 1189: 51,-46 + 1190: 50,-46 - node: color: '#FFFFFFFF' id: WoodTrimThinLineW @@ -2272,6 +2368,9 @@ entities: 914: 50,-35 954: -7,4 955: -7,3 + 1182: 49,-43 + 1183: 49,-44 + 1184: 49,-45 - node: color: '#FFFFFFFF' id: b @@ -2289,18 +2388,6 @@ entities: id: face decals: 193: -56.28215,-1.1186265 - - node: - cleanable: True - color: '#EC0300FF' - id: rune1 - decals: - 268: 27.040031,11.035053 - - node: - cleanable: True - color: '#EC0300FF' - id: rune2 - decals: - 269: 24.998365,11.045477 - node: cleanable: True color: '#18A2D5FF' @@ -2459,7 +2546,7 @@ entities: 3,2: 0: 30591 3,3: - 0: 30578 + 0: 32626 3,-1: 0: 63271 3,4: @@ -2469,11 +2556,9 @@ entities: 4,1: 0: 4095 4,2: - 0: 35071 - 2: 4096 + 0: 61695 4,3: - 0: 65288 - 2: 2 + 0: 65327 0,-5: 0: 6007 1,-4: @@ -2511,7 +2596,7 @@ entities: -8,0: 0: 30578 -8,-1: - 0: 65303 + 0: 65343 -9,0: 0: 48048 -8,1: @@ -2535,7 +2620,7 @@ entities: 0: 15 2: 40704 -7,-1: - 0: 65287 + 0: 65291 -7,3: 2: 39417 -7,4: @@ -2550,42 +2635,42 @@ entities: 0: 61007 2: 304 -6,-1: - 0: 65323 + 0: 65309 -6,3: 0: 3822 -5,4: 0: 4 2: 11 -8,-4: - 0: 36349 + 0: 3838 -9,-4: - 0: 11195 + 0: 20479 -8,-3: - 0: 65535 + 0: 62207 -9,-3: - 0: 30711 + 0: 62719 -8,-2: - 0: 30591 + 0: 65535 -9,-2: - 0: 32519 - -9,-1: 0: 65287 + -9,-1: + 0: 65295 -8,-5: - 0: 52733 + 0: 61182 -7,-4: 0: 4095 -7,-3: - 0: 25335 + 0: 47359 -7,-2: - 0: 30470 + 0: 48059 -7,-5: 0: 65535 -6,-4: 0: 28278 -6,-3: - 0: 45951 + 0: 53631 -6,-2: - 0: 49083 + 0: 57309 -6,-5: 0: 28260 -5,-5: @@ -2681,13 +2766,13 @@ entities: -8,-6: 0: 4095 -9,-6: - 0: 12287 + 0: 8191 -9,-5: - 0: 16383 + 0: 4095 -7,-7: 0: 20222 -7,-6: - 0: 16383 + 0: 8191 -7,-8: 0: 3822 -7,-9: @@ -2703,28 +2788,24 @@ entities: -5,-9: 0: 52990 -12,-1: - 0: 65303 + 0: 65382 -12,0: - 0: 3808 + 0: 3810 -13,0: - 0: 4080 + 0: 4095 -12,1: - 0: 255 - 2: 28672 + 0: 62207 -13,1: 0: 30719 -12,2: - 2: 62541 + 0: 4095 -13,2: - 2: 36544 - 0: 1 + 0: 3777 -12,3: 2: 35060 -13,3: 2: 59520 0: 51 - -11,0: - 0: 52692 -11,1: 0: 58623 -11,3: @@ -2732,7 +2813,9 @@ entities: -12,4: 2: 8 -11,-1: - 0: 65287 + 0: 65063 + -11,0: + 0: 61156 -11,2: 0: 3822 -11,4: @@ -2762,25 +2845,29 @@ entities: -13,-4: 0: 65520 -12,-3: - 0: 4080 + 0: 28640 -13,-3: - 0: 20466 + 0: 65522 -12,-2: - 0: 28791 + 0: 26214 + -13,-2: + 0: 49407 + 2: 4096 -13,-1: - 0: 65351 + 0: 65420 + 2: 1 -11,-4: - 0: 63291 + 0: 30523 -11,-3: - 0: 4080 + 0: 30708 -11,-2: - 0: 30583 + 0: 32631 -11,-5: 0: 48059 -10,-4: 0: 30567 -10,-3: - 0: 30591 + 0: 30711 -10,-2: 0: 30583 -10,-5: @@ -2973,7 +3060,7 @@ entities: -11,-15: 2: 15 -11,-14: - 2: 13107 + 2: 16179 0: 32768 -10,-15: 2: 57343 @@ -3038,11 +3125,12 @@ entities: -14,-8: 0: 65535 -16,-4: - 2: 6621 - 0: 2 + 2: 6623 -16,-5: 2: 53566 0: 2048 + -17,-4: + 2: 12 -16,-3: 2: 21777 -16,-2: @@ -3079,8 +3167,6 @@ entities: 0: 26342 -14,0: 0: 29303 - -13,-2: - 0: 28791 -16,1: 2: 62581 -16,2: @@ -3106,6 +3192,8 @@ entities: 2: 15 -13,4: 2: 15 + -17,-8: + 2: 17600 -16,-7: 2: 4369 0: 19456 @@ -3116,7 +3204,7 @@ entities: -17,-6: 2: 19652 -17,-5: - 2: 1220 + 2: 17604 -15,-7: 0: 36863 -15,-6: @@ -3131,6 +3219,7 @@ entities: 0: 61166 5,-12: 2: 15 + 0: 30464 5,-11: 0: 12279 5,-10: @@ -3239,41 +3328,40 @@ entities: 0: 58111 4,4: 0: 15 - 2: 65280 + 2: 40704 5,1: 0: 58589 5,2: - 0: 28799 + 0: 57599 5,3: - 0: 7 - 2: 44544 + 0: 65294 5,4: - 2: 16354 + 0: 15 + 2: 20224 6,1: 0: 61550 6,2: - 0: 65359 + 0: 59647 6,3: - 0: 15 - 2: 15360 + 0: 61422 6,4: - 2: 503 + 0: 15 + 2: 12032 7,1: 0: 61695 7,2: - 0: 4367 - 2: 17408 + 0: 47359 7,3: - 0: 1 - 2: 25924 + 0: 46011 7,4: - 2: 436 - 0: 64 + 0: 2187 + 2: 4864 8,1: - 0: 13926 + 0: 30310 8,2: - 0: 3 - 2: 8 + 0: 61815 + 8,3: + 0: 29149 8,-8: 0: 61166 8,-4: @@ -3359,19 +3447,23 @@ entities: 2: 192 12,-1: 0: 30583 + 8,4: + 0: 1911 9,1: 0: 4095 9,2: - 2: 4654 + 2: 3647 0: 8192 9,3: - 2: 14 + 2: 64174 + 9,4: + 2: 39417 10,1: 0: 4095 10,2: 2: 21855 10,3: - 2: 75 + 2: 1995 0: 4 11,1: 0: 819 @@ -3380,7 +3472,7 @@ entities: 2: 15291 0: 32768 11,3: - 2: 15 + 2: 63 12,0: 0: 119 2: 32768 @@ -3422,8 +3514,8 @@ entities: 11,-13: 2: 25584 12,-12: - 2: 171 - 0: 57344 + 2: 11 + 0: 60928 12,-11: 0: 65262 12,-9: @@ -3482,7 +3574,7 @@ entities: 0: 1 2: 8 4,5: - 2: 7 + 2: 15 5,-14: 2: 33332 0: 28674 @@ -3555,10 +3647,10 @@ entities: 12,-10: 0: 58094 13,-12: - 0: 28672 - 2: 174 + 0: 29952 + 2: 14 13,-11: - 0: 63255 + 0: 63253 13,-10: 0: 61567 13,-13: @@ -3587,8 +3679,16 @@ entities: 15,-13: 0: 4368 2: 49152 - 8,4: - 2: 17 + 5,5: + 2: 15 + 6,5: + 2: 15 + 7,5: + 2: 3663 + 8,5: + 2: 4031 + 9,5: + 2: 335 17,-8: 2: 65296 17,-7: @@ -3598,7 +3698,7 @@ entities: 17,-5: 2: 8176 18,-8: - 2: 29440 + 2: 32512 18,-7: 0: 12544 2: 32974 @@ -3606,11 +3706,15 @@ entities: 0: 307 2: 49280 18,-5: - 2: 894 + 2: 3966 + 19,-8: + 2: 4352 19,-7: - 2: 4368 + 2: 4369 19,-6: 2: 4369 + 19,-5: + 2: 273 -9,-18: 2: 61166 -9,-19: @@ -3843,6 +3947,25 @@ entities: - 841 - 10322 - 1914 + - uid: 2275 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.5,-7.5 + parent: 34 + - type: DeviceList + devices: + - 9844 + - 9822 + - 9800 + - 9265 + - 5927 + - 5914 + - 9824 + - 9845 + - 12212 + - 2113 + - 9276 - uid: 2349 components: - type: Transform @@ -3869,17 +3992,8 @@ entities: parent: 34 - type: DeviceList devices: - - 6087 - - 10248 - - 10311 - - 10312 - 9297 - 9799 - - 11252 - - 11253 - - 10301 - - 10302 - - 5925 - uid: 2410 components: - type: Transform @@ -4210,15 +4324,12 @@ entities: devices: - 180 - 11251 - - 10315 - - 10316 - 10317 - 2309 - 1952 - 2714 - 1953 - 8440 - - 617 - 9469 - 11905 - uid: 10547 @@ -4273,35 +4384,6 @@ entities: - 10552 - 10553 - 11517 - - uid: 10567 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -32.5,-6.5 - parent: 34 - - type: DeviceList - devices: - - 9766 - - 9234 - - 9307 - - 9764 - - 10564 - - 10565 - - 10566 - - uid: 10568 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -33.5,-16.5 - parent: 34 - - type: DeviceList - devices: - - 9201 - - 617 - - 10563 - - 9308 - - 9765 - - 11274 - uid: 10569 components: - type: Transform @@ -4310,12 +4392,12 @@ entities: parent: 34 - type: DeviceList devices: - - 9445 - - 10315 - - 10316 + - 1052 + - 1163 + - 600 - 9182 - - 10564 - - 10563 + - 14769 + - 14770 - uid: 10570 components: - type: Transform @@ -4336,7 +4418,6 @@ entities: - 10304 - 10302 - 10301 - - 10566 - 8700 - 7981 - 7973 @@ -4496,7 +4577,6 @@ entities: devices: - 7772 - 1818 - - 12977 - 11813 - uid: 11816 components: @@ -4533,6 +4613,18 @@ entities: - 4957 - 12360 - 12855 + - uid: 12332 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,-6.5 + parent: 34 + - type: DeviceList + devices: + - 10836 + - 10946 + - 10953 + - 10948 - uid: 12426 components: - type: Transform @@ -4684,6 +4776,20 @@ entities: - 14281 - 14279 - 14280 + - uid: 14538 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,13.5 + parent: 34 + - type: DeviceList + devices: + - 14588 + - 14589 + - 14577 + - 14578 + - 14576 + - 14575 - proto: AirCanister entities: - uid: 1799 @@ -4703,20 +4809,10 @@ entities: parent: 34 - proto: Airlock entities: - - uid: 2219 - components: - - type: Transform - pos: -49.5,-2.5 - parent: 34 - - uid: 2224 - components: - - type: Transform - pos: -47.5,-2.5 - parent: 34 - - uid: 2239 + - uid: 494 components: - type: Transform - pos: -49.5,-8.5 + pos: 17.5,13.5 parent: 34 - uid: 4169 components: @@ -4801,6 +4897,12 @@ entities: - type: Transform pos: 41.5,-28.5 parent: 34 + - uid: 14646 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 53.5,-44.5 + parent: 34 - proto: AirlockCargoGlassLocked entities: - uid: 625 @@ -4843,12 +4945,11 @@ entities: parent: 34 - proto: AirlockChapelLocked entities: - - uid: 551 + - uid: 603 components: - - type: MetaData - name: golemancer's room - type: Transform - pos: -30.5,-14.5 + rot: 3.141592653589793 rad + pos: -31.5,-14.5 parent: 34 - proto: AirlockChemistryLocked entities: @@ -5130,8 +5231,6 @@ entities: parent: 34 - type: DeviceLinkSink invokeCounter: 1 - links: - - 1429 - type: DeviceLinkSource linkedPorts: 1429: @@ -5143,8 +5242,6 @@ entities: parent: 34 - type: DeviceLinkSink invokeCounter: 1 - links: - - 124 - type: DeviceLinkSource linkedPorts: 124: @@ -5156,8 +5253,6 @@ entities: parent: 34 - type: DeviceLinkSink invokeCounter: 1 - links: - - 102 - type: DeviceLinkSource linkedPorts: 102: @@ -5169,8 +5264,6 @@ entities: parent: 34 - type: DeviceLinkSink invokeCounter: 1 - links: - - 94 - type: DeviceLinkSource linkedPorts: 94: @@ -5182,8 +5275,6 @@ entities: parent: 34 - type: DeviceLinkSink invokeCounter: 1 - links: - - 3561 - type: DeviceLinkSource linkedPorts: 3561: @@ -5195,8 +5286,6 @@ entities: parent: 34 - type: DeviceLinkSink invokeCounter: 1 - links: - - 1438 - type: DeviceLinkSource linkedPorts: 1438: @@ -5208,8 +5297,6 @@ entities: parent: 34 - type: DeviceLinkSink invokeCounter: 1 - links: - - 11454 - type: DeviceLinkSource linkedPorts: 11454: @@ -5221,8 +5308,6 @@ entities: parent: 34 - type: DeviceLinkSink invokeCounter: 1 - links: - - 11035 - type: DeviceLinkSource linkedPorts: 11035: @@ -5236,8 +5321,6 @@ entities: parent: 34 - type: DeviceLinkSink invokeCounter: 1 - links: - - 13832 - type: DeviceLinkSource linkedPorts: 13833: @@ -5249,8 +5332,6 @@ entities: parent: 34 - type: DeviceLinkSink invokeCounter: 1 - links: - - 13833 - type: DeviceLinkSource linkedPorts: 13832: @@ -5262,8 +5343,6 @@ entities: parent: 34 - type: DeviceLinkSink invokeCounter: 1 - links: - - 13833 - type: DeviceLinkSource linkedPorts: 13832: @@ -5275,8 +5354,6 @@ entities: parent: 34 - type: DeviceLinkSink invokeCounter: 1 - links: - - 13832 - type: DeviceLinkSource linkedPorts: 13833: @@ -5290,8 +5367,6 @@ entities: parent: 34 - type: DeviceLinkSink invokeCounter: 1 - links: - - 5531 - type: DeviceLinkSource linkedPorts: 5531: @@ -5303,8 +5378,6 @@ entities: parent: 34 - type: DeviceLinkSink invokeCounter: 1 - links: - - 5530 - type: DeviceLinkSource linkedPorts: 5530: @@ -5314,10 +5387,6 @@ entities: - type: Transform pos: -25.5,6.5 parent: 34 - - type: DeviceLinkSink - links: - - 7072 - - 7071 - type: DeviceLinkSource linkedPorts: 7071: @@ -5329,9 +5398,6 @@ entities: - type: Transform pos: -24.5,8.5 parent: 34 - - type: DeviceLinkSink - links: - - 7070 - type: DeviceLinkSource linkedPorts: 7070: @@ -5341,9 +5407,6 @@ entities: - type: Transform pos: -27.5,8.5 parent: 34 - - type: DeviceLinkSink - links: - - 7070 - type: DeviceLinkSource linkedPorts: 7070: @@ -5358,9 +5421,6 @@ entities: - type: Transform pos: 34.5,-43.5 parent: 34 - - type: DeviceLinkSink - links: - - 9348 - type: DeviceLinkSource linkedPorts: 9348: @@ -5370,21 +5430,12 @@ entities: - type: Transform pos: 36.5,-46.5 parent: 34 - - type: DeviceLinkSink - links: - - 9347 - type: DeviceLinkSource linkedPorts: 9347: - DoorStatus: DoorBolt - proto: AirlockExternalGlassShuttleEmergencyLocked entities: - - uid: 3360 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,20.5 - parent: 34 - uid: 5258 components: - type: Transform @@ -5426,6 +5477,12 @@ entities: parent: 34 - proto: AirlockExternalGlassShuttleLocked entities: + - uid: 539 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,20.5 + parent: 34 - uid: 1076 components: - type: Transform @@ -5550,6 +5607,16 @@ entities: rot: -1.5707963267948966 rad pos: 7.5,-48.5 parent: 34 + - uid: 4968 + components: + - type: Transform + pos: 24.5,16.5 + parent: 34 + - uid: 4985 + components: + - type: Transform + pos: 24.5,14.5 + parent: 34 - uid: 5002 components: - type: MetaData @@ -5557,6 +5624,18 @@ entities: - type: Transform pos: 15.5,4.5 parent: 34 + - uid: 6201 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,14.5 + parent: 34 + - uid: 6529 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,16.5 + parent: 34 - uid: 7177 components: - type: MetaData @@ -5571,6 +5650,12 @@ entities: - type: Transform pos: -38.5,-14.5 parent: 34 + - uid: 7381 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -27.5,-20.5 + parent: 34 - uid: 7580 components: - type: MetaData @@ -5583,6 +5668,16 @@ entities: - type: Transform pos: 28.5,-25.5 parent: 34 + - uid: 10480 + components: + - type: Transform + pos: -31.5,-2.5 + parent: 34 + - uid: 10533 + components: + - type: Transform + pos: -30.5,-2.5 + parent: 34 - uid: 11782 components: - type: Transform @@ -5681,6 +5776,13 @@ entities: - type: Transform pos: 9.5,4.5 parent: 34 +- proto: AirlockLibraryLocked + entities: + - uid: 10621 + components: + - type: Transform + pos: -32.5,-8.5 + parent: 34 - proto: AirlockMaintAtmoLocked entities: - uid: 12538 @@ -5700,6 +5802,13 @@ entities: - type: Transform pos: -21.5,-38.5 parent: 34 +- proto: AirlockMaintChapelLocked + entities: + - uid: 504 + components: + - type: Transform + pos: -33.5,-12.5 + parent: 34 - proto: AirlockMaintChiefJusticeLocked entities: - uid: 1356 @@ -5763,10 +5872,10 @@ entities: parent: 34 - proto: AirlockMaintHydroLocked entities: - - uid: 383 + - uid: 381 components: - type: Transform - pos: -21.5,-5.5 + pos: -22.5,-5.5 parent: 34 - proto: AirlockMaintJanitorLocked entities: @@ -5782,6 +5891,18 @@ entities: - type: Transform pos: 8.5,9.5 parent: 34 +- proto: AirlockMaintLibraryLocked + entities: + - uid: 9757 + components: + - type: Transform + pos: -30.5,-9.5 + parent: 34 + - uid: 9765 + components: + - type: Transform + pos: -33.5,-9.5 + parent: 34 - proto: AirlockMaintLocked entities: - uid: 19 @@ -5819,15 +5940,11 @@ entities: - type: Transform pos: -20.5,-11.5 parent: 34 - - uid: 2742 - components: - - type: Transform - pos: -22.5,-2.5 - parent: 34 - - uid: 4984 + - uid: 2757 components: - type: Transform - pos: 19.5,10.5 + rot: 3.141592653589793 rad + pos: 27.5,10.5 parent: 34 - uid: 5675 components: @@ -5844,6 +5961,11 @@ entities: - type: Transform pos: 0.5,9.5 parent: 34 + - uid: 6603 + components: + - type: Transform + pos: -36.5,-10.5 + parent: 34 - uid: 7148 components: - type: Transform @@ -5884,11 +6006,6 @@ entities: - type: Transform pos: -40.5,-22.5 parent: 34 - - uid: 11286 - components: - - type: Transform - pos: 26.5,9.5 - parent: 34 - uid: 11305 components: - type: MetaData @@ -5901,6 +6018,12 @@ entities: - type: Transform pos: 34.5,-38.5 parent: 34 + - uid: 12334 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,-2.5 + parent: 34 - uid: 12370 components: - type: Transform @@ -5911,10 +6034,21 @@ entities: - type: Transform pos: 8.5,12.5 parent: 34 - - uid: 14060 + - uid: 13827 components: - type: Transform - pos: -52.5,-10.5 + rot: -1.5707963267948966 rad + pos: -46.5,6.5 + parent: 34 + - uid: 14361 + components: + - type: Transform + pos: 33.5,11.5 + parent: 34 + - uid: 14410 + components: + - type: Transform + pos: 32.5,14.5 parent: 34 - proto: AirlockMaintMedLocked entities: @@ -5942,20 +6076,19 @@ entities: - type: Transform pos: 17.5,-31.5 parent: 34 -- proto: AirlockMaintReporterLocked +- proto: AirlockMaintResearchDirectorLocked entities: - - uid: 5535 + - uid: 2192 components: - type: Transform - rot: 3.141592653589793 rad pos: -52.5,-13.5 parent: 34 - proto: AirlockMaintRnDLocked entities: - - uid: 457 + - uid: 259 components: - type: Transform - pos: -24.5,-10.5 + pos: -52.5,-10.5 parent: 34 - uid: 5673 components: @@ -6016,11 +6149,6 @@ entities: - type: Transform pos: -2.5,-32.5 parent: 34 - - uid: 6525 - components: - - type: Transform - pos: 15.5,16.5 - parent: 34 - proto: AirlockMedicalGlassLocked entities: - uid: 1338 @@ -6033,9 +6161,6 @@ entities: - type: Transform pos: 1.5,-33.5 parent: 34 - - type: DeviceLinkSink - links: - - 13840 - uid: 2982 components: - type: Transform @@ -6103,20 +6228,26 @@ entities: - type: Transform pos: -14.5,-37.5 parent: 34 +- proto: AirlockReporterGlassLocked + entities: + - uid: 390 + components: + - type: Transform + pos: -35.5,-20.5 + parent: 34 - proto: AirlockReporterLocked entities: - - uid: 5218 + - uid: 8237 components: - type: Transform - rot: 3.141592653589793 rad - pos: -50.5,-11.5 + pos: -31.5,-18.5 parent: 34 - proto: AirlockResearchDirectorLocked entities: - - uid: 555 + - uid: 461 components: - type: Transform - pos: -32.5,-5.5 + pos: -50.5,-11.5 parent: 34 - proto: AirlockSalvageGlassLocked entities: @@ -6131,56 +6262,51 @@ entities: - type: Transform pos: -13.5,-34.5 parent: 34 -- proto: AirlockScienceGlass +- proto: AirlockScienceGlassLocked entities: - - uid: 545 + - uid: 2247 components: - type: Transform - pos: -27.5,-20.5 + pos: -42.5,-2.5 parent: 34 - - uid: 546 + - uid: 7123 components: - type: Transform - pos: -26.5,-20.5 + pos: -40.5,-10.5 parent: 34 -- proto: AirlockScienceGlassLocked - entities: - - uid: 586 + - uid: 9272 components: - - type: MetaData - name: locker room - type: Transform - pos: -32.5,-10.5 + rot: 1.5707963267948966 rad + pos: -41.5,-11.5 + parent: 34 + - uid: 14066 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -48.5,-2.5 parent: 34 - proto: AirlockScienceLocked entities: - - uid: 541 + - uid: 2112 components: - - type: MetaData - name: epistemics front - type: Transform - pos: -34.5,-12.5 + pos: -43.5,-0.5 parent: 34 - - uid: 549 + - uid: 2197 components: - - type: MetaData - name: epistemics front - type: Transform - pos: -30.5,-18.5 + pos: -46.5,-5.5 parent: 34 - - uid: 589 + - uid: 2210 components: - - type: MetaData - name: epistemics - type: Transform - pos: -28.5,-12.5 + pos: -45.5,-5.5 parent: 34 - - uid: 5063 + - uid: 4886 components: - - type: MetaData - name: epistemics - type: Transform - pos: -31.5,-2.5 + pos: -47.5,-9.5 parent: 34 - uid: 5920 components: @@ -6189,15 +6315,10 @@ entities: - type: Transform pos: -37.5,0.5 parent: 34 - - uid: 6399 - components: - - type: Transform - pos: -36.5,-11.5 - parent: 34 - - uid: 11427 + - uid: 8890 components: - type: Transform - pos: -40.5,-12.5 + pos: -46.5,0.5 parent: 34 - proto: AirlockSecurity entities: @@ -6330,7 +6451,7 @@ entities: pos: 18.5,-7.5 parent: 34 - type: Door - secondsUntilStateChange: -22738.076 + secondsUntilStateChange: -95166.82 state: Opening - type: DeviceLinkSource lastSignals: @@ -6382,9 +6503,6 @@ entities: parent: 34 - type: DeviceLinkSink invokeCounter: 2 - links: - - 12927 - - 4532 - type: DeviceLinkSource linkedPorts: 4532: @@ -6405,8 +6523,6 @@ entities: parent: 34 - type: DeviceLinkSink invokeCounter: 2 - links: - - 3582 - type: DeviceLinkSource linkedPorts: 3582: @@ -6485,6 +6601,15 @@ entities: - type: DeviceNetwork deviceLists: - 5244 + - uid: 9276 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -45.5,-6.5 + parent: 34 + - type: DeviceNetwork + deviceLists: + - 2275 - uid: 11095 components: - type: Transform @@ -6528,12 +6653,19 @@ entities: - type: DeviceNetwork deviceLists: - 13836 +- proto: AltarConvertMaint + entities: + - uid: 14138 + components: + - type: Transform + pos: 21.5,-45.5 + parent: 34 - proto: AltarSpawner entities: - - uid: 38 + - uid: 568 components: - type: Transform - pos: -26.5,-13.5 + pos: -27.5,-13.5 parent: 34 - uid: 12992 components: @@ -6592,7 +6724,7 @@ entities: - uid: 2508 components: - type: MetaData - name: Dorm's APC + name: Epistemics APC - type: Transform rot: 1.5707963267948966 rad pos: -44.5,-5.5 @@ -6619,14 +6751,6 @@ entities: - type: Transform pos: -12.5,-23.5 parent: 34 - - uid: 2809 - components: - - type: MetaData - name: Church's APC - - type: Transform - rot: 1.5707963267948966 rad - pos: -30.5,-16.5 - parent: 34 - uid: 2810 components: - type: MetaData @@ -6645,7 +6769,7 @@ entities: - uid: 2850 components: - type: MetaData - name: Epistemic's APC + name: Library APC - type: Transform rot: 1.5707963267948966 rad pos: -32.5,-7.5 @@ -6677,7 +6801,7 @@ entities: - uid: 3225 components: - type: MetaData - name: Robotics + Reporter APC + name: Robotics APC - type: Transform rot: 1.5707963267948966 rad pos: -47.5,-12.5 @@ -6807,8 +6931,6 @@ entities: parent: 34 - type: Apc hasAccess: True - lastExternalState: Good - lastChargeState: Full - uid: 7427 components: - type: MetaData @@ -6869,6 +6991,14 @@ entities: rot: 3.141592653589793 rad pos: 6.5,-38.5 parent: 34 + - uid: 11286 + components: + - type: MetaData + name: Chapel / Reporter APC + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,-16.5 + parent: 34 - uid: 11434 components: - type: MetaData @@ -6892,14 +7022,6 @@ entities: rot: 1.5707963267948966 rad pos: -4.5,7.5 parent: 34 - - uid: 13129 - components: - - type: MetaData - name: Public cryo's APC - - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,13.5 - parent: 34 - uid: 13309 components: - type: MetaData @@ -6913,6 +7035,14 @@ entities: - type: Transform pos: 17.5,2.5 parent: 34 + - uid: 14495 + components: + - type: MetaData + name: Cryo / Dorms APC + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,12.5 + parent: 34 - proto: APCHighCapacity entities: - uid: 1222 @@ -6965,7 +7095,7 @@ entities: - uid: 7708 components: - type: MetaData - name: Epistemic/service's maintenace APC + name: Service's Maintenance APC - type: Transform pos: -21.5,-9.5 parent: 34 @@ -6976,15 +7106,21 @@ entities: - type: Transform pos: 36.5,-10.5 parent: 34 -- proto: AppraisalTool +- proto: AppleSeeds entities: - - uid: 895 + - uid: 13505 components: - type: Transform - parent: 431 - - type: Physics - canCollide: False - - type: InsideEntityStorage + rot: -1.5707963267948966 rad + pos: -49.74155,9.277927 + parent: 34 +- proto: ArtifactFragment1 + entities: + - uid: 7138 + components: + - type: Transform + pos: -43.596626,-7.020811 + parent: 34 - proto: Ashtray entities: - uid: 280 @@ -6992,94 +7128,104 @@ entities: - type: Transform pos: 34.77097,-0.1909771 parent: 34 -- proto: AtmosDeviceFanTiny +- proto: AtmosDeviceFanDirectional entities: - - uid: 84 + - uid: 676 components: - type: Transform - pos: -11.5,-5.5 + pos: 12.5,-49.5 parent: 34 - - uid: 232 + - uid: 710 components: - type: Transform - pos: -13.5,-2.5 + pos: -18.5,-43.5 parent: 34 - - uid: 676 + - uid: 910 components: - type: Transform - pos: 12.5,-49.5 + rot: 3.141592653589793 rad + pos: 12.5,20.5 parent: 34 - - uid: 888 + - uid: 937 components: - type: Transform - pos: -15.5,-5.5 + pos: -1.5,-55.5 parent: 34 - - uid: 2545 + - uid: 1909 components: - type: Transform - pos: -20.5,-43.5 + pos: -3.5,-55.5 parent: 34 - - uid: 3291 + - uid: 1910 components: - type: Transform - pos: 12.5,20.5 + pos: 4.5,-55.5 parent: 34 - - uid: 4071 + - uid: 1992 components: - type: Transform - pos: -1.5,-55.5 + pos: 6.5,-55.5 parent: 34 - - uid: 4072 + - uid: 2078 components: - type: Transform - pos: -3.5,-55.5 + rot: 3.141592653589793 rad + pos: 6.5,20.5 parent: 34 - - uid: 4452 + - uid: 2291 components: - type: Transform - pos: 13.5,-48.5 + pos: -20.5,-43.5 parent: 34 - - uid: 5262 + - uid: 2545 components: - type: Transform - pos: 4.5,-55.5 + rot: 3.141592653589793 rad + pos: -3.5,15.5 parent: 34 - - uid: 5263 + - uid: 3291 components: - type: Transform - pos: 6.5,-55.5 + pos: 60.5,-50.5 parent: 34 - - uid: 6225 + - uid: 3360 components: - type: Transform - pos: 6.5,20.5 + pos: 58.5,-50.5 parent: 34 - - uid: 7552 + - uid: 14711 components: - type: Transform - pos: -18.5,-43.5 + rot: 3.141592653589793 rad + pos: 0.5,15.5 parent: 34 - - uid: 11917 + - uid: 14724 components: - type: Transform - pos: -3.5,15.5 + rot: -1.5707963267948966 rad + pos: 60.5,-23.5 parent: 34 - - uid: 11918 +- proto: AtmosDeviceFanTiny + entities: + - uid: 84 components: - type: Transform - pos: 0.5,15.5 + pos: -11.5,-5.5 parent: 34 - - uid: 14129 + - uid: 232 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 58.5,-50.5 + pos: -13.5,-2.5 parent: 34 - - uid: 14130 + - uid: 888 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 60.5,-50.5 + pos: -15.5,-5.5 + parent: 34 + - uid: 4452 + components: + - type: Transform + pos: 13.5,-48.5 parent: 34 - proto: AtmosFixBlockerMarker entities: @@ -7439,6 +7585,11 @@ entities: - type: Transform pos: 43.5,-42.5 parent: 34 + - uid: 14431 + components: + - type: Transform + pos: 32.5,14.5 + parent: 34 - proto: BarricadeDirectional entities: - uid: 12798 @@ -7477,6 +7628,12 @@ entities: rot: -1.5707963267948966 rad pos: -9.5,9.5 parent: 34 + - uid: 14684 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,13.5 + parent: 34 - proto: BarSignMaidCafe entities: - uid: 13226 @@ -7507,6 +7664,14 @@ entities: rot: 3.141592653589793 rad pos: -5.5,-49.5 parent: 34 +- proto: BaseComputer + entities: + - uid: 9768 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.5,-7.5 + parent: 34 - proto: BaseGasCondenser entities: - uid: 70 @@ -7533,20 +7698,20 @@ entities: - data: null ReagentId: TableSalt Quantity: 25 - - uid: 2026 + - uid: 2265 components: - type: Transform - pos: -32.81829,-17.205612 + pos: -43.380802,-5.7486744 parent: 34 - - uid: 11106 + - uid: 9259 components: - type: Transform - pos: -20.759005,-3.1052136 + pos: -43.615177,-5.6392994 parent: 34 - - uid: 11701 + - uid: 9717 components: - type: Transform - pos: -32.703705,-17.351547 + pos: -17.029264,-8.471251 parent: 34 - uid: 12444 components: @@ -7560,6 +7725,11 @@ entities: - type: Transform pos: 34.5,2.5 parent: 34 + - uid: 592 + components: + - type: Transform + pos: -32.5,-13.5 + parent: 34 - uid: 673 components: - type: Transform @@ -7575,40 +7745,20 @@ entities: - type: Transform pos: -15.5,-38.5 parent: 34 - - uid: 2174 - components: - - type: Transform - pos: -45.5,-6.5 - parent: 34 - - uid: 2203 - components: - - type: Transform - pos: -47.5,-6.5 - parent: 34 - - uid: 2220 - components: - - type: Transform - pos: -45.5,-3.5 - parent: 34 - - uid: 2244 - components: - - type: Transform - pos: -46.5,2.5 - parent: 34 - - uid: 2245 + - uid: 2098 components: - type: Transform - pos: -51.5,2.5 + pos: -48.5,-12.5 parent: 34 - - uid: 2249 + - uid: 2264 components: - type: Transform - pos: -49.5,-6.5 + pos: 19.5,12.5 parent: 34 - - uid: 3357 + - uid: 3299 components: - type: Transform - pos: -31.5,-15.5 + pos: 21.5,11.5 parent: 34 - uid: 3624 components: @@ -7670,6 +7820,11 @@ entities: - type: Transform pos: -17.5,-32.5 parent: 34 + - uid: 4938 + components: + - type: Transform + pos: 23.5,11.5 + parent: 34 - uid: 5949 components: - type: Transform @@ -7695,6 +7850,11 @@ entities: - type: Transform pos: 31.5,-36.5 parent: 34 + - uid: 9771 + components: + - type: Transform + pos: -33.5,-7.5 + parent: 34 - uid: 11809 components: - type: Transform @@ -7707,22 +7867,17 @@ entities: parent: 34 - proto: BedsheetBlack entities: - - uid: 2227 + - uid: 538 components: - type: Transform - pos: -45.5,-3.5 + rot: 1.5707963267948966 rad + pos: -32.5,-13.5 parent: 34 - uid: 3186 components: - type: Transform pos: 9.5,-5.5 parent: 34 - - uid: 3358 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -31.5,-15.5 - parent: 34 - proto: BedsheetBrigmedic entities: - uid: 8906 @@ -7780,10 +7935,10 @@ entities: parent: 34 - proto: BedsheetIan entities: - - uid: 2205 + - uid: 4965 components: - type: Transform - pos: -47.5,-6.5 + pos: 21.5,11.5 parent: 34 - proto: BedsheetMedical entities: @@ -7851,6 +8006,20 @@ entities: rot: 1.5707963267948966 rad pos: -15.5,-38.5 parent: 34 +- proto: BedsheetRainbow + entities: + - uid: 2262 + components: + - type: Transform + pos: 19.5,12.5 + parent: 34 +- proto: BedsheetRD + entities: + - uid: 2096 + components: + - type: Transform + pos: -48.5,-12.5 + parent: 34 - proto: BedsheetRed entities: - uid: 4522 @@ -7865,11 +8034,6 @@ entities: - type: Transform pos: 48.5,-7.5 parent: 34 - - uid: 2256 - components: - - type: Transform - pos: -49.5,-6.5 - parent: 34 - uid: 4744 components: - type: Transform @@ -7880,20 +8044,15 @@ entities: - type: Transform pos: 48.5,-10.5 parent: 34 - - uid: 5856 - components: - - type: Transform - pos: -51.5,2.5 - parent: 34 - - uid: 5857 + - uid: 6051 components: - type: Transform - pos: -46.5,2.5 + pos: 47.5,-44.5 parent: 34 - - uid: 6051 + - uid: 9797 components: - type: Transform - pos: 47.5,-44.5 + pos: -33.5,-7.5 parent: 34 - uid: 10137 components: @@ -7912,10 +8071,11 @@ entities: parent: 34 - proto: BedsheetWiz entities: - - uid: 2204 + - uid: 7151 components: - type: Transform - pos: -45.5,-6.5 + rot: 1.5707963267948966 rad + pos: 23.5,11.5 parent: 34 - proto: BenchSofaCorpLeft entities: @@ -8000,6 +8160,12 @@ entities: - type: Transform pos: 8.5,18.5 parent: 34 + - uid: 13106 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,18.5 + parent: 34 - proto: BenchSteelMiddle entities: - uid: 3876 @@ -8014,6 +8180,12 @@ entities: - type: Transform pos: 10.5,18.5 parent: 34 + - uid: 13111 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,17.5 + parent: 34 - proto: BiomassReclaimer entities: - uid: 8965 @@ -8023,63 +8195,48 @@ entities: parent: 34 - proto: BlastDoor entities: - - uid: 836 - components: - - type: Transform - pos: -26.5,-6.5 - parent: 34 - - type: DeviceLinkSink - links: - - 1163 - uid: 1484 components: - type: Transform pos: -51.5,-47.5 parent: 34 - - type: DeviceLinkSink - links: - - 678 - - 679 - uid: 7707 components: - type: Transform pos: -17.5,-43.5 parent: 34 - - type: DeviceLinkSink - links: - - 1054 - uid: 11806 components: - type: Transform pos: -21.5,-43.5 parent: 34 - - type: DeviceLinkSink - links: - - 1054 - uid: 12295 components: - type: Transform pos: -60.5,-40.5 parent: 34 - - type: DeviceLinkSink - links: - - 234 - uid: 12300 components: - type: Transform pos: -60.5,-39.5 parent: 34 - - type: DeviceLinkSink - links: - - 234 - uid: 12306 components: - type: Transform pos: -60.5,-38.5 parent: 34 - - type: DeviceLinkSink - links: - - 234 +- proto: BlastDoorUnlinkedEpistemics + entities: + - uid: 2211 + components: + - type: Transform + pos: -50.5,-4.5 + parent: 34 + - uid: 2232 + components: + - type: Transform + pos: -50.5,-3.5 + parent: 34 - proto: Bloodpack entities: - uid: 618 @@ -8099,6 +8256,13 @@ entities: - type: Transform pos: -19.61977,7.4961514 parent: 34 +- proto: BoardGameSpawner + entities: + - uid: 10478 + components: + - type: Transform + pos: -34.5,-5.5 + parent: 34 - proto: Bonfire entities: - uid: 6029 @@ -8113,18 +8277,6 @@ entities: - type: Transform pos: 3.541511,-3.4283895 parent: 34 -- proto: BookChefGaming - entities: - - uid: 1107 - components: - - type: Transform - pos: -7.497657,-4.2298393 - parent: 34 - - uid: 4686 - components: - - type: Transform - pos: 40.427826,3.5490375 - parent: 34 - proto: BookEngineersHandbook entities: - uid: 11040 @@ -8137,13 +8289,17 @@ entities: - type: Transform pos: -28.716812,-29.284609 parent: 34 -- proto: BookLeafLoversSecret +- proto: BookHowToCookForFortySpaceman entities: - - uid: 11380 + - uid: 1107 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -20.560392,-3.8160172 + pos: -7.497657,-4.2298393 + parent: 34 + - uid: 4686 + components: + - type: Transform + pos: 40.427826,3.5490375 parent: 34 - proto: BookRandom entities: @@ -8157,12 +8313,20 @@ entities: - type: Transform pos: 52.765053,-31.381863 parent: 34 +- proto: BookRandomStory + entities: + - uid: 9848 + components: + - type: Transform + pos: -35.702923,-7.408367 + parent: 34 - proto: BookScientistsGuidebook entities: - - uid: 11050 + - uid: 7124 components: - type: Transform - pos: -35.70542,-5.4355335 + rot: -1.5707963267948966 rad + pos: -50.832577,-14.678291 parent: 34 - proto: BookSecurity entities: @@ -8171,20 +8335,13 @@ entities: - type: Transform pos: 23.521662,-11.245161 parent: 34 -- proto: Bookshelf +- proto: BookshelfFilled entities: - - uid: 2172 - components: - - type: Transform - pos: -41.5,-7.5 - parent: 34 - - uid: 2243 + - uid: 2297 components: - type: Transform - pos: -45.5,2.5 + pos: -33.5,-3.5 parent: 34 -- proto: BookshelfFilled - entities: - uid: 3473 components: - type: Transform @@ -8200,6 +8357,31 @@ entities: - type: Transform pos: 50.5,1.5 parent: 34 + - uid: 10243 + components: + - type: Transform + pos: -35.5,-3.5 + parent: 34 + - uid: 10413 + components: + - type: Transform + pos: -32.5,-3.5 + parent: 34 + - uid: 10993 + components: + - type: Transform + pos: -26.5,-8.5 + parent: 34 + - uid: 11210 + components: + - type: Transform + pos: -26.5,-6.5 + parent: 34 + - uid: 11267 + components: + - type: Transform + pos: -26.5,-7.5 + parent: 34 - uid: 12287 components: - type: Transform @@ -8215,6 +8397,20 @@ entities: - type: Transform pos: -5.5,2.5 parent: 34 +- proto: BookSpaceEncyclopedia + entities: + - uid: 10315 + components: + - type: Transform + pos: -35.499798,-7.298992 + parent: 34 +- proto: BookWorld + entities: + - uid: 10441 + components: + - type: Transform + pos: -35.374798,-7.455242 + parent: 34 - proto: BoozeDispenser entities: - uid: 341 @@ -8228,16 +8424,16 @@ entities: rot: 3.141592653589793 rad pos: -9.5,7.5 parent: 34 - - uid: 8493 + - uid: 4859 components: - type: Transform - pos: -9.5,-40.5 + rot: 3.141592653589793 rad + pos: 50.5,-45.5 parent: 34 - - uid: 13407 + - uid: 8493 components: - type: Transform - rot: 3.141592653589793 rad - pos: 50.5,-44.5 + pos: -9.5,-40.5 parent: 34 - proto: BorgCharger entities: @@ -8252,6 +8448,12 @@ entities: rot: -1.5707963267948966 rad pos: -25.5,-27.5 parent: 34 + - uid: 3862 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,16.5 + parent: 34 - uid: 6227 components: - type: Transform @@ -8292,17 +8494,26 @@ entities: - type: Transform pos: 11.331081,-40.243954 parent: 34 -- proto: BoxCardboard +- proto: BoxCandle entities: - - uid: 1909 + - uid: 555 components: - type: Transform - pos: -7.574397,-24.33654 + pos: -35.65426,-15.4819355 parent: 34 - - uid: 1910 +- proto: BoxCandleSmall + entities: + - uid: 589 components: - type: Transform - pos: -7.2759867,-24.45904 + pos: -35.27926,-15.4663105 + parent: 34 +- proto: BoxCardboard + entities: + - uid: 14494 + components: + - type: Transform + pos: 28.520721,7.3454976 parent: 34 - proto: BoxColoredLighttube entities: @@ -8311,6 +8522,23 @@ entities: - type: Transform pos: 6.7010136,-18.662865 parent: 34 +- proto: BoxEnvelope + entities: + - uid: 4071 + components: + - type: Transform + pos: -7.664628,-24.3172 + parent: 34 + - uid: 4072 + components: + - type: Transform + pos: -7.508378,-24.489075 + parent: 34 + - uid: 14745 + components: + - type: Transform + pos: -7.289628,-24.301575 + parent: 34 - proto: BoxFolderBase entities: - uid: 3542 @@ -8361,13 +8589,6 @@ entities: rot: -1.5707963267948966 rad pos: 19.551626,-37.77035 parent: 34 -- proto: BoxFolderGrey - entities: - - uid: 2259 - components: - - type: Transform - pos: -51.26105,-6.396988 - parent: 34 - proto: BoxFolderRed entities: - uid: 872 @@ -8515,6 +8736,12 @@ entities: rot: -1.5707963267948966 rad pos: 38.79563,-45.12072 parent: 34 + - uid: 14474 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.649475,9.763958 + parent: 34 - proto: Brutepack entities: - uid: 1366 @@ -8561,6 +8788,12 @@ entities: parent: 34 - proto: ButtonFrameCaution entities: + - uid: 2039 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -47.5,-2.5 + parent: 34 - uid: 8111 components: - type: Transform @@ -8575,6 +8808,11 @@ entities: rot: 1.5707963267948966 rad pos: -60.5,-35.5 parent: 34 + - uid: 10939 + components: + - type: Transform + pos: -51.5,-2.5 + parent: 34 - proto: ButtonFrameExit entities: - uid: 13839 @@ -8603,11 +8841,11 @@ entities: - type: Transform pos: -39.5,-24.5 parent: 34 - - uid: 13846 + - uid: 14773 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -30.5,-19.5 + rot: 1.5707963267948966 rad + pos: -47.5,-6.5 parent: 34 - proto: CableApcExtension entities: @@ -8726,6 +8964,16 @@ entities: - type: Transform pos: 8.5,-16.5 parent: 34 + - uid: 495 + components: + - type: Transform + pos: -34.5,-18.5 + parent: 34 + - uid: 530 + components: + - type: Transform + pos: -31.5,-16.5 + parent: 34 - uid: 556 components: - type: Transform @@ -8736,6 +8984,21 @@ entities: - type: Transform pos: -57.5,-10.5 parent: 34 + - uid: 598 + components: + - type: Transform + pos: -32.5,-14.5 + parent: 34 + - uid: 599 + components: + - type: Transform + pos: -33.5,-14.5 + parent: 34 + - uid: 692 + components: + - type: Transform + pos: 28.5,8.5 + parent: 34 - uid: 695 components: - type: Transform @@ -8776,21 +9039,6 @@ entities: - type: Transform pos: -64.5,-25.5 parent: 34 - - uid: 934 - components: - - type: Transform - pos: -26.5,-9.5 - parent: 34 - - uid: 935 - components: - - type: Transform - pos: -26.5,-6.5 - parent: 34 - - uid: 936 - components: - - type: Transform - pos: -26.5,-4.5 - parent: 34 - uid: 946 components: - type: Transform @@ -8801,21 +9049,6 @@ entities: - type: Transform pos: -44.5,-48.5 parent: 34 - - uid: 959 - components: - - type: Transform - pos: -26.5,-5.5 - parent: 34 - - uid: 960 - components: - - type: Transform - pos: -26.5,-7.5 - parent: 34 - - uid: 962 - components: - - type: Transform - pos: -26.5,-8.5 - parent: 34 - uid: 986 components: - type: Transform @@ -9106,20 +9339,10 @@ entities: - type: Transform pos: 49.5,0.5 parent: 34 - - uid: 1622 - components: - - type: Transform - pos: -39.5,-47.5 - parent: 34 - - uid: 1650 - components: - - type: Transform - pos: -39.5,-45.5 - parent: 34 - - uid: 1651 + - uid: 1628 components: - type: Transform - pos: -39.5,-43.5 + pos: 29.5,8.5 parent: 34 - uid: 1659 components: @@ -9309,18 +9532,38 @@ entities: - uid: 1699 components: - type: Transform - pos: -39.5,-41.5 + pos: -40.5,-46.5 parent: 34 - uid: 1700 components: - type: Transform - pos: -39.5,-39.5 + pos: -40.5,-45.5 + parent: 34 + - uid: 1701 + components: + - type: Transform + pos: -40.5,-44.5 + parent: 34 + - uid: 1702 + components: + - type: Transform + pos: -40.5,-43.5 parent: 34 - uid: 1703 components: - type: Transform pos: -40.5,-42.5 parent: 34 + - uid: 1704 + components: + - type: Transform + pos: -40.5,-41.5 + parent: 34 + - uid: 1705 + components: + - type: Transform + pos: -40.5,-40.5 + parent: 34 - uid: 1706 components: - type: Transform @@ -9446,6 +9689,11 @@ entities: - type: Transform pos: -45.5,-39.5 parent: 34 + - uid: 1737 + components: + - type: Transform + pos: -40.5,-39.5 + parent: 34 - uid: 1738 components: - type: Transform @@ -9516,11 +9764,6 @@ entities: - type: Transform pos: -45.5,-32.5 parent: 34 - - uid: 1795 - components: - - type: Transform - pos: -41.5,-50.5 - parent: 34 - uid: 1803 components: - type: Transform @@ -9591,6 +9834,31 @@ entities: - type: Transform pos: -11.5,-33.5 parent: 34 + - uid: 2043 + components: + - type: Transform + pos: -42.5,-7.5 + parent: 34 + - uid: 2044 + components: + - type: Transform + pos: -43.5,-0.5 + parent: 34 + - uid: 2045 + components: + - type: Transform + pos: -44.5,-0.5 + parent: 34 + - uid: 2046 + components: + - type: Transform + pos: -45.5,-0.5 + parent: 34 + - uid: 2055 + components: + - type: Transform + pos: -46.5,-0.5 + parent: 34 - uid: 2074 components: - type: Transform @@ -9616,16 +9884,71 @@ entities: - type: Transform pos: -28.5,-33.5 parent: 34 + - uid: 2117 + components: + - type: Transform + pos: -50.5,1.5 + parent: 34 + - uid: 2119 + components: + - type: Transform + pos: -46.5,-4.5 + parent: 34 - uid: 2151 components: - type: Transform pos: -29.5,-50.5 parent: 34 + - uid: 2199 + components: + - type: Transform + pos: 30.5,8.5 + parent: 34 + - uid: 2203 + components: + - type: Transform + pos: 31.5,8.5 + parent: 34 + - uid: 2208 + components: + - type: Transform + pos: -42.5,-0.5 + parent: 34 + - uid: 2216 + components: + - type: Transform + pos: 32.5,8.5 + parent: 34 - uid: 2217 components: - type: Transform pos: 41.5,-2.5 parent: 34 + - uid: 2239 + components: + - type: Transform + pos: -49.5,-0.5 + parent: 34 + - uid: 2258 + components: + - type: Transform + pos: -46.5,1.5 + parent: 34 + - uid: 2260 + components: + - type: Transform + pos: 33.5,8.5 + parent: 34 + - uid: 2293 + components: + - type: Transform + pos: -18.5,-4.5 + parent: 34 + - uid: 2295 + components: + - type: Transform + pos: 17.5,13.5 + parent: 34 - uid: 2396 components: - type: Transform @@ -9681,6 +10004,26 @@ entities: - type: Transform pos: -56.5,-10.5 parent: 34 + - uid: 2529 + components: + - type: Transform + pos: 17.5,14.5 + parent: 34 + - uid: 2534 + components: + - type: Transform + pos: 18.5,15.5 + parent: 34 + - uid: 2536 + components: + - type: Transform + pos: 17.5,15.5 + parent: 34 + - uid: 2549 + components: + - type: Transform + pos: 19.5,15.5 + parent: 34 - uid: 2554 components: - type: Transform @@ -9761,6 +10104,11 @@ entities: - type: Transform pos: 13.5,-43.5 parent: 34 + - uid: 2737 + components: + - type: Transform + pos: 17.5,12.5 + parent: 34 - uid: 2802 components: - type: Transform @@ -9826,11 +10174,6 @@ entities: - type: Transform pos: -19.5,-4.5 parent: 34 - - uid: 2871 - components: - - type: Transform - pos: -18.5,-4.5 - parent: 34 - uid: 2872 components: - type: Transform @@ -10481,31 +10824,6 @@ entities: - type: Transform pos: -33.5,-18.5 parent: 34 - - uid: 3103 - components: - - type: Transform - pos: -34.5,-18.5 - parent: 34 - - uid: 3104 - components: - - type: Transform - pos: -34.5,-17.5 - parent: 34 - - uid: 3105 - components: - - type: Transform - pos: -34.5,-16.5 - parent: 34 - - uid: 3106 - components: - - type: Transform - pos: -34.5,-15.5 - parent: 34 - - uid: 3107 - components: - - type: Transform - pos: -34.5,-14.5 - parent: 34 - uid: 3108 components: - type: Transform @@ -10526,11 +10844,6 @@ entities: - type: Transform pos: -34.5,-10.5 parent: 34 - - uid: 3112 - components: - - type: Transform - pos: -34.5,-9.5 - parent: 34 - uid: 3113 components: - type: Transform @@ -10696,31 +11009,6 @@ entities: - type: Transform pos: -22.5,-10.5 parent: 34 - - uid: 3147 - components: - - type: Transform - pos: -22.5,-9.5 - parent: 34 - - uid: 3148 - components: - - type: Transform - pos: -22.5,-8.5 - parent: 34 - - uid: 3149 - components: - - type: Transform - pos: -22.5,-7.5 - parent: 34 - - uid: 3150 - components: - - type: Transform - pos: -22.5,-6.5 - parent: 34 - - uid: 3151 - components: - - type: Transform - pos: -22.5,-5.5 - parent: 34 - uid: 3152 components: - type: Transform @@ -11273,11 +11561,6 @@ entities: - type: Transform pos: 6.5,-13.5 parent: 34 - - uid: 3860 - components: - - type: Transform - pos: -22.5,-4.5 - parent: 34 - uid: 3930 components: - type: Transform @@ -13298,11 +13581,6 @@ entities: - type: Transform pos: -42.5,-6.5 parent: 34 - - uid: 7107 - components: - - type: Transform - pos: -42.5,-7.5 - parent: 34 - uid: 7108 components: - type: Transform @@ -13373,66 +13651,11 @@ entities: - type: Transform pos: -42.5,-1.5 parent: 34 - - uid: 7122 - components: - - type: Transform - pos: -43.5,-1.5 - parent: 34 - - uid: 7123 - components: - - type: Transform - pos: -44.5,-1.5 - parent: 34 - - uid: 7124 - components: - - type: Transform - pos: -45.5,-1.5 - parent: 34 - uid: 7125 components: - type: Transform pos: -46.5,-1.5 parent: 34 - - uid: 7126 - components: - - type: Transform - pos: -47.5,-1.5 - parent: 34 - - uid: 7127 - components: - - type: Transform - pos: -48.5,-1.5 - parent: 34 - - uid: 7128 - components: - - type: Transform - pos: -49.5,-1.5 - parent: 34 - - uid: 7129 - components: - - type: Transform - pos: -50.5,-1.5 - parent: 34 - - uid: 7130 - components: - - type: Transform - pos: -47.5,-2.5 - parent: 34 - - uid: 7131 - components: - - type: Transform - pos: -47.5,-3.5 - parent: 34 - - uid: 7132 - components: - - type: Transform - pos: -49.5,-2.5 - parent: 34 - - uid: 7133 - components: - - type: Transform - pos: -49.5,-3.5 - parent: 34 - uid: 7134 components: - type: Transform @@ -13453,36 +13676,6 @@ entities: - type: Transform pos: -46.5,-7.5 parent: 34 - - uid: 7138 - components: - - type: Transform - pos: -45.5,-0.5 - parent: 34 - - uid: 7139 - components: - - type: Transform - pos: -45.5,0.5 - parent: 34 - - uid: 7140 - components: - - type: Transform - pos: -49.5,-0.5 - parent: 34 - - uid: 7141 - components: - - type: Transform - pos: -49.5,0.5 - parent: 34 - - uid: 7142 - components: - - type: Transform - pos: -49.5,1.5 - parent: 34 - - uid: 7143 - components: - - type: Transform - pos: -45.5,1.5 - parent: 34 - uid: 7157 components: - type: Transform @@ -14983,36 +15176,6 @@ entities: - type: Transform pos: 17.5,8.5 parent: 34 - - uid: 7637 - components: - - type: Transform - pos: 27.5,7.5 - parent: 34 - - uid: 7638 - components: - - type: Transform - pos: 28.5,7.5 - parent: 34 - - uid: 7639 - components: - - type: Transform - pos: 29.5,7.5 - parent: 34 - - uid: 7640 - components: - - type: Transform - pos: 30.5,7.5 - parent: 34 - - uid: 7641 - components: - - type: Transform - pos: 31.5,7.5 - parent: 34 - - uid: 7642 - components: - - type: Transform - pos: 32.5,7.5 - parent: 34 - uid: 7706 components: - type: Transform @@ -15623,6 +15786,16 @@ entities: - type: Transform pos: 25.5,-0.5 parent: 34 + - uid: 9257 + components: + - type: Transform + pos: -46.5,-2.5 + parent: 34 + - uid: 9266 + components: + - type: Transform + pos: -46.5,0.5 + parent: 34 - uid: 9314 components: - type: Transform @@ -15688,6 +15861,11 @@ entities: - type: Transform pos: -49.5,-17.5 parent: 34 + - uid: 9763 + components: + - type: Transform + pos: -34.5,-8.5 + parent: 34 - uid: 9933 components: - type: Transform @@ -16058,6 +16236,16 @@ entities: - type: Transform pos: -45.5,-21.5 parent: 34 + - uid: 10292 + components: + - type: Transform + pos: -46.5,-3.5 + parent: 34 + - uid: 10296 + components: + - type: Transform + pos: -49.5,1.5 + parent: 34 - uid: 10303 components: - type: Transform @@ -16653,6 +16841,11 @@ entities: - type: Transform pos: -48.5,-21.5 parent: 34 + - uid: 11054 + components: + - type: Transform + pos: -48.5,-1.5 + parent: 34 - uid: 11060 components: - type: Transform @@ -16683,15 +16876,10 @@ entities: - type: Transform pos: -43.5,-25.5 parent: 34 - - uid: 11204 - components: - - type: Transform - pos: 19.5,9.5 - parent: 34 - - uid: 11205 + - uid: 11218 components: - type: Transform - pos: 19.5,10.5 + pos: -32.5,-8.5 parent: 34 - uid: 11229 components: @@ -16708,30 +16896,50 @@ entities: - type: Transform pos: 16.5,-44.5 parent: 34 + - uid: 11242 + components: + - type: Transform + pos: -31.5,-8.5 + parent: 34 + - uid: 11243 + components: + - type: Transform + pos: -33.5,-8.5 + parent: 34 - uid: 11245 components: - type: Transform pos: 47.5,-0.5 parent: 34 - - uid: 11276 + - uid: 11263 components: - type: Transform - pos: 26.5,8.5 + pos: -29.5,-6.5 parent: 34 - - uid: 11277 + - uid: 11264 components: - type: Transform - pos: 26.5,9.5 + pos: -30.5,-2.5 parent: 34 - - uid: 11278 + - uid: 11265 components: - type: Transform - pos: 26.5,10.5 + pos: -31.5,-2.5 parent: 34 - - uid: 11279 + - uid: 11266 + components: + - type: Transform + pos: -30.5,-3.5 + parent: 34 + - uid: 11268 + components: + - type: Transform + pos: -28.5,-6.5 + parent: 34 + - uid: 11276 components: - type: Transform - pos: 26.5,11.5 + pos: 26.5,8.5 parent: 34 - uid: 11299 components: @@ -17913,46 +18121,31 @@ entities: - type: Transform pos: 44.5,-16.5 parent: 34 - - uid: 13142 - components: - - type: Transform - pos: 18.5,14.5 - parent: 34 - - uid: 13143 - components: - - type: Transform - pos: 18.5,13.5 - parent: 34 - - uid: 13144 + - uid: 13130 components: - type: Transform - pos: 18.5,15.5 + pos: 14.5,16.5 parent: 34 - - uid: 13145 + - uid: 13131 components: - type: Transform - pos: 18.5,16.5 + pos: 21.5,15.5 parent: 34 - - uid: 13146 + - uid: 13132 components: - type: Transform - pos: 17.5,16.5 + pos: 14.5,14.5 parent: 34 - - uid: 13147 + - uid: 13133 components: - type: Transform - pos: 16.5,16.5 + pos: 15.5,14.5 parent: 34 - - uid: 13148 + - uid: 13134 components: - type: Transform pos: 15.5,16.5 parent: 34 - - uid: 13151 - components: - - type: Transform - pos: 17.5,14.5 - parent: 34 - uid: 13280 components: - type: Transform @@ -18338,6 +18531,11 @@ entities: - type: Transform pos: -60.5,-17.5 parent: 34 + - uid: 13834 + components: + - type: Transform + pos: -41.5,-50.5 + parent: 34 - uid: 13835 components: - type: Transform @@ -18463,6 +18661,11 @@ entities: - type: Transform pos: -50.5,-14.5 parent: 34 + - uid: 14073 + components: + - type: Transform + pos: -49.5,0.5 + parent: 34 - uid: 14116 components: - type: Transform @@ -18483,6 +18686,31 @@ entities: - type: Transform pos: 34.5,0.5 parent: 34 + - uid: 14136 + components: + - type: Transform + pos: -49.5,-1.5 + parent: 34 + - uid: 14137 + components: + - type: Transform + pos: -47.5,-1.5 + parent: 34 + - uid: 14142 + components: + - type: Transform + pos: 21.5,-42.5 + parent: 34 + - uid: 14143 + components: + - type: Transform + pos: 21.5,-43.5 + parent: 34 + - uid: 14144 + components: + - type: Transform + pos: 21.5,-44.5 + parent: 34 - uid: 14198 components: - type: Transform @@ -18638,155 +18866,175 @@ entities: - type: Transform pos: 72.5,-25.5 parent: 34 - - uid: 14360 + - uid: 14461 components: - type: Transform - pos: -40.5,-50.5 + pos: 32.5,9.5 parent: 34 - - uid: 14361 + - uid: 14462 components: - type: Transform - pos: -40.5,-51.5 + pos: 32.5,10.5 parent: 34 - - uid: 14362 + - uid: 14463 components: - type: Transform - pos: -40.5,-52.5 + pos: 32.5,11.5 parent: 34 - - uid: 14363 + - uid: 14464 components: - type: Transform - pos: -40.5,-53.5 + pos: 32.5,12.5 parent: 34 - - uid: 14364 + - uid: 14465 components: - type: Transform - pos: -40.5,-54.5 + pos: 32.5,13.5 parent: 34 - - uid: 14365 + - uid: 14466 components: - type: Transform - pos: -40.5,-55.5 + pos: 32.5,14.5 parent: 34 - - uid: 14366 + - uid: 14467 components: - type: Transform - pos: -41.5,-55.5 + pos: 32.5,15.5 parent: 34 - - uid: 14367 + - uid: 14468 components: - type: Transform - pos: -42.5,-55.5 + pos: 32.5,16.5 parent: 34 - - uid: 14368 + - uid: 14469 components: - type: Transform - pos: -43.5,-55.5 + pos: 33.5,11.5 parent: 34 - - uid: 14369 + - uid: 14470 components: - type: Transform - pos: -44.5,-55.5 + pos: 34.5,11.5 parent: 34 - - uid: 14370 + - uid: 14471 components: - type: Transform - pos: -45.5,-55.5 + pos: 35.5,11.5 parent: 34 - - uid: 14371 + - uid: 14507 components: - type: Transform - pos: -46.5,-55.5 + pos: 24.5,12.5 parent: 34 - - uid: 14372 + - uid: 14508 components: - type: Transform - pos: -47.5,-55.5 + pos: 25.5,12.5 parent: 34 - - uid: 14373 + - uid: 14509 components: - type: Transform - pos: -43.5,-54.5 + pos: 26.5,12.5 parent: 34 - - uid: 14374 + - uid: 14510 components: - type: Transform - pos: -43.5,-53.5 + pos: 27.5,12.5 parent: 34 - - uid: 14375 + - uid: 14511 components: - type: Transform - pos: -43.5,-52.5 + pos: 28.5,12.5 parent: 34 - - uid: 14376 + - uid: 14512 components: - type: Transform - pos: -43.5,-51.5 + pos: 27.5,13.5 parent: 34 - - uid: 14377 + - uid: 14513 components: - type: Transform - pos: -44.5,-51.5 + pos: 27.5,14.5 parent: 34 - - uid: 14378 + - uid: 14514 components: - type: Transform - pos: -45.5,-51.5 + pos: 27.5,11.5 parent: 34 - - uid: 14379 + - uid: 14515 components: - type: Transform - pos: -46.5,-51.5 + pos: 26.5,14.5 parent: 34 - - uid: 14380 + - uid: 14516 components: - type: Transform - pos: -47.5,-51.5 + pos: 25.5,14.5 parent: 34 - - uid: 14381 + - uid: 14517 components: - type: Transform - pos: -58.5,-19.5 + pos: 24.5,14.5 parent: 34 - - uid: 14382 + - uid: 14518 components: - type: Transform - pos: -59.5,-19.5 + pos: 23.5,14.5 parent: 34 - - uid: 14383 + - uid: 14519 components: - type: Transform - pos: -60.5,-19.5 + pos: 22.5,14.5 parent: 34 - - uid: 14384 + - uid: 14520 components: - type: Transform - pos: -61.5,-19.5 + pos: 22.5,12.5 parent: 34 - - uid: 14385 + - uid: 14521 components: - type: Transform - pos: -62.5,-19.5 + pos: 22.5,13.5 parent: 34 - - uid: 14386 + - uid: 14522 components: - type: Transform - pos: -63.5,-22.5 + pos: 22.5,11.5 parent: 34 - - uid: 14387 + - uid: 14523 components: - type: Transform - pos: -63.5,-21.5 + pos: 22.5,15.5 parent: 34 - - uid: 14388 + - uid: 14525 components: - type: Transform - pos: -63.5,-20.5 + pos: 20.5,15.5 parent: 34 - - uid: 14389 + - uid: 14526 + components: + - type: Transform + pos: 17.5,11.5 + parent: 34 + - uid: 14527 + components: + - type: Transform + pos: 28.5,14.5 + parent: 34 + - uid: 14528 + components: + - type: Transform + pos: 29.5,14.5 + parent: 34 + - uid: 14529 components: - type: Transform - pos: -63.5,-19.5 + pos: 29.5,15.5 + parent: 34 + - uid: 14530 + components: + - type: Transform + pos: 29.5,16.5 parent: 34 - proto: CableApcStack1 entities: @@ -18807,8 +19055,20 @@ entities: rot: 1.5707963267948966 rad pos: -18.60889,3.6323342 parent: 34 + - uid: 13153 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -49.92905,10.168552 + parent: 34 - proto: CableApcStack10 entities: + - uid: 5057 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.8499813,-39.617706 + parent: 34 - uid: 14294 components: - type: Transform @@ -18816,16 +19076,41 @@ entities: parent: 34 - proto: CableHV entities: + - uid: 40 + components: + - type: Transform + pos: -23.5,-10.5 + parent: 34 - uid: 139 components: - type: Transform pos: -45.5,-21.5 parent: 34 + - uid: 483 + components: + - type: Transform + pos: -23.5,-7.5 + parent: 34 + - uid: 484 + components: + - type: Transform + pos: -23.5,-4.5 + parent: 34 + - uid: 510 + components: + - type: Transform + pos: -23.5,-6.5 + parent: 34 - uid: 669 components: - type: Transform pos: 16.5,-42.5 parent: 34 + - uid: 672 + components: + - type: Transform + pos: -23.5,-5.5 + parent: 34 - uid: 674 components: - type: Transform @@ -18836,6 +19121,11 @@ entities: - type: Transform pos: -51.5,-32.5 parent: 34 + - uid: 864 + components: + - type: Transform + pos: -23.5,-3.5 + parent: 34 - uid: 970 components: - type: Transform @@ -19026,6 +19316,11 @@ entities: - type: Transform pos: -54.5,-16.5 parent: 34 + - uid: 2135 + components: + - type: Transform + pos: -23.5,-8.5 + parent: 34 - uid: 2221 components: - type: Transform @@ -19546,6 +19841,16 @@ entities: - type: Transform pos: 28.5,-40.5 parent: 34 + - uid: 4984 + components: + - type: Transform + pos: -23.5,-2.5 + parent: 34 + - uid: 4987 + components: + - type: Transform + pos: -23.5,-1.5 + parent: 34 - uid: 5195 components: - type: Transform @@ -20511,6 +20816,11 @@ entities: - type: Transform pos: 49.5,-29.5 parent: 34 + - uid: 6532 + components: + - type: Transform + pos: -23.5,-9.5 + parent: 34 - uid: 6571 components: - type: Transform @@ -20661,51 +20971,6 @@ entities: - type: Transform pos: -22.5,-10.5 parent: 34 - - uid: 6601 - components: - - type: Transform - pos: -22.5,-9.5 - parent: 34 - - uid: 6602 - components: - - type: Transform - pos: -22.5,-8.5 - parent: 34 - - uid: 6603 - components: - - type: Transform - pos: -22.5,-7.5 - parent: 34 - - uid: 6604 - components: - - type: Transform - pos: -22.5,-6.5 - parent: 34 - - uid: 6605 - components: - - type: Transform - pos: -22.5,-5.5 - parent: 34 - - uid: 6606 - components: - - type: Transform - pos: -22.5,-4.5 - parent: 34 - - uid: 6607 - components: - - type: Transform - pos: -22.5,-3.5 - parent: 34 - - uid: 6608 - components: - - type: Transform - pos: -22.5,-2.5 - parent: 34 - - uid: 6609 - components: - - type: Transform - pos: -22.5,-1.5 - parent: 34 - uid: 6610 components: - type: Transform @@ -21925,6 +22190,12 @@ entities: parent: 34 - proto: CableHVStack1 entities: + - uid: 13159 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -50.0228,10.715427 + parent: 34 - uid: 13985 components: - type: Transform @@ -21951,6 +22222,11 @@ entities: parent: 34 - proto: CableMV entities: + - uid: 39 + components: + - type: Transform + pos: -31.5,-16.5 + parent: 34 - uid: 92 components: - type: Transform @@ -22186,11 +22462,6 @@ entities: - type: Transform pos: 35.5,-26.5 parent: 34 - - uid: 2683 - components: - - type: Transform - pos: 17.5,17.5 - parent: 34 - uid: 2707 components: - type: Transform @@ -22321,26 +22592,6 @@ entities: - type: Transform pos: -30.5,-16.5 parent: 34 - - uid: 2843 - components: - - type: Transform - pos: -28.5,-9.5 - parent: 34 - - uid: 2844 - components: - - type: Transform - pos: -28.5,-8.5 - parent: 34 - - uid: 2845 - components: - - type: Transform - pos: -28.5,-7.5 - parent: 34 - - uid: 2846 - components: - - type: Transform - pos: -29.5,-7.5 - parent: 34 - uid: 2847 components: - type: Transform @@ -22501,11 +22752,6 @@ entities: - type: Transform pos: 4.5,-28.5 parent: 34 - - uid: 2962 - components: - - type: Transform - pos: 16.5,17.5 - parent: 34 - uid: 2963 components: - type: Transform @@ -22986,11 +23232,6 @@ entities: - type: Transform pos: -14.5,-31.5 parent: 34 - - uid: 6533 - components: - - type: Transform - pos: 20.5,17.5 - parent: 34 - uid: 6534 components: - type: Transform @@ -24811,6 +25052,26 @@ entities: - type: Transform pos: -16.5,-30.5 parent: 34 + - uid: 11278 + components: + - type: Transform + pos: -30.5,-8.5 + parent: 34 + - uid: 11279 + components: + - type: Transform + pos: -30.5,-9.5 + parent: 34 + - uid: 11280 + components: + - type: Transform + pos: -30.5,-10.5 + parent: 34 + - uid: 11281 + components: + - type: Transform + pos: -29.5,-10.5 + parent: 34 - uid: 11335 components: - type: Transform @@ -24946,11 +25207,6 @@ entities: - type: Transform pos: 7.5,-41.5 parent: 34 - - uid: 11804 - components: - - type: Transform - pos: 19.5,17.5 - parent: 34 - uid: 11845 components: - type: Transform @@ -25206,76 +25462,6 @@ entities: - type: Transform pos: -52.5,-12.5 parent: 34 - - uid: 13076 - components: - - type: Transform - pos: 18.5,17.5 - parent: 34 - - uid: 13082 - components: - - type: Transform - pos: 20.5,15.5 - parent: 34 - - uid: 13092 - components: - - type: Transform - pos: 20.5,14.5 - parent: 34 - - uid: 13097 - components: - - type: Transform - pos: 20.5,16.5 - parent: 34 - - uid: 13130 - components: - - type: Transform - pos: 13.5,14.5 - parent: 34 - - uid: 13131 - components: - - type: Transform - pos: 13.5,15.5 - parent: 34 - - uid: 13132 - components: - - type: Transform - pos: 13.5,16.5 - parent: 34 - - uid: 13133 - components: - - type: Transform - pos: 14.5,16.5 - parent: 34 - - uid: 13134 - components: - - type: Transform - pos: 15.5,16.5 - parent: 34 - - uid: 13135 - components: - - type: Transform - pos: 16.5,16.5 - parent: 34 - - uid: 13137 - components: - - type: Transform - pos: 18.5,16.5 - parent: 34 - - uid: 13138 - components: - - type: Transform - pos: 18.5,15.5 - parent: 34 - - uid: 13139 - components: - - type: Transform - pos: 18.5,14.5 - parent: 34 - - uid: 13140 - components: - - type: Transform - pos: 18.5,13.5 - parent: 34 - uid: 13286 components: - type: Transform @@ -25351,6 +25537,69 @@ entities: - type: Transform pos: 17.5,2.5 parent: 34 + - uid: 14496 + components: + - type: Transform + pos: 24.5,8.5 + parent: 34 + - uid: 14497 + components: + - type: Transform + pos: 25.5,8.5 + parent: 34 + - uid: 14498 + components: + - type: Transform + pos: 26.5,8.5 + parent: 34 + - uid: 14499 + components: + - type: Transform + pos: 27.5,8.5 + parent: 34 + - uid: 14500 + components: + - type: Transform + pos: 27.5,9.5 + parent: 34 + - uid: 14501 + components: + - type: Transform + pos: 27.5,10.5 + parent: 34 + - uid: 14502 + components: + - type: Transform + pos: 27.5,11.5 + parent: 34 + - uid: 14503 + components: + - type: Transform + pos: 27.5,12.5 + parent: 34 + - uid: 14504 + components: + - type: Transform + pos: 26.5,12.5 + parent: 34 + - uid: 14505 + components: + - type: Transform + pos: 25.5,12.5 + parent: 34 + - uid: 14506 + components: + - type: Transform + pos: 24.5,12.5 + parent: 34 +- proto: CableMVStack1 + entities: + - uid: 13445 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -49.86655,10.371677 + parent: 34 - proto: CableTerminal entities: - uid: 1127 @@ -25394,23 +25643,16 @@ entities: rot: 1.5707963267948966 rad pos: -51.5,-29.5 parent: 34 -- proto: Carpet +- proto: Candle entities: - - uid: 2192 - components: - - type: Transform - pos: -42.5,-6.5 - parent: 34 - - uid: 2193 - components: - - type: Transform - pos: -42.5,-5.5 - parent: 34 - - uid: 2194 + - uid: 11211 components: - type: Transform - pos: -42.5,-4.5 + rot: 3.141592653589793 rad + pos: -28.112804,-3.8338103 parent: 34 +- proto: Carpet + entities: - uid: 2638 components: - type: Transform @@ -25467,47 +25709,114 @@ entities: - type: Transform pos: 30.5,-29.5 parent: 34 + - uid: 14705 + components: + - type: Transform + pos: -35.5,-5.5 + parent: 34 + - uid: 14706 + components: + - type: Transform + pos: -34.5,-5.5 + parent: 34 + - uid: 14707 + components: + - type: Transform + pos: -33.5,-5.5 + parent: 34 - proto: CarpetBlack entities: - - uid: 781 + - uid: 37 components: - type: Transform - pos: 8.5,-3.5 + rot: 3.141592653589793 rad + pos: -26.5,-17.5 parent: 34 - - uid: 782 + - uid: 502 components: - type: Transform - pos: 8.5,-4.5 + pos: -32.5,-14.5 parent: 34 - - uid: 783 + - uid: 503 components: - type: Transform - pos: 9.5,-4.5 + pos: -33.5,-14.5 parent: 34 - - uid: 784 + - uid: 505 components: - type: Transform - pos: 9.5,-3.5 + pos: -32.5,-13.5 parent: 34 - - uid: 2225 + - uid: 523 components: - type: Transform - pos: -45.5,-3.5 + pos: -34.5,-14.5 parent: 34 - - uid: 2226 + - uid: 531 components: - type: Transform - pos: -45.5,-4.5 + rot: 3.141592653589793 rad + pos: -27.5,-16.5 parent: 34 - - uid: 2257 + - uid: 532 components: - type: Transform - pos: -50.5,-7.5 + rot: 3.141592653589793 rad + pos: -27.5,-17.5 parent: 34 - - uid: 2258 + - uid: 533 components: - type: Transform - pos: -49.5,-7.5 + rot: 3.141592653589793 rad + pos: -28.5,-17.5 + parent: 34 + - uid: 553 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -27.5,-19.5 + parent: 34 + - uid: 562 + components: + - type: Transform + pos: -33.5,-13.5 + parent: 34 + - uid: 573 + components: + - type: Transform + pos: -34.5,-13.5 + parent: 34 + - uid: 620 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -27.5,-18.5 + parent: 34 + - uid: 781 + components: + - type: Transform + pos: 8.5,-3.5 + parent: 34 + - uid: 782 + components: + - type: Transform + pos: 8.5,-4.5 + parent: 34 + - uid: 783 + components: + - type: Transform + pos: 9.5,-4.5 + parent: 34 + - uid: 784 + components: + - type: Transform + pos: 9.5,-3.5 + parent: 34 + - uid: 955 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -27.5,-15.5 parent: 34 - uid: 3250 components: @@ -25581,6 +25890,12 @@ entities: rot: 1.5707963267948966 rad pos: 47.5,-0.5 parent: 34 + - uid: 5052 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,-45.5 + parent: 34 - uid: 6428 components: - type: Transform @@ -25605,15 +25920,15 @@ entities: rot: 3.141592653589793 rad pos: 29.5,-34.5 parent: 34 - - uid: 11213 + - uid: 13197 components: - type: Transform - pos: 21.5,12.5 + pos: 34.5,13.5 parent: 34 - - uid: 11214 + - uid: 13198 components: - type: Transform - pos: 20.5,12.5 + pos: 35.5,13.5 parent: 34 - uid: 14022 components: @@ -25679,6 +25994,59 @@ entities: rot: -1.5707963267948966 rad pos: 17.5,-36.5 parent: 34 + - uid: 14379 + components: + - type: Transform + pos: 35.5,11.5 + parent: 34 + - uid: 14648 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 50.5,-43.5 + parent: 34 + - uid: 14649 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 51.5,-43.5 + parent: 34 + - uid: 14650 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5,-44.5 + parent: 34 + - uid: 14651 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5,-43.5 + parent: 34 + - uid: 14652 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 50.5,-44.5 + parent: 34 + - uid: 14653 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 51.5,-44.5 + parent: 34 + - uid: 14654 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 52.5,-44.5 + parent: 34 + - uid: 14655 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 52.5,-43.5 + parent: 34 - proto: CarpetBlue entities: - uid: 12124 @@ -25768,77 +26136,74 @@ entities: parent: 34 - proto: CarpetChapel entities: - - uid: 2261 + - uid: 36 components: - type: Transform - pos: -27.5,-17.5 + rot: 3.141592653589793 rad + pos: -26.5,-18.5 parent: 34 - - uid: 2262 + - uid: 524 components: - type: Transform rot: -1.5707963267948966 rad - pos: -27.5,-16.5 + pos: -28.5,-15.5 parent: 34 - - uid: 2263 + - uid: 545 components: - type: Transform - rot: 3.141592653589793 rad - pos: -26.5,-16.5 + rot: -1.5707963267948966 rad + pos: -28.5,-18.5 parent: 34 - - uid: 2264 + - uid: 552 components: - type: Transform rot: 1.5707963267948966 rad - pos: -26.5,-17.5 + pos: -26.5,-19.5 parent: 34 - - uid: 3349 + - uid: 554 components: - type: Transform - pos: -27.5,-19.5 + pos: -28.5,-19.5 parent: 34 - - uid: 3350 + - uid: 583 components: - type: Transform - pos: -27.5,-15.5 + rot: 1.5707963267948966 rad + pos: -26.5,-16.5 parent: 34 - - uid: 3351 + - uid: 585 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -26.5,-19.5 + pos: -28.5,-16.5 parent: 34 - - uid: 3352 + - uid: 586 components: - type: Transform - rot: 1.5707963267948966 rad + rot: 3.141592653589793 rad pos: -26.5,-15.5 parent: 34 - - uid: 3353 +- proto: CarpetGreen + entities: + - uid: 385 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -27.5,-18.5 + pos: -34.5,-18.5 parent: 34 - - uid: 3354 + - uid: 431 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -27.5,-14.5 + pos: -33.5,-18.5 parent: 34 - - uid: 3355 + - uid: 457 components: - type: Transform - rot: 3.141592653589793 rad - pos: -26.5,-14.5 + pos: -32.5,-18.5 parent: 34 - - uid: 3356 + - uid: 875 components: - type: Transform - rot: 3.141592653589793 rad - pos: -26.5,-18.5 + pos: -35.5,-18.5 parent: 34 -- proto: CarpetGreen - entities: - uid: 1957 components: - type: Transform @@ -25859,34 +26224,41 @@ entities: - type: Transform pos: -17.5,-19.5 parent: 34 - - uid: 7763 + - uid: 11212 components: - type: Transform rot: 3.141592653589793 rad - pos: -49.5,-13.5 + pos: -30.5,-3.5 parent: 34 - - uid: 9627 + - uid: 11213 components: - type: Transform rot: 3.141592653589793 rad - pos: -51.5,-13.5 + pos: -31.5,-3.5 parent: 34 - - uid: 11491 + - uid: 11214 components: - type: Transform rot: 3.141592653589793 rad - pos: -48.5,-13.5 + pos: -31.5,-4.5 parent: 34 - - uid: 14058 + - uid: 11215 components: - type: Transform - pos: -50.5,-12.5 + rot: 3.141592653589793 rad + pos: -31.5,-5.5 parent: 34 - - uid: 14059 + - uid: 11216 components: - type: Transform rot: 3.141592653589793 rad - pos: -50.5,-13.5 + pos: -30.5,-5.5 + parent: 34 + - uid: 11217 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,-4.5 parent: 34 - proto: CarpetOrange entities: @@ -25922,20 +26294,31 @@ entities: - type: Transform pos: 48.5,-7.5 parent: 34 -- proto: CarpetPink +- proto: CarpetPurple entities: - - uid: 5847 + - uid: 518 components: - type: Transform - pos: -51.5,1.5 + rot: 3.141592653589793 rad + pos: -30.5,-16.5 parent: 34 - - uid: 5853 + - uid: 519 components: - type: Transform - pos: -51.5,2.5 + rot: 3.141592653589793 rad + pos: -30.5,-17.5 + parent: 34 + - uid: 602 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,-15.5 + parent: 34 + - uid: 2259 + components: + - type: Transform + pos: -50.5,-13.5 parent: 34 -- proto: CarpetPurple - entities: - uid: 3673 components: - type: Transform @@ -25960,31 +26343,6 @@ entities: rot: 1.5707963267948966 rad pos: 27.5,-37.5 parent: 34 - - uid: 5854 - components: - - type: Transform - pos: -46.5,1.5 - parent: 34 - - uid: 5855 - components: - - type: Transform - pos: -45.5,1.5 - parent: 34 - - uid: 6080 - components: - - type: Transform - pos: -29.5,-16.5 - parent: 34 - - uid: 6081 - components: - - type: Transform - pos: -29.5,-15.5 - parent: 34 - - uid: 6083 - components: - - type: Transform - pos: -29.5,-17.5 - parent: 34 - uid: 6084 components: - type: Transform @@ -26000,21 +26358,26 @@ entities: - type: Transform pos: -24.5,-17.5 parent: 34 - - uid: 9626 + - uid: 7139 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,-37.5 + pos: -51.5,-13.5 parent: 34 - - uid: 10946 + - uid: 9269 components: - type: Transform - pos: -34.5,-5.5 + pos: -51.5,-14.5 parent: 34 - - uid: 10948 + - uid: 9271 components: - type: Transform - pos: -35.5,-5.5 + pos: -50.5,-14.5 + parent: 34 + - uid: 9626 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,-37.5 parent: 34 - uid: 14039 components: @@ -26148,6 +26511,12 @@ entities: - type: Transform pos: 5.5,-14.5 parent: 34 + - uid: 458 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,-10.5 + parent: 34 - uid: 680 components: - type: Transform @@ -26165,65 +26534,30 @@ entities: rot: 1.5707963267948966 rad pos: -28.5,-43.5 parent: 34 - - uid: 914 - components: - - type: Transform - pos: -30.5,-3.5 - parent: 34 - - uid: 937 - components: - - type: Transform - pos: -31.5,-4.5 - parent: 34 - - uid: 940 - components: - - type: Transform - pos: -31.5,-3.5 - parent: 34 - - uid: 943 - components: - - type: Transform - pos: -31.5,-5.5 - parent: 34 - - uid: 947 - components: - - type: Transform - pos: -26.5,-3.5 - parent: 34 - - uid: 948 - components: - - type: Transform - pos: -26.5,-4.5 - parent: 34 - - uid: 949 - components: - - type: Transform - pos: -26.5,-5.5 - parent: 34 - - uid: 950 + - uid: 939 components: - type: Transform - pos: -26.5,-7.5 + pos: -23.5,-9.5 parent: 34 - uid: 951 components: - type: Transform - pos: -26.5,-8.5 + pos: -23.5,-8.5 parent: 34 - - uid: 952 + - uid: 1018 components: - type: Transform - pos: -25.5,-7.5 + pos: -48.5,-3.5 parent: 34 - - uid: 953 + - uid: 1031 components: - type: Transform - pos: -25.5,-8.5 + pos: 5.5,-15.5 parent: 34 - - uid: 1031 + - uid: 1072 components: - type: Transform - pos: 5.5,-15.5 + pos: -48.5,-4.5 parent: 34 - uid: 1086 components: @@ -26395,6 +26729,11 @@ entities: - type: Transform pos: -54.5,-16.5 parent: 34 + - uid: 2109 + components: + - type: Transform + pos: -49.5,-4.5 + parent: 34 - uid: 2214 components: - type: Transform @@ -26712,6 +27051,11 @@ entities: rot: -1.5707963267948966 rad pos: 17.5,-32.5 parent: 34 + - uid: 2738 + components: + - type: Transform + pos: 27.5,8.5 + parent: 34 - uid: 2744 components: - type: Transform @@ -26762,45 +27106,35 @@ entities: - type: Transform pos: -23.5,-10.5 parent: 34 - - uid: 2755 - components: - - type: Transform - pos: -22.5,-9.5 - parent: 34 - - uid: 2756 - components: - - type: Transform - pos: -22.5,-8.5 - parent: 34 - - uid: 2757 + - uid: 2758 components: - type: Transform - pos: -22.5,-7.5 + pos: 28.5,8.5 parent: 34 - - uid: 2758 + - uid: 2806 components: - type: Transform - pos: -22.5,-6.5 + pos: 0.5,-15.5 parent: 34 - - uid: 2759 + - uid: 2844 components: - type: Transform - pos: -22.5,-5.5 + pos: 24.5,8.5 parent: 34 - - uid: 2760 + - uid: 3105 components: - type: Transform - pos: -22.5,-4.5 + pos: 23.5,8.5 parent: 34 - - uid: 2761 + - uid: 3148 components: - type: Transform - pos: -22.5,-3.5 + pos: 33.5,8.5 parent: 34 - - uid: 2806 + - uid: 3150 components: - type: Transform - pos: 0.5,-15.5 + pos: 26.5,8.5 parent: 34 - uid: 3198 components: @@ -26850,6 +27184,17 @@ entities: - type: Transform pos: -33.5,-48.5 parent: 34 + - uid: 3349 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,-10.5 + parent: 34 + - uid: 3354 + components: + - type: Transform + pos: 25.5,8.5 + parent: 34 - uid: 3432 components: - type: Transform @@ -27043,6 +27388,11 @@ entities: rot: -1.5707963267948966 rad pos: -29.5,-32.5 parent: 34 + - uid: 4450 + components: + - type: Transform + pos: 31.5,8.5 + parent: 34 - uid: 4565 components: - type: Transform @@ -27072,11 +27422,6 @@ entities: - type: Transform pos: -14.5,-30.5 parent: 34 - - uid: 4690 - components: - - type: Transform - pos: 28.5,7.5 - parent: 34 - uid: 4749 components: - type: Transform @@ -27094,20 +27439,29 @@ entities: rot: 1.5707963267948966 rad pos: -22.5,-34.5 parent: 34 - - uid: 4859 + - uid: 4966 components: - type: Transform - pos: 29.5,7.5 + rot: 1.5707963267948966 rad + pos: -24.5,-10.5 parent: 34 - - uid: 5005 + - uid: 4993 components: - type: Transform - pos: 25.5,7.5 + rot: 1.5707963267948966 rad + pos: -27.5,-10.5 parent: 34 - - uid: 5008 + - uid: 5049 components: - type: Transform - pos: 24.5,7.5 + rot: -1.5707963267948966 rad + pos: 21.5,-43.5 + parent: 34 + - uid: 5054 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,-42.5 parent: 34 - uid: 5066 components: @@ -27764,11 +28118,6 @@ entities: - type: Transform pos: 4.5,11.5 parent: 34 - - uid: 6340 - components: - - type: Transform - pos: 32.5,7.5 - parent: 34 - uid: 6374 components: - type: Transform @@ -27799,27 +28148,17 @@ entities: - type: Transform pos: 33.5,4.5 parent: 34 - - uid: 6709 - components: - - type: Transform - pos: 27.5,7.5 - parent: 34 - - uid: 6710 - components: - - type: Transform - pos: 26.5,7.5 - parent: 34 - - uid: 6711 - components: - - type: Transform - pos: 31.5,7.5 - parent: 34 - uid: 6950 components: - type: Transform rot: -1.5707963267948966 rad pos: 30.5,-20.5 parent: 34 + - uid: 7130 + components: + - type: Transform + pos: -49.5,-3.5 + parent: 34 - uid: 7160 components: - type: Transform @@ -27843,11 +28182,6 @@ entities: - type: Transform pos: -30.5,-30.5 parent: 34 - - uid: 7689 - components: - - type: Transform - pos: 23.5,7.5 - parent: 34 - uid: 7690 components: - type: Transform @@ -28088,11 +28422,6 @@ entities: - type: Transform pos: -53.5,-2.5 parent: 34 - - uid: 7785 - components: - - type: Transform - pos: -53.5,-1.5 - parent: 34 - uid: 7786 components: - type: Transform @@ -28196,6 +28525,11 @@ entities: rot: 1.5707963267948966 rad pos: -21.5,-37.5 parent: 34 + - uid: 9255 + components: + - type: Transform + pos: 29.5,8.5 + parent: 34 - uid: 9330 components: - type: Transform @@ -28421,6 +28755,71 @@ entities: rot: -1.5707963267948966 rad pos: 16.5,-41.5 parent: 34 + - uid: 11287 + components: + - type: Transform + pos: -23.5,-7.5 + parent: 34 + - uid: 11288 + components: + - type: Transform + pos: -23.5,-6.5 + parent: 34 + - uid: 11289 + components: + - type: Transform + pos: -23.5,-5.5 + parent: 34 + - uid: 11301 + components: + - type: Transform + pos: -23.5,-4.5 + parent: 34 + - uid: 11318 + components: + - type: Transform + pos: -23.5,-3.5 + parent: 34 + - uid: 11345 + components: + - type: Transform + pos: -28.5,-10.5 + parent: 34 + - uid: 11346 + components: + - type: Transform + pos: -29.5,-10.5 + parent: 34 + - uid: 11349 + components: + - type: Transform + pos: -30.5,-10.5 + parent: 34 + - uid: 11350 + components: + - type: Transform + pos: -31.5,-10.5 + parent: 34 + - uid: 11351 + components: + - type: Transform + pos: -32.5,-10.5 + parent: 34 + - uid: 11364 + components: + - type: Transform + pos: -33.5,-10.5 + parent: 34 + - uid: 11380 + components: + - type: Transform + pos: -34.5,-10.5 + parent: 34 + - uid: 11382 + components: + - type: Transform + pos: -35.5,-10.5 + parent: 34 - uid: 11483 components: - type: Transform @@ -28803,6 +29202,36 @@ entities: - type: Transform pos: -29.5,-61.5 parent: 34 + - uid: 14391 + components: + - type: Transform + pos: 32.5,8.5 + parent: 34 + - uid: 14392 + components: + - type: Transform + pos: 32.5,12.5 + parent: 34 + - uid: 14393 + components: + - type: Transform + pos: 32.5,13.5 + parent: 34 + - uid: 14394 + components: + - type: Transform + pos: 32.5,11.5 + parent: 34 + - uid: 14395 + components: + - type: Transform + pos: 32.5,10.5 + parent: 34 + - uid: 14396 + components: + - type: Transform + pos: 32.5,9.5 + parent: 34 - proto: Chair entities: - uid: 923 @@ -28823,11 +29252,6 @@ entities: rot: 1.5707963267948966 rad pos: -32.5,1.5 parent: 34 - - uid: 2500 - components: - - type: Transform - pos: -28.5,-7.5 - parent: 34 - uid: 2716 components: - type: Transform @@ -29120,12 +29544,6 @@ entities: rot: 3.141592653589793 rad pos: 7.5,13.5 parent: 34 - - uid: 6194 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,14.5 - parent: 34 - uid: 6195 components: - type: Transform @@ -29191,12 +29609,6 @@ entities: - type: Transform pos: -14.5,-18.5 parent: 34 - - uid: 11351 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -28.5,-9.5 - parent: 34 - uid: 13596 components: - type: Transform @@ -29209,13 +29621,6 @@ entities: rot: 3.141592653589793 rad pos: 23.5,-14.5 parent: 34 -- proto: ChairCursed - entities: - - uid: 11273 - components: - - type: Transform - pos: 26.5,12.5 - parent: 34 - proto: ChairFolding entities: - uid: 127 @@ -29316,6 +29721,12 @@ entities: rot: -1.5707963267948966 rad pos: -5.5,-17.5 parent: 34 + - uid: 3333 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.258026,-7.8149385 + parent: 34 - uid: 3814 components: - type: Transform @@ -29332,6 +29743,11 @@ entities: rot: -1.5707963267948966 rad pos: 33.5,-29.5 parent: 34 + - uid: 4982 + components: + - type: Transform + pos: -20.508026,-6.5961885 + parent: 34 - uid: 5560 components: - type: Transform @@ -29384,6 +29800,11 @@ entities: rot: 1.5707963267948966 rad pos: 38.5,-44.5 parent: 34 + - uid: 6080 + components: + - type: Transform + pos: -16.648651,-7.7211885 + parent: 34 - uid: 10827 components: - type: Transform @@ -29414,12 +29835,6 @@ entities: rot: -1.5707963267948966 rad pos: 2.6408753,-18.398872 parent: 34 - - uid: 11209 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 21.024513,12.558414 - parent: 34 - uid: 11304 components: - type: Transform @@ -29531,6 +29946,12 @@ entities: rot: 3.141592653589793 rad pos: 70.505264,-26.38779 parent: 34 + - uid: 14380 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 35.54226,11.607536 + parent: 34 - proto: ChairFoldingSpawnFolded entities: - uid: 1098 @@ -29567,6 +29988,12 @@ entities: rot: -1.5707963267948966 rad pos: -9.466693,2.5873513 parent: 34 + - uid: 1287 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -35.452766,-18.127209 + parent: 34 - uid: 1330 components: - type: Transform @@ -29595,11 +30022,10 @@ entities: rot: 3.141592653589793 rad pos: -32.12718,2.892284 parent: 34 - - uid: 2251 + - uid: 2090 components: - type: Transform - rot: 3.141592653589793 rad - pos: -51.63605,-7.0745425 + pos: -50.694706,-13.548811 parent: 34 - uid: 2312 components: @@ -29660,6 +30086,11 @@ entities: - type: Transform pos: 10.5,8.5 parent: 34 + - uid: 6607 + components: + - type: Transform + pos: 16.459742,12.608646 + parent: 34 - uid: 7616 components: - type: Transform @@ -29671,6 +30102,18 @@ entities: rot: 1.5707963267948966 rad pos: 40.5,-16 parent: 34 + - uid: 9251 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -50.006832,1.7882032 + parent: 34 + - uid: 10445 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -29.738409,-7.3296747 + parent: 34 - uid: 10614 components: - type: Transform @@ -29707,11 +30150,6 @@ entities: rot: 1.5707963267948966 rad pos: 46.5,-34.5 parent: 34 - - uid: 14066 - components: - - type: Transform - pos: -49.500015,-13.372116 - parent: 34 - uid: 14076 components: - type: Transform @@ -29735,8 +30173,26 @@ entities: rot: 3.141592653589793 rad pos: 63.542774,-22.179792 parent: 34 + - uid: 14447 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.510635,17.784647 + parent: 34 - proto: ChairOfficeLight entities: + - uid: 2042 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -49.65472,-1.443105 + parent: 34 + - uid: 2187 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -41.501663,-5.3795195 + parent: 34 - uid: 2698 components: - type: Transform @@ -29770,12 +30226,6 @@ entities: - type: Transform pos: 1.5,-42.5 parent: 34 - - uid: 10533 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -34.66204,-18.706656 - parent: 34 - uid: 13170 components: - type: Transform @@ -29790,101 +30240,77 @@ entities: parent: 34 - proto: ChairRitual entities: - - uid: 2290 + - uid: 404 components: - type: Transform rot: 3.141592653589793 rad - pos: -29.5,-16.5 + pos: -29.5,-17.5 parent: 34 - - uid: 2293 + - uid: 462 components: - type: Transform rot: 3.141592653589793 rad - pos: -28.5,-16.5 + pos: -30.5,-16.5 parent: 34 - - uid: 2294 + - uid: 491 components: - type: Transform rot: 3.141592653589793 rad - pos: -25.5,-16.5 + pos: -25.5,-17.5 parent: 34 - - uid: 2295 + - uid: 497 components: - type: Transform rot: 3.141592653589793 rad - pos: -24.5,-16.5 + pos: -30.5,-17.5 parent: 34 - - uid: 2296 + - uid: 501 components: - type: Transform rot: 3.141592653589793 rad - pos: -24.5,-17.5 + pos: -29.5,-15.5 parent: 34 - - uid: 2297 + - uid: 512 components: - type: Transform rot: 3.141592653589793 rad - pos: -25.5,-17.5 + pos: -24.5,-16.5 parent: 34 - - uid: 2298 + - uid: 513 components: - type: Transform rot: 3.141592653589793 rad - pos: -28.5,-17.5 + pos: -24.5,-17.5 parent: 34 - - uid: 2299 + - uid: 520 components: - type: Transform rot: 3.141592653589793 rad - pos: -29.5,-17.5 + pos: -30.5,-15.5 parent: 34 - - uid: 2535 + - uid: 521 components: - type: Transform rot: 3.141592653589793 rad - pos: -24.5,-15.5 + pos: -29.5,-16.5 parent: 34 - - uid: 2536 + - uid: 527 components: - type: Transform rot: 3.141592653589793 rad pos: -25.5,-15.5 parent: 34 - - uid: 2537 + - uid: 563 components: - type: Transform rot: 3.141592653589793 rad - pos: -28.5,-15.5 + pos: -25.5,-16.5 parent: 34 - - uid: 2538 + - uid: 619 components: - type: Transform rot: 3.141592653589793 rad - pos: -29.5,-15.5 - parent: 34 - - uid: 4969 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,10.5 - parent: 34 - - uid: 11270 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,11.5 - parent: 34 - - uid: 11271 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,10.5 - parent: 34 - - uid: 11272 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,11.5 + pos: -24.5,-15.5 parent: 34 - proto: ChairWeb entities: @@ -29944,16 +30370,11 @@ entities: rot: -1.5707963267948966 rad pos: 3.5,-12.5 parent: 34 - - uid: 2180 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -43.600483,-7.2082725 - parent: 34 - - uid: 2182 + - uid: 2190 components: - type: Transform - pos: -43.329647,-5.8531647 + rot: -1.5707963267948966 rad + pos: -34.76441,-7.718305 parent: 34 - uid: 2932 components: @@ -29972,11 +30393,6 @@ entities: - type: Transform pos: -39.388264,-16.844929 parent: 34 - - uid: 3363 - components: - - type: Transform - pos: -32.70509,-14.717291 - parent: 34 - uid: 3504 components: - type: Transform @@ -30029,18 +30445,6 @@ entities: rot: 1.5707963267948966 rad pos: 16.705755,3.5048404 parent: 34 - - uid: 5844 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -44.298447,2.4496703 - parent: 34 - - uid: 5846 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -49.38629,2.56675 - parent: 34 - uid: 6030 components: - type: Transform @@ -30064,6 +30468,42 @@ entities: rot: 1.5707963267948966 rad pos: -29.240564,-23.275719 parent: 34 + - uid: 11050 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.657974,-3.41722 + parent: 34 + - uid: 11088 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.6736,-4.276595 + parent: 34 + - uid: 11106 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -29.2986,-3.370345 + parent: 34 + - uid: 11137 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -29.282974,-4.214095 + parent: 34 + - uid: 11161 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.470474,-5.214095 + parent: 34 + - uid: 11162 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -27.581554,-5.2400603 + parent: 34 - uid: 11500 components: - type: Transform @@ -30120,13 +30560,6 @@ entities: - type: Transform pos: -3.5,7.5 parent: 34 -- proto: CheckerBoard - entities: - - uid: 2195 - components: - - type: Transform - pos: -43.50117,-6.4077773 - parent: 34 - proto: ChemDispenser entities: - uid: 4290 @@ -30141,10 +30574,10 @@ entities: parent: 34 - proto: ChemistryHotplate entities: - - uid: 6538 + - uid: 9258 components: - type: Transform - pos: -31.5,-17.5 + pos: -43.5,-7.5 parent: 34 - uid: 11017 components: @@ -30163,7 +30596,7 @@ entities: - type: Transform pos: -1.5,-28.5 parent: 34 - - uid: 12338 + - uid: 3324 components: - type: Transform pos: -16.5,-3.5 @@ -30181,6 +30614,14 @@ entities: rot: -1.5707963267948966 rad pos: 38.7575,-43.8199 parent: 34 +- proto: ChurchOrganInstrument + entities: + - uid: 4433 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -29.5,-13.5 + parent: 34 - proto: Cigar entities: - uid: 11126 @@ -30211,11 +30652,6 @@ entities: - type: Transform pos: 34.255344,-0.2222271 parent: 34 - - uid: 10835 - components: - - type: Transform - pos: 21.615124,12.340506 - parent: 34 - uid: 11120 components: - type: Transform @@ -30277,17 +30713,6 @@ entities: - type: Transform pos: -54.854465,0.9492698 parent: 34 - - uid: 11242 - components: - - type: Transform - pos: 21.380749,12.059061 - parent: 34 - - uid: 11243 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 20.615124,12.090332 - parent: 34 - uid: 11621 components: - type: Transform @@ -30305,6 +30730,43 @@ entities: rot: 3.141592653589793 rad pos: 33.755344,-0.6284771 parent: 34 + - uid: 14381 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.66726,11.482536 + parent: 34 + - uid: 14382 + components: + - type: Transform + pos: 34.72976,11.357536 + parent: 34 + - uid: 14383 + components: + - type: Transform + pos: 35.07351,11.638786 + parent: 34 + - uid: 14384 + components: + - type: Transform + pos: 35.13601,11.326286 + parent: 34 + - uid: 14385 + components: + - type: Transform + pos: 35.66726,12.029411 + parent: 34 + - uid: 14387 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.97976,11.748161 + parent: 34 + - uid: 14389 + components: + - type: Transform + pos: 34.432884,11.373161 + parent: 34 - proto: CigarSpent entities: - uid: 11125 @@ -30322,6 +30784,13 @@ entities: - type: Transform pos: -51.367073,12.549892 parent: 34 +- proto: CigCartonBlack + entities: + - uid: 14386 + components: + - type: Transform + pos: 35.42027,13.6254425 + parent: 34 - proto: CigPackBlue entities: - uid: 5904 @@ -30346,10 +30815,10 @@ entities: parent: 34 - proto: CircuitImprinter entities: - - uid: 12277 + - uid: 3367 components: - type: Transform - pos: -33.5,-19.5 + pos: -41.5,-7.5 parent: 34 - proto: CleanerDispenser entities: @@ -30410,6 +30879,11 @@ entities: - type: Transform pos: 22.5,9.5 parent: 34 + - uid: 11472 + components: + - type: Transform + pos: -35.5,-11.5 + parent: 34 - uid: 11661 components: - type: Transform @@ -30544,6 +31018,11 @@ entities: - type: Transform pos: 21.5,9.5 parent: 34 + - uid: 11424 + components: + - type: Transform + pos: -34.5,-11.5 + parent: 34 - uid: 12997 components: - type: Transform @@ -30575,10 +31054,10 @@ entities: parent: 34 - proto: ClosetL3ScienceFilled entities: - - uid: 918 + - uid: 2067 components: - type: Transform - pos: -26.5,-11.5 + pos: -51.5,1.5 parent: 34 - proto: ClosetL3VirologyFilled entities: @@ -30601,13 +31080,13 @@ entities: - type: Transform pos: 15.5,-30.5 parent: 34 -- proto: ClosetMaintenanceFilledRandom - entities: - - uid: 692 + - uid: 14478 components: - type: Transform - pos: 33.5,8.5 + pos: 26.5,7.5 parent: 34 +- proto: ClosetMaintenanceFilledRandom + entities: - uid: 1608 components: - type: Transform @@ -30623,6 +31102,11 @@ entities: - type: Transform pos: -22.5,-31.5 parent: 34 + - uid: 5047 + components: + - type: Transform + pos: 22.5,-45.5 + parent: 34 - uid: 9607 components: - type: Transform @@ -30633,6 +31117,11 @@ entities: - type: Transform pos: -22.5,-17.5 parent: 34 + - uid: 11396 + components: + - type: Transform + pos: -24.5,-3.5 + parent: 34 - uid: 11660 components: - type: Transform @@ -30663,6 +31152,11 @@ entities: - type: Transform pos: -55.5,-19.5 parent: 34 + - uid: 14365 + components: + - type: Transform + pos: -42.5,1.5 + parent: 34 - proto: ClosetRadiationSuitFilled entities: - uid: 1097 @@ -30670,15 +31164,15 @@ entities: - type: Transform pos: -28.5,-27.5 parent: 34 - - uid: 2522 + - uid: 2057 components: - type: Transform - pos: -29.5,-27.5 + pos: -51.5,2.5 parent: 34 - - uid: 3854 + - uid: 2522 components: - type: Transform - pos: -25.5,-11.5 + pos: -29.5,-27.5 parent: 34 - proto: ClosetSteelBase entities: @@ -30737,17 +31231,6 @@ entities: parent: 34 - proto: ClosetWallEmergencyFilledRandom entities: - - uid: 2252 - components: - - type: Transform - pos: -44.5,-8.5 - parent: 34 - - uid: 2265 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -44.5,-2.5 - parent: 34 - uid: 3275 components: - type: Transform @@ -30770,19 +31253,13 @@ entities: - type: Transform pos: 40.5,-38.5 parent: 34 -- proto: ClosetWallFireFilledRandom - entities: - - uid: 2253 - components: - - type: Transform - pos: -48.5,-8.5 - parent: 34 - - uid: 2266 + - uid: 14363 components: - type: Transform - rot: 3.141592653589793 rad - pos: -48.5,-2.5 + pos: -44.5,6.5 parent: 34 +- proto: ClosetWallFireFilledRandom + entities: - uid: 11998 components: - type: Transform @@ -30794,6 +31271,11 @@ entities: - type: Transform pos: 42.5,-38.5 parent: 34 + - uid: 14362 + components: + - type: Transform + pos: -43.5,6.5 + parent: 34 - proto: ClosetWallMaintenanceFilledRandom entities: - uid: 1081 @@ -30801,6 +31283,11 @@ entities: - type: Transform pos: 3.5,12.5 parent: 34 + - uid: 5053 + components: + - type: Transform + pos: 24.5,-40.5 + parent: 34 - uid: 11637 components: - type: Transform @@ -30996,10 +31483,10 @@ entities: parent: 34 - proto: ClothingEyesGlassesSunglasses entities: - - uid: 13222 + - uid: 4960 components: - type: Transform - pos: 53.300083,-44.18586 + pos: 52.7169,-45.59478 parent: 34 - proto: ClothingHandsGlovesBoxingBlue entities: @@ -31034,13 +31521,6 @@ entities: - type: Transform pos: 4.3164816,-50.59076 parent: 34 -- proto: ClothingHeadHatBowlerHat - entities: - - uid: 2277 - components: - - type: Transform - pos: -47.420444,-4.453449 - parent: 34 - proto: ClothingHeadHatCone entities: - uid: 3742 @@ -31085,17 +31565,17 @@ entities: parent: 34 - proto: ClothingHeadHatGreensoftFlipped entities: - - uid: 3862 + - uid: 5063 components: - type: Transform - pos: -17.141165,-8.082127 + pos: -18.13864,-8.158751 parent: 34 - proto: ClothingHeadHatGreysoftFlipped entities: - - uid: 11081 + - uid: 14704 components: - type: Transform - pos: -41.92531,-6.956344 + pos: -28.254768,-6.494113 parent: 34 - proto: ClothingHeadHatPaper entities: @@ -31162,11 +31642,6 @@ entities: - type: Transform pos: -9.611714,-26.883451 parent: 34 - - uid: 11587 - components: - - type: Transform - pos: -43.477463,2.4802814 - parent: 34 - proto: ClothingHeadHatYellowsoftFlipped entities: - uid: 12156 @@ -31205,11 +31680,6 @@ entities: parent: 34 - proto: ClothingKimonoBlue entities: - - uid: 2233 - components: - - type: Transform - pos: -46.29961,-6.3338046 - parent: 34 - uid: 11543 components: - type: Transform @@ -31220,18 +31690,23 @@ entities: - type: Transform pos: -56.65657,-8.265217 parent: 34 -- proto: ClothingKimonoPink - entities: - - uid: 2232 + - uid: 14702 components: - type: Transform - pos: -46.664196,-6.5214357 + pos: 22.636002,11.485231 parent: 34 +- proto: ClothingKimonoPink + entities: - uid: 11294 components: - type: Transform pos: -56.21907,-8.286066 parent: 34 + - uid: 14701 + components: + - type: Transform + pos: 22.339127,11.703981 + parent: 34 - proto: ClothingKimonoPurple entities: - uid: 12018 @@ -31284,13 +31759,6 @@ entities: - type: Transform pos: 50.279686,-27.395357 parent: 34 -- proto: ClothingMaskGasExplorer - entities: - - uid: 11088 - components: - - type: Transform - pos: -23.165615,-6.7525067 - parent: 34 - proto: ClothingMaskSterile entities: - uid: 1806 @@ -31335,10 +31803,10 @@ entities: parent: 34 - proto: ClothingNeckMantleMystagogue entities: - - uid: 11049 + - uid: 2233 components: - type: Transform - pos: -35.36167,-5.56062 + pos: -50.533714,-14.256508 parent: 34 - proto: ClothingNeckMedicalmedal entities: @@ -31349,10 +31817,10 @@ entities: parent: 34 - proto: ClothingNeckSciencemedal entities: - - uid: 11900 + - uid: 2110 components: - type: Transform - pos: -34.50116,-3.46768 + pos: -49.504314,-14.507641 parent: 34 - proto: ClothingNeckSecuritymedal entities: @@ -31417,15 +31885,15 @@ entities: parent: 34 - proto: ClothingOuterHoodieGrey entities: - - uid: 3366 + - uid: 11173 components: - type: Transform - pos: -50.284447,-6.6377063 + pos: -53.335823,13.441137 parent: 34 - - uid: 11173 + - uid: 14697 components: - type: Transform - pos: -53.335823,13.441137 + pos: 19.776627,12.828981 parent: 34 - proto: ClothingOuterRobesJudge entities: @@ -31460,33 +31928,19 @@ entities: - type: Transform pos: 39.308846,-33.6645 parent: 34 -- proto: ClothingShoesBootsLaceup - entities: - - uid: 2275 - components: - - type: Transform - pos: -47.71953,-3.922996 - parent: 34 - proto: ClothingShoesLeather entities: - - uid: 3368 + - uid: 14698 components: - type: Transform - pos: -50.26882,-7.091146 + pos: 16.979752,12.782106 parent: 34 - proto: ClothingShoesSlippers entities: - - uid: 3367 + - uid: 14699 components: - type: Transform - pos: -45.26882,-7.1380534 - parent: 34 -- proto: ClothingShoesTourist - entities: - - uid: 10939 - components: - - type: Transform - pos: -48.775764,1.1938145 + pos: 23.198502,12.032106 parent: 34 - proto: ClothingShoesWizard entities: @@ -31522,28 +31976,12 @@ entities: - type: Transform pos: -0.3965286,3.36616 parent: 34 - - uid: 12020 - components: - - type: MetaData - desc: How about you "geta" real shoe?? - name: geta - - type: Transform - pos: -47.218323,-9.130675 - parent: 34 - - uid: 12021 - components: - - type: MetaData - desc: How about you "geta" real shoe?? - name: geta - - type: Transform - pos: -47.072487,-9.339152 - parent: 34 - proto: ClothingUnderSocksBee entities: - - uid: 3369 + - uid: 14700 components: - type: Transform - pos: -47.789196,-7.7931514 + pos: 21.745377,12.188356 parent: 34 - proto: ClothingUnderSocksCoder entities: @@ -31596,13 +32034,6 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage -- proto: ClothingUniformJumpsuitDetectiveGrey - entities: - - uid: 2274 - components: - - type: Transform - pos: -47.672653,-4.517158 - parent: 34 - proto: ClothingUniformJumpsuitEngineeringHazard entities: - uid: 11400 @@ -31636,11 +32067,6 @@ entities: - type: InsideEntityStorage - proto: ClothingUniformJumpsuitTshirtJeans entities: - - uid: 10938 - components: - - type: Transform - pos: -48.369514,1.6107705 - parent: 34 - uid: 11174 components: - type: Transform @@ -31713,6 +32139,17 @@ entities: - type: Transform pos: 38.5,-43.5 parent: 34 + - uid: 14475 + components: + - type: Transform + pos: 31.5,13.5 + parent: 34 + - uid: 14477 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,15.5 + parent: 34 - proto: Cobweb2 entities: - uid: 6041 @@ -31720,14 +32157,19 @@ entities: - type: Transform pos: 47.5,-43.5 parent: 34 -- proto: ComfyChair - entities: - - uid: 909 + - uid: 14476 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -34.5,-5.5 + pos: 35.5,13.5 parent: 34 + - uid: 14479 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,18.5 + parent: 34 +- proto: ComfyChair + entities: - uid: 1001 components: - type: Transform @@ -31740,23 +32182,11 @@ entities: rot: -1.5707963267948966 rad pos: -17.5,-38.5 parent: 34 - - uid: 2187 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -43.5,-4.5 - parent: 34 - - uid: 2188 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -41.5,-4.5 - parent: 34 - - uid: 2189 + - uid: 3472 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -41.5,-6.5 + rot: 1.5707963267948966 rad + pos: -30.5,-13.5 parent: 34 - uid: 3736 components: @@ -31794,6 +32224,12 @@ entities: rot: 3.141592653589793 rad pos: 29.5,-33.5 parent: 34 + - uid: 10442 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,-5.5 + parent: 34 - uid: 11094 components: - type: Transform @@ -31816,6 +32252,12 @@ entities: rot: 1.5707963267948966 rad pos: -11.5,2.5 parent: 34 + - uid: 14658 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -33.5,-5.5 + parent: 34 - proto: ComputerAlert entities: - uid: 13029 @@ -31832,16 +32274,12 @@ entities: parent: 34 - proto: ComputerAnalysisConsole entities: - - uid: 404 + - uid: 2219 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -29.5,-6.5 + rot: 1.5707963267948966 rad + pos: -50.5,-1.5 parent: 34 - - type: DeviceLinkSource - linkedPorts: - 49: - - ArtifactAnalyzerSender: ArtifactAnalyzerReceiver - proto: ComputerCargoBounty entities: - uid: 7863 @@ -31873,14 +32311,6 @@ entities: rot: 1.5707963267948966 rad pos: 6.5,-41.5 parent: 34 - - type: DeviceLinkSource - linkedPorts: - 4263: - - MedicalScannerSender: CloningPodReceiver - - CloningPodSender: CloningPodReceiver - 12439: - - MedicalScannerSender: MedicalScannerReceiver - - CloningPodSender: MedicalScannerReceiver - proto: ComputerComms entities: - uid: 13033 @@ -31941,17 +32371,17 @@ entities: rot: 1.5707963267948966 rad pos: -26.5,-30.5 parent: 34 - - uid: 955 - components: - - type: Transform - pos: -33.5,-3.5 - parent: 34 - uid: 1962 components: - type: Transform rot: 1.5707963267948966 rad pos: -19.5,-19.5 parent: 34 + - uid: 2245 + components: + - type: Transform + pos: -51.5,-12.5 + parent: 34 - uid: 3502 components: - type: Transform @@ -31987,11 +32417,10 @@ entities: parent: 34 - proto: ComputerMassMedia entities: - - uid: 2507 + - uid: 2548 components: - type: Transform - rot: 3.141592653589793 rad - pos: -49.5,-14.5 + pos: -35.5,-17.5 parent: 34 - proto: ComputerMedicalRecords entities: @@ -32065,11 +32494,10 @@ entities: parent: 34 - proto: ComputerResearchAndDevelopment entities: - - uid: 2029 + - uid: 253 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -35.5,-18.5 + pos: -41.5,-4.5 parent: 34 - uid: 13030 components: @@ -32152,10 +32580,11 @@ entities: parent: 34 - proto: ComputerTechnologyDiskTerminal entities: - - uid: 2549 + - uid: 7131 components: - type: Transform - pos: -35.5,-15.5 + rot: 1.5707963267948966 rad + pos: -43.5,-3.5 parent: 34 - proto: ComputerTelevision entities: @@ -32179,17 +32608,17 @@ entities: - type: Transform pos: 54.5,-31.5 parent: 34 - - uid: 13848 + - uid: 14038 components: - type: Transform rot: -1.5707963267948966 rad - pos: 52.5,-44.5 + pos: 19.5,-39.5 parent: 34 - - uid: 14038 + - uid: 14442 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,-39.5 + rot: 3.141592653589793 rad + pos: 31.5,18.5 parent: 34 - proto: ConveyorBelt entities: @@ -32199,311 +32628,206 @@ entities: rot: 3.141592653589793 rad pos: -17.5,-43.5 parent: 34 - - type: DeviceLinkSink - links: - - 1054 - uid: 1307 components: - type: Transform rot: 1.5707963267948966 rad pos: -17.5,-42.5 parent: 34 - - type: DeviceLinkSink - links: - - 1054 - uid: 3211 components: - type: Transform rot: 1.5707963267948966 rad pos: -31.5,-53.5 parent: 34 - - type: DeviceLinkSink - links: - - 13754 - uid: 3212 components: - type: Transform rot: 3.141592653589793 rad pos: -31.5,-54.5 parent: 34 - - type: DeviceLinkSink - links: - - 13754 - uid: 3213 components: - type: Transform rot: 3.141592653589793 rad pos: -31.5,-55.5 parent: 34 - - type: DeviceLinkSink - links: - - 13754 - uid: 3214 components: - type: Transform rot: 3.141592653589793 rad pos: -31.5,-56.5 parent: 34 - - type: DeviceLinkSink - links: - - 13754 - uid: 3215 components: - type: Transform rot: 3.141592653589793 rad pos: -31.5,-57.5 parent: 34 - - type: DeviceLinkSink - links: - - 13754 - uid: 8449 components: - type: Transform rot: 3.141592653589793 rad pos: -21.5,-43.5 parent: 34 - - type: DeviceLinkSink - links: - - 1054 - uid: 10119 components: - type: Transform rot: 3.141592653589793 rad pos: -30.5,-46.5 parent: 34 - - type: DeviceLinkSink - links: - - 13754 - uid: 10282 components: - type: Transform pos: -38.5,7.5 parent: 34 - - type: DeviceLinkSink - links: - - 11254 - uid: 10283 components: - type: Transform pos: -38.5,8.5 parent: 34 - - type: DeviceLinkSink - links: - - 11254 - uid: 10284 components: - type: Transform pos: -38.5,9.5 parent: 34 - - type: DeviceLinkSink - links: - - 11254 - uid: 10285 components: - type: Transform pos: -38.5,10.5 parent: 34 - - type: DeviceLinkSink - links: - - 11254 - uid: 12085 components: - type: Transform rot: 3.141592653589793 rad pos: -30.5,-44.5 parent: 34 - - type: DeviceLinkSink - links: - - 13754 - uid: 12354 components: - type: Transform rot: 3.141592653589793 rad pos: -30.5,-45.5 parent: 34 - - type: DeviceLinkSink - links: - - 13754 - uid: 12691 components: - type: Transform rot: 1.5707963267948966 rad pos: -16.5,-42.5 parent: 34 - - type: DeviceLinkSink - links: - - 1054 - uid: 12692 components: - type: Transform rot: 1.5707963267948966 rad pos: -15.5,-42.5 parent: 34 - - type: DeviceLinkSink - links: - - 1054 - uid: 12693 components: - type: Transform rot: 1.5707963267948966 rad pos: -14.5,-42.5 parent: 34 - - type: DeviceLinkSink - links: - - 1054 - uid: 12697 components: - type: Transform rot: 1.5707963267948966 rad pos: -13.5,-42.5 parent: 34 - - type: DeviceLinkSink - links: - - 1054 - uid: 12698 components: - type: Transform rot: 3.141592653589793 rad pos: -12.5,-42.5 parent: 34 - - type: DeviceLinkSink - links: - - 1054 - uid: 12699 components: - type: Transform rot: 3.141592653589793 rad pos: -12.5,-41.5 parent: 34 - - type: DeviceLinkSink - links: - - 1054 - uid: 13724 components: - type: Transform rot: 3.141592653589793 rad pos: -30.5,-47.5 parent: 34 - - type: DeviceLinkSink - links: - - 13754 - uid: 13727 components: - type: Transform rot: 3.141592653589793 rad pos: -30.5,-48.5 parent: 34 - - type: DeviceLinkSink - links: - - 13754 - uid: 13737 components: - type: Transform rot: 1.5707963267948966 rad pos: -32.5,-58.5 parent: 34 - - type: DeviceLinkSink - links: - - 13754 - uid: 13738 components: - type: Transform rot: 3.141592653589793 rad pos: -32.5,-59.5 parent: 34 - - type: DeviceLinkSink - links: - - 13754 - uid: 13739 components: - type: Transform rot: 3.141592653589793 rad pos: -32.5,-60.5 parent: 34 - - type: DeviceLinkSink - links: - - 13754 - uid: 13740 components: - type: Transform rot: 3.141592653589793 rad pos: -32.5,-61.5 parent: 34 - - type: DeviceLinkSink - links: - - 13754 - uid: 13741 components: - type: Transform rot: 3.141592653589793 rad pos: -32.5,-62.5 parent: 34 - - type: DeviceLinkSink - links: - - 13754 - uid: 13742 components: - type: Transform rot: 3.141592653589793 rad pos: -32.5,-63.5 parent: 34 - - type: DeviceLinkSink - links: - - 13754 - uid: 13745 components: - type: Transform rot: 3.141592653589793 rad pos: -31.5,-58.5 parent: 34 - - type: DeviceLinkSink - links: - - 13754 - uid: 13748 components: - type: Transform rot: 3.141592653589793 rad pos: -30.5,-49.5 parent: 34 - - type: DeviceLinkSink - links: - - 13754 - uid: 13750 components: - type: Transform rot: 3.141592653589793 rad pos: -30.5,-50.5 parent: 34 - - type: DeviceLinkSink - links: - - 13754 - uid: 13751 components: - type: Transform rot: 3.141592653589793 rad pos: -30.5,-51.5 parent: 34 - - type: DeviceLinkSink - links: - - 13754 - uid: 13752 components: - type: Transform rot: 3.141592653589793 rad pos: -30.5,-52.5 parent: 34 - - type: DeviceLinkSink - links: - - 13754 - uid: 13753 components: - type: Transform rot: 3.141592653589793 rad pos: -30.5,-53.5 parent: 34 - - type: DeviceLinkSink - links: - - 13754 - proto: CowToolboxFilled entities: - uid: 11086 @@ -32538,29 +32862,18 @@ entities: - 0 - proto: CrateArtifactContainer entities: - - uid: 958 + - uid: 2189 components: - type: Transform - pos: -25.5,-3.5 + pos: -48.5,2.5 + parent: 34 +- proto: CrateCoffin + entities: + - uid: 522 + components: + - type: Transform + pos: -34.5,-15.5 parent: 34 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 4.3114347 - - 16.219208 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - proto: CrateEmergencyExplosive entities: - uid: 4924 @@ -32740,6 +33053,13 @@ entities: - type: Transform pos: -7.5,-34.5 parent: 34 +- proto: CrateFreezer + entities: + - uid: 5005 + components: + - type: Transform + pos: 51.5,-45.5 + parent: 34 - proto: CrateGenericSteel entities: - uid: 8871 @@ -32780,52 +33100,30 @@ entities: ent: null - proto: CrateHydroponics entities: - - uid: 431 + - uid: 13696 components: - type: Transform - pos: -16.5,-4.5 + pos: -47.5,7.5 parent: 34 - - 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: - - 895 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - uid: 14107 components: - type: Transform pos: 36.5,4.5 parent: 34 -- proto: CrateHydroSecure +- proto: CrateHydroponicsSeedsExotic entities: - - uid: 254 + - uid: 2164 components: - type: Transform pos: -14.5,-7.5 parent: 34 +- proto: CrateInternals + entities: + - uid: 14744 + components: + - type: Transform + pos: -51.5,-24.5 + parent: 34 - proto: CrateMedicalSecure entities: - uid: 2693 @@ -32858,71 +33156,20 @@ entities: - type: Transform pos: -1.5,-18.5 parent: 34 -- proto: CratePrivateSecure +- proto: CrateScience entities: - - uid: 5062 + - uid: 5276 components: - type: Transform - pos: -48.5,2.5 + pos: -51.5,0.5 parent: 34 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 4.3114347 - - 16.219208 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - proto: CrateScienceSecure entities: - - uid: 2529 + - uid: 9261 components: - type: Transform - pos: -32.5,-19.5 + pos: -41.5,-6.5 parent: 34 - - type: Lock - locked: False - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 2.0909052 - - 7.865786 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 1942 - - 2061 - - 2073 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - proto: CrateSecurityNonlethal entities: - uid: 4925 @@ -33005,6 +33252,11 @@ entities: showEnts: False occludes: True ent: null + - uid: 14457 + components: + - type: Transform + pos: 31.5,12.5 + parent: 34 - proto: CrayonBlack entities: - uid: 5947 @@ -33021,29 +33273,12 @@ entities: parent: 34 - proto: Crematorium entities: - - uid: 3361 + - uid: 540 components: - type: Transform - pos: -31.5,-13.5 + rot: -1.5707963267948966 rad + pos: -32.5,-15.5 parent: 34 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 4.3114347 - - 16.219208 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - proto: CrewMonitoringServer entities: - uid: 4462 @@ -33063,16 +33298,16 @@ entities: parent: 34 - proto: CrowbarRed entities: - - uid: 11104 + - uid: 9818 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 8.135655,-15.792711 + pos: -51.44046,-9.423321 parent: 34 - - uid: 11345 + - uid: 11104 components: - type: Transform - pos: -35.431194,-10.523052 + rot: -1.5707963267948966 rad + pos: 8.135655,-15.792711 parent: 34 - uid: 11692 components: @@ -33095,22 +33330,27 @@ entities: parent: 34 - proto: CryogenicSleepUnitSpawnerLateJoin entities: - - uid: 13090 + - uid: 492 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,14.5 + pos: 29.5,11.5 parent: 34 - - uid: 13094 + - uid: 493 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,14.5 + pos: 29.5,13.5 parent: 34 - - uid: 13105 + - uid: 934 components: - type: Transform - pos: 19.5,16.5 + rot: 3.141592653589793 rad + pos: 25.5,13.5 + parent: 34 + - uid: 2263 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,11.5 parent: 34 - proto: CryogenicSleepUnitSpawnerPrisoner entities: @@ -33145,12 +33385,34 @@ entities: - type: Transform pos: 1.0656376,-43.150978 parent: 34 -- proto: CultAltarSpawner +- proto: CurtainsBlackOpen entities: - - uid: 4967 + - uid: 551 + components: + - type: Transform + pos: -32.5,-13.5 + parent: 34 +- proto: CurtainsBlueOpen + entities: + - uid: 14645 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 54.5,-43.5 + parent: 34 +- proto: CurtainsGreenOpen + entities: + - uid: 2497 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -32.5,-19.5 + parent: 34 + - uid: 2516 components: - type: Transform - pos: 26.5,11.5 + rot: 3.141592653589793 rad + pos: -33.5,-19.5 parent: 34 - proto: CurtainsOrangeOpen entities: @@ -33176,12 +33438,22 @@ entities: parent: 34 - proto: CurtainsPurpleOpen entities: + - uid: 7107 + components: + - type: Transform + pos: -48.5,-11.5 + parent: 34 - uid: 12449 components: - type: Transform rot: -1.5707963267948966 rad pos: 31.5,-36.5 parent: 34 + - uid: 14069 + components: + - type: Transform + pos: -49.5,-11.5 + parent: 34 - proto: CyborgEndoskeleton entities: - uid: 8001 @@ -33236,6 +33508,13 @@ entities: - type: Transform pos: 9.5,16.5 parent: 34 +- proto: DefaultStationBeaconArtifactLab + entities: + - uid: 14408 + components: + - type: Transform + pos: -49.5,0.5 + parent: 34 - proto: DefaultStationBeaconAtmospherics entities: - uid: 13780 @@ -33285,13 +33564,6 @@ entities: - type: Transform pos: -10.5,-31.5 parent: 34 -- proto: DefaultStationBeaconChapel - entities: - - uid: 13696 - components: - - type: Transform - pos: -26.5,-15.5 - parent: 34 - proto: DefaultStationBeaconChemistry entities: - uid: 13006 @@ -33336,10 +33608,10 @@ entities: parent: 34 - proto: DefaultStationBeaconCryosleep entities: - - uid: 13159 + - uid: 936 components: - type: Transform - pos: 17.5,15.5 + pos: 27.5,11.5 parent: 34 - proto: DefaultStationBeaconDetectiveRoom entities: @@ -33355,13 +33627,6 @@ entities: - type: Transform pos: -41.5,8.5 parent: 34 -- proto: DefaultStationBeaconDorms - entities: - - uid: 13779 - components: - - type: Transform - pos: -48.5,-5.5 - parent: 34 - proto: DefaultStationBeaconEngineering entities: - uid: 11713 @@ -33486,20 +33751,6 @@ entities: - type: Transform pos: 18.5,-29.5 parent: 34 -- proto: DefaultStationBeaconRDRoom - entities: - - uid: 13153 - components: - - type: Transform - pos: -34.5,-4.5 - parent: 34 -- proto: DefaultStationBeaconReporter - entities: - - uid: 14071 - components: - - type: Transform - pos: -50.5,-13.5 - parent: 34 - proto: DefaultStationBeaconSalvage entities: - uid: 13688 @@ -33509,10 +33760,10 @@ entities: parent: 34 - proto: DefaultStationBeaconScience entities: - - uid: 13695 + - uid: 13142 components: - type: Transform - pos: -30.5,-8.5 + pos: -42.5,-5.5 parent: 34 - proto: DefaultStationBeaconSecurity entities: @@ -33521,6 +33772,15 @@ entities: - type: Transform pos: 25.5,-13.5 parent: 34 +- proto: DefaultStationBeaconServerRoom + entities: + - uid: 13144 + components: + - type: Transform + pos: -49.5,-13.5 + parent: 34 + - type: NavMapBeacon + text: Mystagogue's Room - proto: DefaultStationBeaconSolars entities: - uid: 13689 @@ -33792,12 +34052,6 @@ entities: rot: -1.5707963267948966 rad pos: 15.5,-22.5 parent: 34 - - uid: 8262 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -38.5,-13.5 - parent: 34 - uid: 8263 components: - type: Transform @@ -33842,6 +34096,12 @@ entities: parent: 34 - proto: DisposalJunctionFlipped entities: + - uid: 526 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,-10.5 + parent: 34 - uid: 4437 components: - type: Transform @@ -33892,6 +34152,53 @@ entities: parent: 34 - proto: DisposalPipe entities: + - uid: 546 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -39.5,-10.5 + parent: 34 + - uid: 549 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -43.5,-10.5 + parent: 34 + - uid: 550 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -42.5,-10.5 + parent: 34 + - uid: 575 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -44.5,-10.5 + parent: 34 + - uid: 576 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -45.5,-10.5 + parent: 34 + - uid: 594 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -41.5,-10.5 + parent: 34 + - uid: 615 + components: + - type: Transform + pos: -38.5,-13.5 + parent: 34 + - uid: 950 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -40.5,-10.5 + parent: 34 - uid: 1333 components: - type: Transform @@ -34346,11 +34653,6 @@ entities: - type: Transform pos: -38.5,-11.5 parent: 34 - - uid: 8240 - components: - - type: Transform - pos: -38.5,-10.5 - parent: 34 - uid: 8241 components: - type: Transform @@ -34445,18 +34747,6 @@ entities: rot: -1.5707963267948966 rad pos: -28.5,-0.5 parent: 34 - - uid: 8260 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -37.5,-13.5 - parent: 34 - - uid: 8261 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -36.5,-13.5 - parent: 34 - uid: 8282 components: - type: Transform @@ -35775,6 +36065,12 @@ entities: parent: 34 - proto: DisposalTrunk entities: + - uid: 581 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -46.5,-10.5 + parent: 34 - uid: 1343 components: - type: Transform @@ -35828,12 +36124,6 @@ entities: rot: 3.141592653589793 rad pos: -32.5,-23.5 parent: 34 - - uid: 8237 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -35.5,-13.5 - parent: 34 - uid: 8264 components: - type: Transform @@ -35960,6 +36250,11 @@ entities: - type: Transform pos: 6.5,-5.5 parent: 34 + - uid: 957 + components: + - type: Transform + pos: -46.5,-10.5 + parent: 34 - uid: 974 components: - type: Transform @@ -35985,11 +36280,6 @@ entities: - type: Transform pos: -48.5,-24.5 parent: 34 - - uid: 2531 - components: - - type: Transform - pos: -35.5,-13.5 - parent: 34 - uid: 4043 components: - type: Transform @@ -36100,11 +36390,6 @@ entities: parent: 34 - proto: DogBed entities: - - uid: 927 - components: - - type: Transform - pos: -31.5,-8.5 - parent: 34 - uid: 1847 components: - type: Transform @@ -36115,11 +36400,6 @@ entities: - type: Transform pos: -16.5,-16.5 parent: 34 - - uid: 2547 - components: - - type: Transform - pos: -35.5,-16.5 - parent: 34 - uid: 3038 components: - type: Transform @@ -36130,20 +36410,25 @@ entities: - type: Transform pos: 38.5,-11.5 parent: 34 - - uid: 6050 + - uid: 4707 components: - type: Transform - pos: 45.5,-45.5 + pos: -41.5,-9.5 parent: 34 - - uid: 10820 + - uid: 4961 components: - type: Transform - pos: -39.5,-6.5 + pos: 20.5,14.5 parent: 34 - - uid: 10821 + - uid: 6050 + components: + - type: Transform + pos: 45.5,-45.5 + parent: 34 + - uid: 10563 components: - type: Transform - pos: -39.5,-4.5 + pos: -31.5,-7.5 parent: 34 - uid: 11743 components: @@ -36155,6 +36440,11 @@ entities: - type: Transform pos: 27.5,-5.5 parent: 34 + - uid: 14680 + components: + - type: Transform + pos: 17.5,11.5 + parent: 34 - proto: DonkpocketBoxSpawner entities: - uid: 6964 @@ -36218,21 +36508,6 @@ entities: parent: 34 - proto: Dresser entities: - - uid: 2110 - components: - - type: Transform - pos: -48.5,1.5 - parent: 34 - - uid: 2206 - components: - - type: Transform - pos: -46.5,-6.5 - parent: 34 - - uid: 2230 - components: - - type: Transform - pos: -47.5,-4.5 - parent: 34 - uid: 9624 components: - type: Transform @@ -36261,11 +36536,21 @@ entities: parent: 34 - proto: DresserFilled entities: + - uid: 509 + components: + - type: Transform + pos: 19.5,11.5 + parent: 34 - uid: 4654 components: - type: Transform pos: 48.5,-12.5 parent: 34 + - uid: 6194 + components: + - type: Transform + pos: 22.5,11.5 + parent: 34 - proto: DresserHeadOfPersonnelFilled entities: - uid: 6167 @@ -36289,10 +36574,10 @@ entities: parent: 34 - proto: DresserResearchDirectorFilled entities: - - uid: 10993 + - uid: 2186 components: - type: Transform - pos: -34.5,-3.5 + pos: -49.5,-14.5 parent: 34 - proto: DresserWardenFilled entities: @@ -36373,19 +36658,12 @@ entities: - type: Transform pos: -5.3708525,7.851834 parent: 34 -- proto: DrinkBottleWine - entities: - - uid: 3365 - components: - - type: Transform - pos: -32.31502,-15.337397 - parent: 34 - proto: DrinkChampagneBottleFull entities: - - uid: 14169 + - uid: 14643 components: - type: Transform - pos: 53.52871,-44.228287 + pos: 52.2794,-45.25103 parent: 34 - proto: DrinkCoffee entities: @@ -36401,10 +36679,10 @@ entities: parent: 34 - proto: DrinkDrGibbCan entities: - - uid: 9717 + - uid: 2176 components: - type: Transform - pos: -28.792316,-8.542484 + pos: -50.67665,2.8210588 parent: 34 - uid: 13600 components: @@ -36598,12 +36876,11 @@ entities: - type: Transform pos: 50.310936,-29.301607 parent: 34 -- proto: DrinkMugRainbow - entities: - - uid: 11215 + - uid: 14343 components: - type: Transform - pos: 22.321388,11.995523 + rot: -1.5707963267948966 rad + pos: -44.63733,7.439961 parent: 34 - proto: DrinkRootBeerCan entities: @@ -36691,6 +36968,14 @@ entities: - type: Transform pos: -17.281527,-18.907257 parent: 34 +- proto: DrinkSpaceGlue + entities: + - uid: 13766 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -48.350925,9.840427 + parent: 34 - proto: DrinkTeacup entities: - uid: 604 @@ -36910,49 +37195,74 @@ entities: - type: Transform pos: 33.942844,2.246523 parent: 34 -- proto: Dropper +- proto: DrinkWineBottleFull entities: - - uid: 11396 + - uid: 13090 components: - type: Transform - rot: 3.141592653589793 rad - pos: -20.435867,-4.130167 + pos: -24.931982,-13.324959 parent: 34 - - uid: 11702 + - uid: 13092 components: - type: Transform - pos: -32.276623,-17.299429 + pos: -24.760107,-13.121834 parent: 34 -- proto: EmergencyLight + - uid: 13094 + components: + - type: Transform + pos: -24.635107,-13.309334 + parent: 34 +- proto: Dropper entities: - - uid: 40 + - uid: 9260 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -20.5,-4.5 + pos: -43.51763,-6.0741534 parent: 34 + - uid: 9445 + components: + - type: Transform + pos: -16.748014,-8.658751 + parent: 34 +- proto: EmergencyLight + entities: - uid: 685 components: - type: Transform pos: -1.5,-45.5 parent: 34 - - uid: 1018 + - uid: 1055 components: - type: Transform - rot: 3.141592653589793 rad - pos: -50.5,-1.5 + rot: 1.5707963267948966 rad + pos: -51.5,-8.5 parent: 34 - uid: 1058 components: - type: Transform pos: -15.5,-32.5 parent: 34 + - uid: 2191 + components: + - type: Transform + pos: -49.5,-6.5 + parent: 34 + - uid: 2277 + components: + - type: Transform + pos: -49.5,2.5 + parent: 34 - uid: 2417 components: - type: Transform rot: 3.141592653589793 rad pos: 18.5,-1.5 parent: 34 + - uid: 5218 + components: + - type: Transform + pos: -44.5,-9.5 + parent: 34 - uid: 5500 components: - type: Transform @@ -37018,6 +37328,29 @@ entities: - type: Transform pos: 19.5,-16.5 parent: 34 + - uid: 9290 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -43.5,-5.5 + parent: 34 + - uid: 9294 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -45.5,-2.5 + parent: 34 + - uid: 9295 + components: + - type: Transform + pos: -45.5,2.5 + parent: 34 + - uid: 9825 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -52.5,-16.5 + parent: 34 - uid: 10415 components: - type: Transform @@ -37089,15 +37422,6 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 10644 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -47.5,-10.5 - parent: 34 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - uid: 10649 components: - type: Transform @@ -37231,24 +37555,6 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 10674 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -34.5,-16.5 - parent: 34 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 10675 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -30.5,-11.5 - parent: 34 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - uid: 10676 components: - type: Transform @@ -37258,15 +37564,6 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 10677 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -28.5,-1.5 - parent: 34 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - uid: 10679 components: - type: Transform @@ -37343,6 +37640,24 @@ entities: rot: 3.141592653589793 rad pos: 41.5,-24.5 parent: 34 + - uid: 11274 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,-5.5 + parent: 34 + - uid: 11275 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -35.5,-5.5 + parent: 34 + - uid: 11277 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -32.5,-1.5 + parent: 34 - uid: 11307 components: - type: Transform @@ -37537,6 +37852,12 @@ entities: - type: Transform pos: 23.5,-7.5 parent: 34 + - uid: 14067 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -43.5,-19.5 + parent: 34 - uid: 14135 components: - type: Transform @@ -37549,6 +37870,12 @@ entities: rot: -1.5707963267948966 rad pos: 59.5,-24.5 parent: 34 + - uid: 14536 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,17.5 + parent: 34 - proto: EmergencyRollerBed entities: - uid: 12267 @@ -37619,6 +37946,13 @@ entities: parent: 12058 - type: Physics canCollide: False +- proto: Envelope + entities: + - uid: 14746 + components: + - type: Transform + pos: -9.508378,-27.114075 + parent: 34 - proto: ExosuitFabricator entities: - uid: 3382 @@ -37644,11 +37978,6 @@ entities: rot: 3.141592653589793 rad pos: 7.5,-38.5 parent: 34 - - uid: 3299 - components: - - type: Transform - pos: -27.5,-9.5 - parent: 34 - uid: 3300 components: - type: Transform @@ -37669,11 +37998,6 @@ entities: - type: Transform pos: -33.5,3.5 parent: 34 - - uid: 8085 - components: - - type: Transform - pos: -30.5,-17.5 - parent: 34 - uid: 8087 components: - type: Transform @@ -37761,6 +38085,13 @@ entities: rot: 3.141592653589793 rad pos: -13.5,-31.5 parent: 34 +- proto: EZNutrientChemistryBottle + entities: + - uid: 487 + components: + - type: Transform + pos: -16.51364,-8.393126 + parent: 34 - proto: FaxMachineBase entities: - uid: 722 @@ -37770,6 +38101,13 @@ entities: parent: 34 - type: FaxMachine name: Prosecutor + - uid: 876 + components: + - type: Transform + pos: -32.5,-17.5 + parent: 34 + - type: FaxMachine + name: Reporter - uid: 1232 components: - type: Transform @@ -37847,20 +38185,20 @@ entities: parent: 34 - type: FaxMachine name: Service, Cargo - - uid: 7403 + - uid: 7544 components: - type: Transform - pos: -35.5,-4.5 + pos: -32.5,-29.5 parent: 34 - type: FaxMachine - name: Epi, Mystagogue - - uid: 7544 + name: Engie, Main + - uid: 10316 components: - type: Transform - pos: -32.5,-29.5 + pos: -31.5,-6.5 parent: 34 - type: FaxMachine - name: Engie, Main + name: Library - uid: 11013 components: - type: Transform @@ -37888,7 +38226,7 @@ entities: pos: -51.5,-14.5 parent: 34 - type: FaxMachine - name: Reporter + name: Mystagogue's Office - uid: 14094 components: - type: Transform @@ -37901,6 +38239,13 @@ entities: - type: Transform pos: 37.5,-31.5 parent: 34 +- proto: filingCabinet + entities: + - uid: 14446 + components: + - type: Transform + pos: 31.5,16.5 + parent: 34 - proto: filingCabinetDrawerRandom entities: - uid: 4912 @@ -37923,6 +38268,11 @@ entities: - type: Transform pos: 36.5,-14.5 parent: 34 + - uid: 14445 + components: + - type: Transform + pos: 31.5,15.5 + parent: 34 - proto: filingCabinetRandom entities: - uid: 13171 @@ -38029,28 +38379,6 @@ entities: - 10552 - 10551 - 10549 - - uid: 8274 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -33.5,-15.5 - parent: 34 - - type: DeviceList - devices: - - 617 - - 10563 - - 10565 - - uid: 8275 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -30.5,-12.5 - parent: 34 - - type: DeviceList - devices: - - 10564 - - 10565 - - 10566 - uid: 8276 components: - type: Transform @@ -38064,7 +38392,6 @@ entities: - 10311 - 10312 - 6087 - - 10248 - 11252 - 11253 - 5925 @@ -38097,11 +38424,24 @@ entities: - 10305 - 10304 - 2158 - - 10566 - 10301 - 10302 - 10308 - 10309 + - uid: 9277 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -47.5,-8.5 + parent: 34 + - type: DeviceList + devices: + - 6087 + - 3368 + - 5535 + - 1010 + - 2235 + - 7785 - uid: 10858 components: - type: Transform @@ -38163,6 +38503,48 @@ entities: - 10715 - 10578 - 10712 + - uid: 14708 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,-4.5 + parent: 34 + - type: DeviceList + devices: + - 12180 + - 12120 + - 14692 + - 14691 + - 14690 + - 14689 + - 14688 + - 14687 + - 14686 + - uid: 14709 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,13.5 + parent: 34 + - type: DeviceList + devices: + - 14544 + - 14545 + - 14542 + - 14543 + - 14685 + - uid: 14710 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,-17.5 + parent: 34 + - type: DeviceList + devices: + - 3107 + - 3313 + - 3336 + - 2588 - proto: FireAxeCabinetFilled entities: - uid: 1840 @@ -38184,6 +38566,15 @@ entities: rot: -1.5707963267948966 rad pos: 7.5,-48.5 parent: 34 + - uid: 1010 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -47.5,-9.5 + parent: 34 + - type: DeviceNetwork + deviceLists: + - 9277 - uid: 1252 components: - type: Transform @@ -38197,12 +38588,6 @@ entities: - type: DeviceNetwork deviceLists: - 5208 - - uid: 1357 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -52.5,-13.5 - parent: 34 - uid: 1573 components: - type: Transform @@ -38230,6 +38615,14 @@ entities: rot: -1.5707963267948966 rad pos: -13.5,-33.5 parent: 34 + - uid: 2235 + components: + - type: Transform + pos: -46.5,-5.5 + parent: 34 + - type: DeviceNetwork + deviceLists: + - 9277 - uid: 2355 components: - type: Transform @@ -38254,11 +38647,34 @@ entities: - type: Transform pos: 12.5,-33.5 parent: 34 + - uid: 2588 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,-14.5 + parent: 34 + - type: DeviceNetwork + deviceLists: + - 14710 - uid: 2750 components: - type: Transform pos: -21.5,-12.5 parent: 34 + - uid: 3328 + components: + - type: Transform + pos: -22.5,-5.5 + parent: 34 + - uid: 3336 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,-18.5 + parent: 34 + - type: DeviceNetwork + deviceLists: + - 14710 - uid: 3437 components: - type: Transform @@ -38303,6 +38719,14 @@ entities: - type: Transform pos: 7.5,-44.5 parent: 34 + - uid: 7785 + components: + - type: Transform + pos: -45.5,-5.5 + parent: 34 + - type: DeviceNetwork + deviceLists: + - 9277 - uid: 7798 components: - type: Transform @@ -38333,21 +38757,6 @@ entities: - type: Transform pos: -43.5,4.5 parent: 34 - - uid: 10563 - components: - - type: Transform - pos: -30.5,-18.5 - parent: 34 - - uid: 10564 - components: - - type: Transform - pos: -28.5,-12.5 - parent: 34 - - uid: 10566 - components: - - type: Transform - pos: -31.5,-2.5 - parent: 34 - uid: 10615 components: - type: Transform @@ -38399,15 +38808,26 @@ entities: - type: Transform pos: 7.5,-45.5 parent: 34 - - uid: 11285 + - uid: 12227 components: - type: Transform - pos: 26.5,9.5 + pos: -28.5,-37.5 parent: 34 - - uid: 12227 + - uid: 12239 components: - type: Transform - pos: -28.5,-37.5 + pos: -27.5,-11.5 + parent: 34 + - uid: 12277 + components: + - type: Transform + pos: -27.5,-10.5 + parent: 34 + - uid: 12333 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -32.5,-8.5 parent: 34 - uid: 12427 components: @@ -38492,6 +38912,20 @@ entities: rot: 3.141592653589793 rad pos: 33.5,3.5 parent: 34 + - uid: 14411 + components: + - type: Transform + pos: 30.5,9.5 + parent: 34 + - uid: 14685 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,13.5 + parent: 34 + - type: DeviceNetwork + deviceLists: + - 14709 - proto: FirelockEdge entities: - uid: 735 @@ -38572,6 +39006,69 @@ entities: rot: 3.141592653589793 rad pos: -8.5,-45.5 parent: 34 + - uid: 14686 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,-6.5 + parent: 34 + - type: DeviceNetwork + deviceLists: + - 14708 + - uid: 14687 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,-6.5 + parent: 34 + - type: DeviceNetwork + deviceLists: + - 14708 + - uid: 14688 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,-6.5 + parent: 34 + - type: DeviceNetwork + deviceLists: + - 14708 + - uid: 14689 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,-6.5 + parent: 34 + - type: DeviceNetwork + deviceLists: + - 14708 + - uid: 14690 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,-6.5 + parent: 34 + - type: DeviceNetwork + deviceLists: + - 14708 + - uid: 14691 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,-7.5 + parent: 34 + - type: DeviceNetwork + deviceLists: + - 14708 + - uid: 14692 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,-8.5 + parent: 34 + - type: DeviceNetwork + deviceLists: + - 14708 - proto: FirelockGlass entities: - uid: 78 @@ -38594,11 +39091,6 @@ entities: - type: Transform pos: -36.5,-23.5 parent: 34 - - uid: 617 - components: - - type: Transform - pos: -34.5,-20.5 - parent: 34 - uid: 719 components: - type: Transform @@ -38733,6 +39225,33 @@ entities: - type: Transform pos: -15.5,-22.5 parent: 34 + - uid: 3107 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -35.5,-20.5 + parent: 34 + - type: DeviceNetwork + deviceLists: + - 14710 + - uid: 3313 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -27.5,-20.5 + parent: 34 + - type: DeviceNetwork + deviceLists: + - 14710 + - uid: 3368 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -41.5,-11.5 + parent: 34 + - type: DeviceNetwork + deviceLists: + - 9277 - uid: 3507 components: - type: Transform @@ -38828,6 +39347,14 @@ entities: - type: Transform pos: 20.5,-24.5 parent: 34 + - uid: 5535 + components: + - type: Transform + pos: -40.5,-5.5 + parent: 34 + - type: DeviceNetwork + deviceLists: + - 9277 - uid: 5538 components: - type: Transform @@ -38842,6 +39369,9 @@ entities: - type: Transform pos: -40.5,-10.5 parent: 34 + - type: DeviceNetwork + deviceLists: + - 9277 - uid: 6402 components: - type: Transform @@ -38903,6 +39433,11 @@ entities: deviceLists: - 7683 - 13671 + - uid: 7763 + components: + - type: Transform + pos: -43.5,-0.5 + parent: 34 - uid: 8724 components: - type: Transform @@ -38994,11 +39529,6 @@ entities: deviceLists: - 10602 - 13433 - - uid: 10248 - components: - - type: Transform - pos: -40.5,-9.5 - parent: 34 - uid: 10301 components: - type: Transform @@ -39049,16 +39579,6 @@ entities: - type: Transform pos: -37.5,-14.5 parent: 34 - - uid: 10315 - components: - - type: Transform - pos: -27.5,-20.5 - parent: 34 - - uid: 10316 - components: - - type: Transform - pos: -26.5,-20.5 - parent: 34 - uid: 10317 components: - type: Transform @@ -39168,11 +39688,6 @@ entities: - type: Transform pos: -41.5,-33.5 parent: 34 - - uid: 10565 - components: - - type: Transform - pos: -32.5,-10.5 - parent: 34 - uid: 10576 components: - type: Transform @@ -39362,6 +39877,22 @@ entities: - type: Transform pos: -8.5,1.5 parent: 34 + - uid: 12120 + components: + - type: Transform + pos: -31.5,-2.5 + parent: 34 + - type: DeviceNetwork + deviceLists: + - 14708 + - uid: 12180 + components: + - type: Transform + pos: -30.5,-2.5 + parent: 34 + - type: DeviceNetwork + deviceLists: + - 14708 - uid: 12213 components: - type: Transform @@ -39404,15 +39935,6 @@ entities: - 12258 - 10611 - 9601 - - uid: 12977 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -40.5,-12.5 - parent: 34 - - type: DeviceNetwork - deviceLists: - - 11539 - uid: 13465 components: - type: Transform @@ -39466,12 +39988,48 @@ entities: rot: 3.141592653589793 rad pos: 32.5,-37.5 parent: 34 + - uid: 14542 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,14.5 + parent: 34 + - type: DeviceNetwork + deviceLists: + - 14709 + - uid: 14543 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,16.5 + parent: 34 + - type: DeviceNetwork + deviceLists: + - 14709 + - uid: 14544 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,14.5 + parent: 34 + - type: DeviceNetwork + deviceLists: + - 14709 + - uid: 14545 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,16.5 + parent: 34 + - type: DeviceNetwork + deviceLists: + - 14709 - proto: Fireplace entities: - - uid: 2186 + - uid: 960 components: - type: Transform - pos: -43.5,-3.5 + pos: -34.5,-3.5 parent: 34 - uid: 3912 components: @@ -39497,6 +40055,20 @@ entities: - type: Transform pos: 46.286488,-43.63476 parent: 34 +- proto: FloorCarpetItemBlack + entities: + - uid: 14139 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.663776,-44.733498 + parent: 34 + - uid: 14140 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.773151,-44.577248 + parent: 34 - proto: FloorDrain entities: - uid: 99 @@ -39513,10 +40085,10 @@ entities: parent: 34 - type: Fixtures fixtures: {} - - uid: 2497 + - uid: 229 components: - type: Transform - pos: -27.5,-11.5 + pos: 54.5,-44.5 parent: 34 - type: Fixtures fixtures: {} @@ -39592,6 +40164,13 @@ entities: parent: 34 - type: Fixtures fixtures: {} + - uid: 10938 + components: + - type: Transform + pos: -48.5,-2.5 + parent: 34 + - type: Fixtures + fixtures: {} - uid: 11541 components: - type: Transform @@ -39599,12 +40178,31 @@ entities: parent: 34 - type: Fixtures fixtures: {} -- proto: FloorTileItemTechmaint +- proto: FloorTileItemHydro entities: - - uid: 9355 + - uid: 13846 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -46.41618,9.526281 + parent: 34 + - uid: 14145 components: - type: Transform - pos: -36.544926,-11.523052 + rot: -1.5707963267948966 rad + pos: -47.35368,9.604406 + parent: 34 + - uid: 14146 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -48.369305,10.620031 + parent: 34 + - uid: 14147 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -45.69743,9.479406 parent: 34 - proto: FolderSpawner entities: @@ -39694,6 +40292,25 @@ entities: - type: Transform pos: 23.50204,-30.047298 parent: 34 +- proto: FoodBreadMoldySlice + entities: + - uid: 13097 + components: + - type: Transform + pos: -24.541357,-13.293709 + parent: 34 +- proto: FoodBreadPlain + entities: + - uid: 587 + components: + - type: Transform + pos: -35.544884,-14.3413105 + parent: 34 + - uid: 9437 + components: + - type: Transform + pos: -25.448256,-13.268608 + parent: 34 - proto: FoodBurgerBacon entities: - uid: 13264 @@ -39802,6 +40419,13 @@ entities: - type: Transform pos: -5.632206,7.240454 parent: 34 +- proto: FoodKebabSkewer + entities: + - uid: 6033 + components: + - type: Transform + pos: 39.471836,-44.454052 + parent: 34 - proto: FoodMealNachos entities: - uid: 12198 @@ -39824,12 +40448,13 @@ entities: - type: Transform pos: 38.530884,-31.460299 parent: 34 -- proto: FoodMeatRatdoubleKebab +- proto: FoodMothToastedSeeds entities: - - uid: 6033 + - uid: 13695 components: - type: Transform - pos: 39.471836,-44.454052 + rot: 3.141592653589793 rad + pos: -46.007175,10.590427 parent: 34 - proto: FoodOnion entities: @@ -39862,6 +40487,13 @@ entities: - type: Transform pos: -15.762994,-32.17715 parent: 34 +- proto: FoodPlateTrash + entities: + - uid: 14340 + components: + - type: Transform + pos: -47.19743,8.416906 + parent: 34 - proto: FoodPotato entities: - uid: 11377 @@ -39924,6 +40556,14 @@ entities: - type: Transform pos: -53.505413,-22.109913 parent: 34 +- proto: FoodTinPeachesMaintTrash + entities: + - uid: 14341 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -49.13493,9.729406 + parent: 34 - proto: FoodTomato entities: - uid: 33 @@ -39970,6 +40610,18 @@ entities: - type: Transform pos: 50.685936,-27.551607 parent: 34 +- proto: GasCanisterBrokenBase + entities: + - uid: 2255 + components: + - type: Transform + pos: -46.5,2.5 + parent: 34 + - uid: 5008 + components: + - type: Transform + pos: 31.5,7.5 + parent: 34 - proto: GasFilterFlipped entities: - uid: 1641 @@ -39993,7 +40645,7 @@ entities: - type: GasFilter transferRate: 100 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 3244 components: - type: MetaData @@ -40005,7 +40657,7 @@ entities: - type: GasFilter transferRate: 100 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - proto: GasMinerCarbonDioxide entities: - uid: 1619 @@ -40034,6 +40686,20 @@ entities: targetPressure: 4500 - type: AtmosPipeColor color: '#0000FFFF' +- proto: GasMixerFlipped + entities: + - uid: 1622 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -57.5,-33.5 + parent: 34 + - type: GasMixer + inletTwoConcentration: 0.97 + inletOneConcentration: 0.03 + targetPressure: 4500 + - type: AtmosPipeColor + color: '#947507FF' - proto: GasOutletInjector entities: - uid: 1216 @@ -40074,6 +40740,18 @@ entities: rot: 3.141592653589793 rad pos: -49.5,-47.5 parent: 34 + - uid: 2115 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -48.5,-4.5 + parent: 34 + - uid: 2224 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -49.5,-4.5 + parent: 34 - proto: GasPassiveGate entities: - uid: 8366 @@ -40082,7 +40760,7 @@ entities: pos: -38.5,-33.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - proto: GasPassiveVent entities: - uid: 938 @@ -40096,11 +40774,6 @@ entities: - type: Transform pos: -36.5,-43.5 parent: 34 - - uid: 1052 - components: - - type: Transform - pos: -27.5,-4.5 - parent: 34 - uid: 1255 components: - type: Transform @@ -40136,6 +40809,12 @@ entities: rot: 1.5707963267948966 rad pos: -50.5,-38.5 parent: 34 + - uid: 2168 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -48.5,-3.5 + parent: 34 - proto: GasPipeBend entities: - uid: 104 @@ -40144,20 +40823,6 @@ entities: rot: -1.5707963267948966 rad pos: -36.5,-44.5 parent: 34 - - uid: 929 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -27.5,-5.5 - parent: 34 - - uid: 939 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -30.5,-3.5 - parent: 34 - - type: AtmosPipeColor - color: '#0000FFFF' - uid: 942 components: - type: Transform @@ -40252,13 +40917,6 @@ entities: parent: 34 - type: AtmosPipeColor color: '#444444FF' - - uid: 1580 - components: - - type: Transform - pos: -54.5,-30.5 - parent: 34 - - type: AtmosPipeColor - color: '#FF0000FF' - uid: 1611 components: - type: Transform @@ -40298,7 +40956,7 @@ entities: pos: -17.5,-7.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 2062 components: - type: Transform @@ -40307,13 +40965,57 @@ entities: parent: 34 - type: AtmosPipeColor color: '#444444FF' + - uid: 2188 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -47.5,-4.5 + parent: 34 + - uid: 2198 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -45.5,-1.5 + parent: 34 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 2200 + components: + - type: Transform + pos: -45.5,0.5 + parent: 34 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 2222 + components: + - type: Transform + pos: -48.5,-6.5 + parent: 34 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 2223 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -48.5,1.5 + parent: 34 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 2296 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,-10.5 + parent: 34 + - type: AtmosPipeColor + color: '#0335FCFF' - uid: 2346 components: - type: Transform pos: -35.5,-27.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 2377 components: - type: Transform @@ -40321,14 +41023,14 @@ entities: pos: -42.5,-27.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 2378 components: - type: Transform pos: -34.5,-26.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 2398 components: - type: Transform @@ -40336,7 +41038,7 @@ entities: pos: -28.5,-34.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 2416 components: - type: Transform @@ -40351,7 +41053,7 @@ entities: pos: -15.5,-7.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 2675 components: - type: Transform @@ -40365,7 +41067,7 @@ entities: pos: 1.5,-42.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 2928 components: - type: Transform @@ -40373,7 +41075,7 @@ entities: pos: -0.5,-47.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 3204 components: - type: Transform @@ -40381,7 +41083,7 @@ entities: pos: -33.5,-46.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 3249 components: - type: Transform @@ -40389,33 +41091,21 @@ entities: pos: -7.5,2.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 3253 components: - type: Transform pos: -8.5,4.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3323 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -31.5,-5.5 - parent: 34 - - uid: 3327 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -31.5,-6.5 - parent: 34 + color: '#FF1212FF' - uid: 3331 components: - type: Transform pos: -10.5,-5.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 3376 components: - type: Transform @@ -40439,21 +41129,21 @@ entities: pos: 7.5,-33.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 4417 components: - type: Transform pos: 29.5,3.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 4439 components: - type: Transform pos: 30.5,-41.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 4570 components: - type: Transform @@ -40461,7 +41151,7 @@ entities: pos: -11.5,-37.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 4895 components: - type: Transform @@ -40469,14 +41159,14 @@ entities: pos: -15.5,-38.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 5011 components: - type: Transform pos: 32.5,-22.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 5449 components: - type: Transform @@ -40484,14 +41174,14 @@ entities: pos: 50.5,-39.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 5455 components: - type: Transform pos: 26.5,-36.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 5457 components: - type: Transform @@ -40499,7 +41189,7 @@ entities: pos: 33.5,-36.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 5460 components: - type: Transform @@ -40507,7 +41197,7 @@ entities: pos: 45.5,-29.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 5463 components: - type: Transform @@ -40515,7 +41205,7 @@ entities: pos: 43.5,-39.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 5468 components: - type: Transform @@ -40523,14 +41213,14 @@ entities: pos: 49.5,-35.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 5664 components: - type: Transform pos: -37.5,3.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 6012 components: - type: Transform @@ -40538,7 +41228,7 @@ entities: pos: 22.5,-41.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 6365 components: - type: Transform @@ -40546,6 +41236,14 @@ entities: parent: 34 - type: AtmosPipeColor color: '#03FCD3FF' + - uid: 6368 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -59.5,-30.5 + parent: 34 + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 6391 components: - type: Transform @@ -40560,7 +41258,15 @@ entities: pos: 47.5,-3.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' + - uid: 6523 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,15.5 + parent: 34 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 6564 components: - type: Transform @@ -40568,14 +41274,14 @@ entities: pos: -15.5,-37.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 6666 components: - type: Transform pos: 35.5,-36.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 6669 components: - type: Transform @@ -40583,42 +41289,49 @@ entities: pos: 35.5,-39.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' + - uid: 7133 + components: + - type: Transform + pos: -46.5,1.5 + parent: 34 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 7265 components: - type: Transform pos: 43.5,-24.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 7266 components: - type: Transform pos: 45.5,-23.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 7751 components: - type: Transform pos: 6.5,-40.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 7842 components: - type: Transform pos: -0.5,-46.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 7998 components: - type: Transform pos: -42.5,-25.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 8358 components: - type: Transform @@ -40626,7 +41339,7 @@ entities: pos: -28.5,-33.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8367 components: - type: Transform @@ -40642,28 +41355,28 @@ entities: pos: -30.5,-40.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8385 components: - type: Transform pos: -29.5,-40.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8392 components: - type: Transform pos: -30.5,-30.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8406 components: - type: Transform pos: -44.5,-29.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8416 components: - type: Transform @@ -40671,7 +41384,7 @@ entities: pos: -11.5,-33.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8434 components: - type: Transform @@ -40679,7 +41392,7 @@ entities: pos: -2.5,14.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8490 components: - type: Transform @@ -40687,7 +41400,13 @@ entities: pos: 4.5,-47.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' + - uid: 8595 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -45.5,-55.5 + parent: 34 - uid: 8598 components: - type: Transform @@ -40695,7 +41414,7 @@ entities: pos: -14.5,-11.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8629 components: - type: Transform @@ -40703,7 +41422,7 @@ entities: pos: -3.5,-11.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8630 components: - type: Transform @@ -40711,14 +41430,14 @@ entities: pos: 2.5,-10.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8649 components: - type: Transform pos: 8.5,-4.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8659 components: - type: Transform @@ -40726,15 +41445,7 @@ entities: pos: 9.5,-8.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 8781 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,8.5 - parent: 34 - - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8786 components: - type: Transform @@ -40742,28 +41453,28 @@ entities: pos: 17.5,0.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8799 components: - type: Transform pos: 13.5,-33.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8803 components: - type: Transform pos: -0.5,-14.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8818 components: - type: Transform pos: 14.5,-32.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 8833 components: - type: Transform @@ -40771,7 +41482,7 @@ entities: pos: 31.5,-18.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8893 components: - type: Transform @@ -40779,21 +41490,21 @@ entities: pos: 30.5,-17.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 8913 components: - type: Transform pos: 30.5,-13.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 8915 components: - type: Transform pos: 31.5,-12.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8972 components: - type: Transform @@ -40801,7 +41512,7 @@ entities: pos: 6.5,-42.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9012 components: - type: Transform @@ -40809,7 +41520,7 @@ entities: pos: -1.5,-28.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9027 components: - type: Transform @@ -40822,21 +41533,21 @@ entities: pos: 5.5,-44.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 9151 components: - type: Transform pos: 44.5,-27.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 9186 components: - type: Transform pos: -26.5,-14.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 9202 components: - type: Transform @@ -40844,14 +41555,14 @@ entities: pos: 38.5,4.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9232 components: - type: Transform pos: -27.5,-10.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 9289 components: - type: Transform @@ -40859,7 +41570,7 @@ entities: pos: -46.5,-12.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9315 components: - type: Transform @@ -40867,7 +41578,7 @@ entities: pos: 44.5,-31.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 9316 components: - type: Transform @@ -40875,7 +41586,7 @@ entities: pos: 43.5,-31.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 9329 components: - type: Transform @@ -40883,7 +41594,7 @@ entities: pos: -47.5,-16.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9378 components: - type: Transform @@ -40891,14 +41602,14 @@ entities: pos: -43.5,-29.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9391 components: - type: Transform pos: -33.5,-40.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9392 components: - type: Transform @@ -40906,7 +41617,7 @@ entities: pos: -34.5,-40.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9393 components: - type: Transform @@ -40914,7 +41625,7 @@ entities: pos: -32.5,-35.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9398 components: - type: Transform @@ -40922,7 +41633,7 @@ entities: pos: -32.5,-36.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9399 components: - type: Transform @@ -40930,7 +41641,7 @@ entities: pos: -35.5,-36.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9402 components: - type: Transform @@ -40938,7 +41649,7 @@ entities: pos: -29.5,-35.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9416 components: - type: Transform @@ -40946,7 +41657,7 @@ entities: pos: -46.5,-16.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9419 components: - type: Transform @@ -40954,7 +41665,7 @@ entities: pos: -50.5,-13.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9429 components: - type: Transform @@ -40962,14 +41673,14 @@ entities: pos: -53.5,-13.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9444 components: - type: Transform pos: -27.5,-18.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9507 components: - type: Transform @@ -40977,7 +41688,7 @@ entities: pos: -15.5,-12.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9539 components: - type: Transform @@ -40985,14 +41696,14 @@ entities: pos: 0.5,-7.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9655 components: - type: Transform pos: -3.5,-43.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9656 components: - type: Transform @@ -41000,7 +41711,7 @@ entities: pos: -3.5,-45.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9781 components: - type: Transform @@ -41008,7 +41719,7 @@ entities: pos: -41.5,8.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9827 components: - type: Transform @@ -41016,7 +41727,7 @@ entities: pos: -49.5,-10.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 9891 components: - type: Transform @@ -41024,7 +41735,7 @@ entities: pos: 17.5,5.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 10006 components: - type: Transform @@ -41032,14 +41743,14 @@ entities: pos: 38.5,1.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 10017 components: - type: Transform pos: 34.5,-6.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 10081 components: - type: Transform @@ -41047,7 +41758,7 @@ entities: pos: 21.5,-42.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 10086 components: - type: Transform @@ -41055,7 +41766,7 @@ entities: pos: 26.5,-42.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 10148 components: - type: Transform @@ -41063,21 +41774,21 @@ entities: pos: 42.5,-36.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 10188 components: - type: Transform pos: 30.5,-1.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 10333 components: - type: Transform pos: 11.5,-36.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 10562 components: - type: Transform @@ -41085,7 +41796,7 @@ entities: pos: -25.5,-33.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 10655 components: - type: Transform @@ -41093,7 +41804,7 @@ entities: pos: 31.5,-6.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 10683 components: - type: Transform @@ -41101,14 +41812,22 @@ entities: pos: 30.5,-7.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 10709 components: - type: Transform pos: 33.5,-7.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' + - uid: 10736 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.5,-8.5 + parent: 34 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 10863 components: - type: Transform @@ -41116,7 +41835,7 @@ entities: pos: 40.5,-12.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 10903 components: - type: Transform @@ -41124,7 +41843,7 @@ entities: pos: 22.5,3.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 11033 components: - type: Transform @@ -41140,7 +41859,7 @@ entities: pos: 20.5,-9.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 11061 components: - type: Transform @@ -41148,21 +41867,21 @@ entities: pos: 21.5,-10.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 11076 components: - type: Transform pos: 20.5,-3.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 11077 components: - type: Transform pos: 21.5,-4.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 11291 components: - type: Transform @@ -41170,7 +41889,7 @@ entities: pos: -32.5,-49.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 11314 components: - type: Transform @@ -41178,21 +41897,21 @@ entities: pos: 19.5,-38.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 11392 components: - type: Transform pos: 42.5,-35.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 11425 components: - type: Transform pos: -45.5,-19.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 11436 components: - type: Transform @@ -41208,13 +41927,6 @@ entities: parent: 34 - type: AtmosPipeColor color: '#03FCD3FF' - - uid: 11472 - components: - - type: Transform - pos: -29.5,-3.5 - parent: 34 - - type: AtmosPipeColor - color: '#0000FFFF' - uid: 11633 components: - type: Transform @@ -41222,7 +41934,7 @@ entities: pos: -18.5,-33.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 11840 components: - type: Transform @@ -41230,7 +41942,7 @@ entities: pos: -17.5,-23.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 11882 components: - type: Transform @@ -41238,7 +41950,7 @@ entities: pos: -18.5,-23.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 11885 components: - type: Transform @@ -41255,21 +41967,19 @@ entities: parent: 34 - type: AtmosPipeColor color: '#03FCD3FF' - - uid: 12115 + - uid: 11917 components: - type: Transform - rot: 3.141592653589793 rad - pos: 38.5,-7.5 + pos: -28.5,-13.5 parent: 34 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12180 + - uid: 12115 components: - type: Transform - pos: -28.5,-9.5 + rot: 3.141592653589793 rad + pos: 38.5,-7.5 parent: 34 - type: AtmosPipeColor - color: '#F84000FF' + color: '#0335FCFF' - uid: 12200 components: - type: Transform @@ -41285,7 +41995,7 @@ entities: pos: -2.5,11.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 12224 components: - type: Transform @@ -41293,14 +42003,21 @@ entities: pos: -25.5,-30.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 12282 components: - type: Transform pos: 31.5,-0.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' + - uid: 12663 + components: + - type: Transform + pos: -54.5,-30.5 + parent: 34 + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 12848 components: - type: Transform @@ -41308,7 +42025,7 @@ entities: pos: 17.5,-16.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 12850 components: - type: Transform @@ -41316,7 +42033,7 @@ entities: pos: 18.5,-17.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 12863 components: - type: Transform @@ -41324,7 +42041,7 @@ entities: pos: 8.5,10.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 12877 components: - type: Transform @@ -41332,14 +42049,14 @@ entities: pos: -5.5,10.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 12932 components: - type: Transform pos: 41.5,4.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 12945 components: - type: Transform @@ -41347,7 +42064,7 @@ entities: pos: 39.5,3.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 12967 components: - type: Transform @@ -41355,15 +42072,7 @@ entities: pos: 25.5,-16.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13109 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,15.5 - parent: 34 - - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13446 components: - type: Transform @@ -41371,7 +42080,7 @@ entities: pos: 26.5,-17.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13447 components: - type: Transform @@ -41379,7 +42088,7 @@ entities: pos: 21.5,-17.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13797 components: - type: Transform @@ -41410,7 +42119,7 @@ entities: pos: -53.5,-10.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14126 components: - type: Transform @@ -41418,7 +42127,7 @@ entities: pos: -51.5,-10.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14283 components: - type: Transform @@ -41433,32 +42142,35 @@ entities: parent: 34 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 14351 + - uid: 14579 components: - type: Transform - rot: 3.141592653589793 rad - pos: -47.5,-55.5 + pos: 23.5,15.5 parent: 34 - - uid: 14352 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14580 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -47.5,-51.5 + rot: 3.141592653589793 rad + pos: 23.5,14.5 parent: 34 -- proto: GasPipeBroken - entities: - - uid: 1514 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14608 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -58.5,-30.5 + rot: -1.5707963267948966 rad + pos: 32.5,8.5 parent: 34 - - uid: 1518 + - uid: 14630 components: - type: Transform - rot: 3.141592653589793 rad - pos: -59.5,-33.5 + rot: -1.5707963267948966 rad + pos: 31.5,9.5 parent: 34 + - type: AtmosPipeColor + color: '#FF1212FF' - proto: GasPipeFourway entities: - uid: 107 @@ -41468,11 +42180,6 @@ entities: parent: 34 - type: AtmosPipeColor color: '#444444FF' - - uid: 932 - components: - - type: Transform - pos: -29.5,-5.5 - parent: 34 - uid: 941 components: - type: Transform @@ -41486,7 +42193,7 @@ entities: pos: 6.5,-27.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 2093 components: - type: Transform @@ -41500,56 +42207,56 @@ entities: pos: 3.5,-40.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 3692 components: - type: Transform pos: 43.5,-34.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 3892 components: - type: Transform pos: 6.5,-23.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 3910 components: - type: Transform pos: 22.5,-36.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 4283 components: - type: Transform pos: 7.5,-28.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 4803 components: - type: Transform pos: 43.5,-2.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 4872 components: - type: Transform pos: 44.5,-3.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 5194 components: - type: Transform pos: 33.5,-2.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 5453 components: - type: Transform @@ -41561,91 +42268,91 @@ entities: pos: -41.5,-0.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 7206 components: - type: Transform pos: 34.5,-12.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8370 components: - type: Transform pos: -30.5,-37.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8432 components: - type: Transform pos: -38.5,-21.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 8436 components: - type: Transform pos: -37.5,-22.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8823 components: - type: Transform pos: 25.5,-13.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9085 components: - type: Transform pos: 22.5,-24.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 9102 components: - type: Transform pos: 44.5,-12.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 9235 components: - type: Transform pos: -37.5,-1.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 9366 components: - type: Transform pos: -35.5,-29.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9608 components: - type: Transform pos: 7.5,-37.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 9718 components: - type: Transform pos: -8.5,-0.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9873 components: - type: Transform pos: 13.5,1.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 10477 components: - type: Transform @@ -41653,25 +42360,20 @@ entities: parent: 34 - type: AtmosPipeColor color: '#03FCD3FF' - - uid: 11995 - components: - - type: Transform - pos: -45.5,-51.5 - parent: 34 - uid: 12492 components: - type: Transform pos: 18.5,-13.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 12854 components: - type: Transform pos: 26.5,-12.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - proto: GasPipeStraight entities: - uid: 43 @@ -41680,7 +42382,7 @@ entities: pos: -13.5,-1.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 103 components: - type: Transform @@ -41718,7 +42420,7 @@ entities: pos: 8.5,14.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 258 components: - type: Transform @@ -41726,7 +42428,15 @@ entities: pos: -44.5,-12.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' + - uid: 364 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,15.5 + parent: 34 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 391 components: - type: Transform @@ -41734,7 +42444,15 @@ entities: pos: 7.5,-31.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' + - uid: 514 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -29.5,-18.5 + parent: 34 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 626 components: - type: Transform @@ -41742,7 +42460,7 @@ entities: pos: 27.5,4.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 683 components: - type: Transform @@ -41750,7 +42468,7 @@ entities: pos: 6.5,-29.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 688 components: - type: Transform @@ -41758,14 +42476,14 @@ entities: pos: 6.5,-30.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 731 components: - type: Transform pos: 41.5,3.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 794 components: - type: Transform @@ -41773,7 +42491,7 @@ entities: pos: -13.5,-8.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 797 components: - type: Transform @@ -41781,14 +42499,14 @@ entities: pos: -14.5,-8.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 807 components: - type: Transform pos: -5.5,-12.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 809 components: - type: Transform @@ -41796,14 +42514,14 @@ entities: pos: -15.5,-8.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 810 components: - type: Transform pos: -10.5,-10.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 811 components: - type: Transform @@ -41811,14 +42529,14 @@ entities: pos: -11.5,-8.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 812 components: - type: Transform pos: -10.5,-9.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 814 components: - type: Transform @@ -41826,7 +42544,7 @@ entities: pos: -12.5,-8.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 830 components: - type: Transform @@ -41839,22 +42557,14 @@ entities: pos: -13.5,-2.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 889 components: - type: Transform pos: -13.5,-3.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 924 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -28.5,-3.5 - parent: 34 - - type: AtmosPipeColor - color: '#0088F8FF' + color: '#FF1212FF' - uid: 928 components: - type: Transform @@ -41862,22 +42572,32 @@ entities: pos: -11.5,-5.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 933 components: - type: Transform pos: -45.5,-50.5 parent: 34 - - uid: 972 + - uid: 948 components: - type: Transform - pos: -45.5,-46.5 + rot: 1.5707963267948966 rad + pos: 16.5,15.5 parent: 34 - - uid: 1041 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 963 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -28.5,-5.5 + rot: -1.5707963267948966 rad + pos: 8.5,15.5 + parent: 34 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 972 + components: + - type: Transform + pos: -45.5,-46.5 parent: 34 - uid: 1079 components: @@ -41885,7 +42605,7 @@ entities: pos: 10.5,10.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 1173 components: - type: Transform @@ -41912,6 +42632,14 @@ entities: rot: 1.5707963267948966 rad pos: -39.5,-45.5 parent: 34 + - uid: 1280 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,-19.5 + parent: 34 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 1328 components: - type: Transform @@ -41919,7 +42647,7 @@ entities: pos: 6.5,-26.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 1339 components: - type: Transform @@ -41927,7 +42655,7 @@ entities: pos: 7.5,-27.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 1408 components: - type: Transform @@ -42077,6 +42805,21 @@ entities: parent: 34 - type: AtmosPipeColor color: '#444444FF' + - uid: 1516 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -57.5,-30.5 + parent: 34 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 1518 + components: + - type: Transform + pos: -59.5,-33.5 + parent: 34 + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 1519 components: - type: Transform @@ -42133,11 +42876,26 @@ entities: rot: 3.141592653589793 rad pos: -49.5,-46.5 parent: 34 + - uid: 1542 + components: + - type: Transform + pos: -59.5,-34.5 + parent: 34 + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 1545 components: - type: Transform pos: -45.5,-41.5 parent: 34 + - uid: 1547 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -58.5,-30.5 + parent: 34 + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 1563 components: - type: Transform @@ -42164,6 +42922,13 @@ entities: parent: 34 - type: AtmosPipeColor color: '#444444FF' + - uid: 1616 + components: + - type: Transform + pos: -59.5,-31.5 + parent: 34 + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 1623 components: - type: Transform @@ -42224,6 +42989,14 @@ entities: parent: 34 - type: AtmosPipeColor color: '#FF0000FF' + - uid: 1796 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,15.5 + parent: 34 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 1860 components: - type: Transform @@ -42239,7 +43012,7 @@ entities: pos: -16.5,-7.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 1943 components: - type: Transform @@ -42247,7 +43020,7 @@ entities: pos: 6.5,-24.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 1971 components: - type: Transform @@ -42255,7 +43028,37 @@ entities: pos: -19.5,-20.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' + - uid: 2029 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,15.5 + parent: 34 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 2048 + components: + - type: Transform + pos: -28.5,-1.5 + parent: 34 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 2050 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -34.5,-1.5 + parent: 34 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 2054 + components: + - type: Transform + pos: -30.5,-3.5 + parent: 34 + - type: AtmosPipeColor + color: '#0335FCFF' - uid: 2079 components: - type: Transform @@ -42263,7 +43066,7 @@ entities: pos: -36.5,-27.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 2089 components: - type: Transform @@ -42272,6 +43075,22 @@ entities: parent: 34 - type: AtmosPipeColor color: '#0000FFFF' + - uid: 2103 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -53.5,0.5 + parent: 34 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 2111 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -47.5,1.5 + parent: 34 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 2149 components: - type: Transform @@ -42279,7 +43098,68 @@ entities: pos: -10.5,-6.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' + - uid: 2166 + components: + - type: Transform + pos: -47.5,-3.5 + parent: 34 + - uid: 2180 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,-4.5 + parent: 34 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 2205 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -45.5,-0.5 + parent: 34 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 2206 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -50.5,0.5 + parent: 34 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 2213 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -48.5,0.5 + parent: 34 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 2220 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -52.5,0.5 + parent: 34 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 2225 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -49.5,-0.5 + parent: 34 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 2229 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -49.5,-6.5 + parent: 34 + - type: AtmosPipeColor + color: '#0335FCFF' - uid: 2333 components: - type: Transform @@ -42287,7 +43167,7 @@ entities: pos: -41.5,-27.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 2336 components: - type: Transform @@ -42295,7 +43175,7 @@ entities: pos: -34.5,-22.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 2338 components: - type: Transform @@ -42303,7 +43183,7 @@ entities: pos: -38.5,-23.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 2339 components: - type: Transform @@ -42311,7 +43191,7 @@ entities: pos: -38.5,-24.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 2340 components: - type: Transform @@ -42319,7 +43199,7 @@ entities: pos: -37.5,-25.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 2343 components: - type: Transform @@ -42327,7 +43207,7 @@ entities: pos: -37.5,-24.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 2345 components: - type: Transform @@ -42335,7 +43215,7 @@ entities: pos: -37.5,-27.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 2347 components: - type: Transform @@ -42343,7 +43223,7 @@ entities: pos: -38.5,-26.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 2348 components: - type: Transform @@ -42351,7 +43231,7 @@ entities: pos: -38.5,-25.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 2353 components: - type: Transform @@ -42359,7 +43239,7 @@ entities: pos: -35.5,-21.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 2357 components: - type: Transform @@ -42367,7 +43247,7 @@ entities: pos: -42.5,-26.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 2373 components: - type: Transform @@ -42375,7 +43255,7 @@ entities: pos: -35.5,-26.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 2374 components: - type: Transform @@ -42383,7 +43263,7 @@ entities: pos: -36.5,-26.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 2376 components: - type: Transform @@ -42391,7 +43271,7 @@ entities: pos: -40.5,-27.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 2390 components: - type: Transform @@ -42399,7 +43279,7 @@ entities: pos: -27.5,-33.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 2413 components: - type: Transform @@ -42429,6 +43309,38 @@ entities: parent: 34 - type: AtmosPipeColor color: '#444444FF' + - uid: 2500 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -37.5,-19.5 + parent: 34 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 2527 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,-18.5 + parent: 34 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 2537 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,15.5 + parent: 34 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 2538 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,15.5 + parent: 34 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 2550 components: - type: Transform @@ -42436,14 +43348,30 @@ entities: pos: 1.5,-7.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' + - uid: 2616 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,-19.5 + parent: 34 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 2628 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -36.5,-19.5 + parent: 34 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 2629 components: - type: Transform pos: 33.5,-1.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 2630 components: - type: Transform @@ -42451,7 +43379,7 @@ entities: pos: 35.5,-1.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 2641 components: - type: Transform @@ -42459,7 +43387,7 @@ entities: pos: -14.5,-34.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 2710 components: - type: Transform @@ -42467,14 +43395,22 @@ entities: pos: -4.5,-46.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 2713 components: - type: Transform pos: -33.5,-43.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' + - uid: 2742 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,14.5 + parent: 34 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 2807 components: - type: Transform @@ -42482,7 +43418,7 @@ entities: pos: 7.5,-30.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 2924 components: - type: Transform @@ -42490,7 +43426,7 @@ entities: pos: -3.5,-46.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 2929 components: - type: Transform @@ -42504,7 +43440,7 @@ entities: pos: -1.5,-46.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 2935 components: - type: Transform @@ -42512,7 +43448,7 @@ entities: pos: 4.5,-40.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 2943 components: - type: Transform @@ -42520,7 +43456,7 @@ entities: pos: 6.5,-24.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 2968 components: - type: Transform @@ -42528,7 +43464,15 @@ entities: pos: 1.5,-47.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' + - uid: 3147 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,16.5 + parent: 34 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 3188 components: - type: Transform @@ -42536,7 +43480,7 @@ entities: pos: -13.5,-34.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 3190 components: - type: Transform @@ -42544,7 +43488,7 @@ entities: pos: -12.5,-34.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 3248 components: - type: Transform @@ -42552,15 +43496,22 @@ entities: pos: -26.5,-29.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3325 + color: '#FF1212FF' + - uid: 3350 + components: + - type: Transform + pos: -38.5,-17.5 + parent: 34 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 3352 components: - type: Transform rot: 3.141592653589793 rad - pos: -29.5,-8.5 + pos: 6.5,17.5 parent: 34 - type: AtmosPipeColor - color: '#F84000FF' + color: '#FF1212FF' - uid: 3377 components: - type: Transform @@ -42574,7 +43525,7 @@ entities: pos: 31.5,-5.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 3416 components: - type: Transform @@ -42582,7 +43533,7 @@ entities: pos: -2.5,-46.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 3613 components: - type: Transform @@ -42590,7 +43541,7 @@ entities: pos: 41.5,-34.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 3614 components: - type: Transform @@ -42598,14 +43549,14 @@ entities: pos: 42.5,-34.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 3679 components: - type: Transform pos: 33.5,-34.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 3709 components: - type: Transform @@ -42613,14 +43564,14 @@ entities: pos: 26.5,4.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 3712 components: - type: Transform pos: 28.5,1.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 3715 components: - type: Transform @@ -42628,21 +43579,21 @@ entities: pos: 26.5,3.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 3735 components: - type: Transform pos: 28.5,2.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 3738 components: - type: Transform pos: 28.5,3.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 3748 components: - type: Transform @@ -42650,15 +43601,7 @@ entities: pos: 13.5,-27.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3754 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -35.5,-17.5 - parent: 34 - - type: AtmosPipeColor - color: '#FF0000FF' + color: '#0335FCFF' - uid: 3855 components: - type: Transform @@ -42666,7 +43609,7 @@ entities: pos: 7.5,-32.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 3867 components: - type: Transform @@ -42674,7 +43617,7 @@ entities: pos: 7.5,-27.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 3879 components: - type: Transform @@ -42682,7 +43625,7 @@ entities: pos: 7.5,-32.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 3880 components: - type: Transform @@ -42690,7 +43633,7 @@ entities: pos: 6.5,-31.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 3894 components: - type: Transform @@ -42698,7 +43641,7 @@ entities: pos: 4.5,-32.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 3917 components: - type: Transform @@ -42706,7 +43649,7 @@ entities: pos: 8.5,-28.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 3928 components: - type: Transform @@ -42714,14 +43657,14 @@ entities: pos: 7.5,-29.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 3973 components: - type: Transform pos: -5.5,-44.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 3999 components: - type: Transform @@ -42729,7 +43672,7 @@ entities: pos: 23.5,-36.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 4075 components: - type: Transform @@ -42751,7 +43694,7 @@ entities: pos: 29.5,1.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 4277 components: - type: Transform @@ -42759,7 +43702,7 @@ entities: pos: 7.5,-25.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 4279 components: - type: Transform @@ -42767,7 +43710,7 @@ entities: pos: 6.5,-25.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 4282 components: - type: Transform @@ -42775,7 +43718,7 @@ entities: pos: 6.5,-28.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 4285 components: - type: Transform @@ -42783,7 +43726,20 @@ entities: pos: 7.5,-26.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' + - uid: 4333 + components: + - type: Transform + pos: -47.5,-2.5 + parent: 34 + - uid: 4346 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,15.5 + parent: 34 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 4367 components: - type: Transform @@ -42791,7 +43747,7 @@ entities: pos: 35.5,-2.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 4368 components: - type: Transform @@ -42799,28 +43755,28 @@ entities: pos: 23.5,-31.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 4369 components: - type: Transform pos: 15.5,-26.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 4372 components: - type: Transform pos: 15.5,-25.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 4374 components: - type: Transform pos: 13.5,-26.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 4387 components: - type: Transform @@ -42828,7 +43784,7 @@ entities: pos: 23.5,-34.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 4429 components: - type: Transform @@ -42836,14 +43792,14 @@ entities: pos: 28.5,3.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 4444 components: - type: Transform pos: 13.5,-25.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 4445 components: - type: Transform @@ -42851,7 +43807,7 @@ entities: pos: 24.5,-31.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 4455 components: - type: Transform @@ -42859,7 +43815,7 @@ entities: pos: -22.5,-22.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 4458 components: - type: Transform @@ -42867,14 +43823,14 @@ entities: pos: 25.5,-34.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 4459 components: - type: Transform pos: 43.5,-4.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 4461 components: - type: Transform @@ -42882,7 +43838,7 @@ entities: pos: 24.5,-34.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 4463 components: - type: Transform @@ -42890,7 +43846,7 @@ entities: pos: 17.5,-23.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 4464 components: - type: Transform @@ -42898,7 +43854,7 @@ entities: pos: 22.5,-37.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 4466 components: - type: Transform @@ -42906,14 +43862,14 @@ entities: pos: 22.5,-31.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 4467 components: - type: Transform pos: 15.5,-24.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 4471 components: - type: Transform @@ -42921,7 +43877,7 @@ entities: pos: 25.5,-31.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 4498 components: - type: Transform @@ -42929,14 +43885,14 @@ entities: pos: 34.5,-16.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 4535 components: - type: Transform pos: 44.5,-8.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 4563 components: - type: Transform @@ -42944,21 +43900,21 @@ entities: pos: 27.5,3.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 4568 components: - type: Transform pos: -11.5,-35.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 4569 components: - type: Transform pos: -11.5,-36.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 4571 components: - type: Transform @@ -42966,7 +43922,7 @@ entities: pos: -13.5,-38.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 4668 components: - type: Transform @@ -42974,7 +43930,7 @@ entities: pos: 45.5,-3.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 4676 components: - type: Transform @@ -42982,7 +43938,7 @@ entities: pos: 45.5,-12.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 4678 components: - type: Transform @@ -42990,7 +43946,7 @@ entities: pos: 44.5,-11.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 4680 components: - type: Transform @@ -42998,7 +43954,7 @@ entities: pos: 35.5,-16.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 4681 components: - type: Transform @@ -43006,14 +43962,14 @@ entities: pos: 45.5,-9.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 4763 components: - type: Transform pos: 43.5,-5.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 4782 components: - type: Transform @@ -43021,14 +43977,14 @@ entities: pos: 46.5,-2.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 4851 components: - type: Transform pos: 31.5,-16.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 4860 components: - type: Transform @@ -43036,14 +43992,14 @@ entities: pos: 45.5,-2.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 4891 components: - type: Transform pos: -10.5,-33.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 4927 components: - type: Transform @@ -43051,7 +44007,7 @@ entities: pos: 34.5,-16.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 4942 components: - type: Transform @@ -43059,14 +44015,14 @@ entities: pos: 29.5,-13.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 4944 components: - type: Transform pos: 30.5,-14.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 4948 components: - type: Transform @@ -43074,14 +44030,14 @@ entities: pos: 16.5,-28.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 4949 components: - type: Transform pos: 15.5,-28.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 4951 components: - type: Transform @@ -43089,7 +44045,7 @@ entities: pos: 41.5,-3.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 5144 components: - type: Transform @@ -43097,7 +44053,7 @@ entities: pos: 8.5,-27.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 5180 components: - type: Transform @@ -43105,7 +44061,7 @@ entities: pos: -46.5,-14.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 5247 components: - type: Transform @@ -43114,20 +44070,56 @@ entities: parent: 34 - type: AtmosPipeColor color: '#947507FF' + - uid: 5262 + components: + - type: Transform + pos: -28.5,-14.5 + parent: 34 + - uid: 5511 + components: + - type: Transform + pos: -47.5,1.5 + parent: 34 + - type: AtmosPipeColor + color: '#0335FCFF' - uid: 5674 components: - type: Transform pos: -37.5,1.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 5848 components: - type: Transform pos: -40.5,4.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' + - uid: 5858 + components: + - type: Transform + pos: -46.5,0.5 + parent: 34 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5859 + components: + - type: Transform + pos: -48.5,-2.5 + parent: 34 + - uid: 5860 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -49.5,-3.5 + parent: 34 + - uid: 5861 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -49.5,-2.5 + parent: 34 - uid: 5867 components: - type: Transform @@ -43135,14 +44127,14 @@ entities: pos: -40.5,-0.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 5911 components: - type: Transform pos: -41.5,0.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 5912 components: - type: Transform @@ -43150,7 +44142,7 @@ entities: pos: -12.5,-37.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 5936 components: - type: Transform @@ -43158,28 +44150,28 @@ entities: pos: -41.5,-21.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 5937 components: - type: Transform pos: 10.5,9.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 5996 components: - type: Transform pos: 31.5,-25.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 5999 components: - type: Transform pos: 25.5,-25.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 6001 components: - type: Transform @@ -43187,7 +44179,7 @@ entities: pos: 32.5,-40.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 6002 components: - type: Transform @@ -43195,7 +44187,7 @@ entities: pos: 29.5,-41.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 6003 components: - type: Transform @@ -43203,7 +44195,7 @@ entities: pos: 28.5,-41.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 6004 components: - type: Transform @@ -43211,7 +44203,7 @@ entities: pos: 27.5,-41.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 6005 components: - type: Transform @@ -43219,7 +44211,7 @@ entities: pos: 26.5,-41.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 6006 components: - type: Transform @@ -43227,7 +44219,7 @@ entities: pos: 25.5,-41.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 6010 components: - type: Transform @@ -43235,7 +44227,7 @@ entities: pos: 24.5,-41.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 6011 components: - type: Transform @@ -43243,7 +44235,7 @@ entities: pos: 23.5,-41.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 6013 components: - type: Transform @@ -43251,7 +44243,7 @@ entities: pos: 22.5,-40.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 6014 components: - type: Transform @@ -43259,7 +44251,7 @@ entities: pos: 22.5,-39.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 6114 components: - type: Transform @@ -43267,7 +44259,7 @@ entities: pos: 6.5,-5.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 6117 components: - type: Transform @@ -43275,7 +44267,7 @@ entities: pos: 7.5,-5.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 6118 components: - type: Transform @@ -43283,7 +44275,7 @@ entities: pos: 8.5,-5.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 6171 components: - type: Transform @@ -43291,7 +44283,7 @@ entities: pos: 14.5,13.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 6318 components: - type: Transform @@ -43299,7 +44291,7 @@ entities: pos: -26.5,-33.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 6344 components: - type: Transform @@ -43327,7 +44319,7 @@ entities: pos: 45.5,-6.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 6477 components: - type: Transform @@ -43335,7 +44327,7 @@ entities: pos: 24.5,-36.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 6490 components: - type: Transform @@ -43343,14 +44335,60 @@ entities: pos: 25.5,-36.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' + - uid: 6506 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -48.5,0.5 + parent: 34 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 6508 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -46.5,0.5 + parent: 34 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 6509 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,16.5 + parent: 34 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 6510 + components: + - type: Transform + pos: 16.5,15.5 + parent: 34 + - type: AtmosPipeColor + color: '#0335FCFF' - uid: 6524 components: - type: Transform pos: 26.5,-37.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' + - uid: 6526 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,15.5 + parent: 34 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 6531 + components: + - type: Transform + pos: -38.5,-18.5 + parent: 34 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 6549 components: - type: Transform @@ -43358,7 +44396,7 @@ entities: pos: 23.5,-37.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 6550 components: - type: Transform @@ -43366,7 +44404,7 @@ entities: pos: 24.5,-37.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 6551 components: - type: Transform @@ -43374,7 +44412,7 @@ entities: pos: 25.5,-37.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 6552 components: - type: Transform @@ -43382,7 +44420,7 @@ entities: pos: 26.5,-37.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 6555 components: - type: Transform @@ -43390,7 +44428,7 @@ entities: pos: 28.5,-37.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 6556 components: - type: Transform @@ -43398,7 +44436,7 @@ entities: pos: 29.5,-37.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 6557 components: - type: Transform @@ -43406,7 +44444,7 @@ entities: pos: 30.5,-37.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 6558 components: - type: Transform @@ -43414,7 +44452,7 @@ entities: pos: 31.5,-37.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 6559 components: - type: Transform @@ -43422,7 +44460,7 @@ entities: pos: 32.5,-37.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 6560 components: - type: Transform @@ -43430,7 +44468,7 @@ entities: pos: 33.5,-37.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 6569 components: - type: Transform @@ -43438,7 +44476,7 @@ entities: pos: 34.5,-39.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 6570 components: - type: Transform @@ -43446,7 +44484,7 @@ entities: pos: 34.5,-38.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 6651 components: - type: Transform @@ -43454,7 +44492,7 @@ entities: pos: 35.5,-40.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 6652 components: - type: Transform @@ -43462,7 +44500,7 @@ entities: pos: 36.5,-40.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 6653 components: - type: Transform @@ -43470,7 +44508,7 @@ entities: pos: 37.5,-40.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 6654 components: - type: Transform @@ -43478,7 +44516,7 @@ entities: pos: 38.5,-40.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 6655 components: - type: Transform @@ -43486,7 +44524,7 @@ entities: pos: 39.5,-40.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 6656 components: - type: Transform @@ -43494,7 +44532,7 @@ entities: pos: 40.5,-40.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 6657 components: - type: Transform @@ -43502,7 +44540,7 @@ entities: pos: 41.5,-40.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 6658 components: - type: Transform @@ -43510,7 +44548,7 @@ entities: pos: 42.5,-40.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 6659 components: - type: Transform @@ -43518,7 +44556,7 @@ entities: pos: 43.5,-40.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 6661 components: - type: Transform @@ -43526,7 +44564,7 @@ entities: pos: 45.5,-40.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 6662 components: - type: Transform @@ -43534,7 +44572,7 @@ entities: pos: 46.5,-40.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 6663 components: - type: Transform @@ -43542,7 +44580,7 @@ entities: pos: 47.5,-40.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 6664 components: - type: Transform @@ -43550,7 +44588,7 @@ entities: pos: 48.5,-40.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 6665 components: - type: Transform @@ -43558,21 +44596,21 @@ entities: pos: 34.5,-36.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 6667 components: - type: Transform pos: 35.5,-37.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 6668 components: - type: Transform pos: 35.5,-38.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 6670 components: - type: Transform @@ -43580,7 +44618,7 @@ entities: pos: 36.5,-39.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 6671 components: - type: Transform @@ -43588,7 +44626,7 @@ entities: pos: 37.5,-39.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 6672 components: - type: Transform @@ -43596,7 +44634,7 @@ entities: pos: 38.5,-39.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 6673 components: - type: Transform @@ -43604,7 +44642,7 @@ entities: pos: 39.5,-39.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 6686 components: - type: Transform @@ -43612,7 +44650,7 @@ entities: pos: -14.5,-37.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 6696 components: - type: Transform @@ -43620,7 +44658,7 @@ entities: pos: 40.5,-39.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 6697 components: - type: Transform @@ -43628,7 +44666,7 @@ entities: pos: 41.5,-39.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 6698 components: - type: Transform @@ -43636,14 +44674,14 @@ entities: pos: 42.5,-39.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 6700 components: - type: Transform pos: 44.5,-4.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 6708 components: - type: Transform @@ -43651,7 +44689,7 @@ entities: pos: 22.5,0.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 6713 components: - type: Transform @@ -43659,7 +44697,7 @@ entities: pos: 22.5,1.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 6719 components: - type: Transform @@ -43667,7 +44705,7 @@ entities: pos: 22.5,-0.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 6722 components: - type: Transform @@ -43675,7 +44713,7 @@ entities: pos: 34.5,-3.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 6797 components: - type: Transform @@ -43683,7 +44721,7 @@ entities: pos: 34.5,-13.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 6869 components: - type: Transform @@ -43691,7 +44729,7 @@ entities: pos: 35.5,-13.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 6876 components: - type: Transform @@ -43699,7 +44737,7 @@ entities: pos: 2.5,-40.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 6882 components: - type: Transform @@ -43707,7 +44745,7 @@ entities: pos: 24.5,-1.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 6891 components: - type: Transform @@ -43715,7 +44753,7 @@ entities: pos: 34.5,-14.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 6937 components: - type: Transform @@ -43723,7 +44761,7 @@ entities: pos: 34.5,-15.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 6959 components: - type: Transform @@ -43731,7 +44769,7 @@ entities: pos: 34.5,-17.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 6979 components: - type: Transform @@ -43739,7 +44777,7 @@ entities: pos: 29.5,-0.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 7027 components: - type: Transform @@ -43747,35 +44785,35 @@ entities: pos: 32.5,-2.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 7052 components: - type: Transform pos: 33.5,-25.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 7053 components: - type: Transform pos: 33.5,-26.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 7054 components: - type: Transform pos: 33.5,-27.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 7082 components: - type: Transform pos: 33.5,-28.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 7088 components: - type: Transform @@ -43783,21 +44821,21 @@ entities: pos: 40.5,-2.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 7102 components: - type: Transform pos: 33.5,-29.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 7144 components: - type: Transform pos: 33.5,-30.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 7146 components: - type: Transform @@ -43812,21 +44850,21 @@ entities: pos: 33.5,-31.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 7158 components: - type: Transform pos: 33.5,-32.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 7161 components: - type: Transform pos: 33.5,-33.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 7165 components: - type: Transform @@ -43834,7 +44872,7 @@ entities: pos: 34.5,-24.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 7166 components: - type: Transform @@ -43842,7 +44880,7 @@ entities: pos: 34.5,-25.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 7167 components: - type: Transform @@ -43850,7 +44888,7 @@ entities: pos: 34.5,-26.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 7168 components: - type: Transform @@ -43858,7 +44896,7 @@ entities: pos: 34.5,-27.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 7169 components: - type: Transform @@ -43866,7 +44904,7 @@ entities: pos: 34.5,-28.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 7170 components: - type: Transform @@ -43874,7 +44912,7 @@ entities: pos: 34.5,-29.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 7172 components: - type: Transform @@ -43882,7 +44920,7 @@ entities: pos: 16.5,-27.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 7175 components: - type: Transform @@ -43890,7 +44928,7 @@ entities: pos: 34.5,-30.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 7176 components: - type: Transform @@ -43898,7 +44936,7 @@ entities: pos: 34.5,-31.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 7180 components: - type: Transform @@ -43906,28 +44944,28 @@ entities: pos: 34.5,-32.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 7181 components: - type: Transform pos: 34.5,-36.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 7182 components: - type: Transform pos: 34.5,-35.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 7183 components: - type: Transform pos: 34.5,-34.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 7193 components: - type: Transform @@ -43935,7 +44973,7 @@ entities: pos: 35.5,-23.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 7194 components: - type: Transform @@ -43943,7 +44981,7 @@ entities: pos: 36.5,-23.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 7195 components: - type: Transform @@ -43951,7 +44989,7 @@ entities: pos: 37.5,-23.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 7196 components: - type: Transform @@ -43959,7 +44997,7 @@ entities: pos: 38.5,-23.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 7197 components: - type: Transform @@ -43967,7 +45005,7 @@ entities: pos: 39.5,-23.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 7198 components: - type: Transform @@ -43975,7 +45013,7 @@ entities: pos: 40.5,-23.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 7199 components: - type: Transform @@ -43983,7 +45021,7 @@ entities: pos: 40.5,-24.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 7201 components: - type: Transform @@ -43991,7 +45029,7 @@ entities: pos: 42.5,-23.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 7202 components: - type: Transform @@ -43999,7 +45037,7 @@ entities: pos: 34.5,-24.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 7205 components: - type: Transform @@ -44007,7 +45045,7 @@ entities: pos: 36.5,-24.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 7226 components: - type: Transform @@ -44015,7 +45053,7 @@ entities: pos: 37.5,-24.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 7227 components: - type: Transform @@ -44023,7 +45061,7 @@ entities: pos: 38.5,-24.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 7228 components: - type: Transform @@ -44031,7 +45069,7 @@ entities: pos: 39.5,-24.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 7229 components: - type: Transform @@ -44039,7 +45077,7 @@ entities: pos: 41.5,-23.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 7230 components: - type: Transform @@ -44047,7 +45085,7 @@ entities: pos: 41.5,-24.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 7231 components: - type: Transform @@ -44055,14 +45093,7 @@ entities: pos: 42.5,-24.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 7232 - components: - - type: Transform - pos: -28.5,-11.5 - parent: 34 - - type: AtmosPipeColor - color: '#F84000FF' + color: '#0335FCFF' - uid: 7267 components: - type: Transform @@ -44070,7 +45101,7 @@ entities: pos: 43.5,-23.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 7268 components: - type: Transform @@ -44078,7 +45109,7 @@ entities: pos: 44.5,-23.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 7383 components: - type: Transform @@ -44086,7 +45117,7 @@ entities: pos: 45.5,-24.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 7391 components: - type: Transform @@ -44094,7 +45125,7 @@ entities: pos: 45.5,-25.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 7402 components: - type: Transform @@ -44102,7 +45133,7 @@ entities: pos: 43.5,-25.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 7404 components: - type: Transform @@ -44110,7 +45141,7 @@ entities: pos: 43.5,-26.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 7405 components: - type: Transform @@ -44126,7 +45157,7 @@ entities: pos: 45.5,-26.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 7493 components: - type: Transform @@ -44142,7 +45173,7 @@ entities: pos: -39.5,-12.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 7497 components: - type: Transform @@ -44150,7 +45181,7 @@ entities: pos: -40.5,-12.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 7501 components: - type: Transform @@ -44158,7 +45189,7 @@ entities: pos: -42.5,-12.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 7553 components: - type: Transform @@ -44166,7 +45197,7 @@ entities: pos: -41.5,-22.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 7555 components: - type: Transform @@ -44174,7 +45205,7 @@ entities: pos: -41.5,-12.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 7571 components: - type: Transform @@ -44182,7 +45213,7 @@ entities: pos: 42.5,-27.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 7648 components: - type: Transform @@ -44190,7 +45221,7 @@ entities: pos: 33.5,-9.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 7649 components: - type: Transform @@ -44198,7 +45229,7 @@ entities: pos: 33.5,-10.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 7664 components: - type: Transform @@ -44206,7 +45237,7 @@ entities: pos: 41.5,-27.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 7668 components: - type: Transform @@ -44214,7 +45245,7 @@ entities: pos: 41.5,-29.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 7670 components: - type: Transform @@ -44222,7 +45253,7 @@ entities: pos: 42.5,-29.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 7671 components: - type: Transform @@ -44230,7 +45261,7 @@ entities: pos: 43.5,-29.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 7672 components: - type: Transform @@ -44238,7 +45269,7 @@ entities: pos: 31.5,-4.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 7710 components: - type: Transform @@ -44246,7 +45277,7 @@ entities: pos: 33.5,-11.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 7713 components: - type: Transform @@ -44254,7 +45285,7 @@ entities: pos: 33.5,-15.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 7714 components: - type: Transform @@ -44262,7 +45293,7 @@ entities: pos: 33.5,-12.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 7715 components: - type: Transform @@ -44270,7 +45301,7 @@ entities: pos: 29.5,-12.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 7717 components: - type: Transform @@ -44278,14 +45309,14 @@ entities: pos: 44.5,-29.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 7734 components: - type: Transform pos: 4.5,-45.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 7762 components: - type: Transform @@ -44293,7 +45324,7 @@ entities: pos: -43.5,-22.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 7764 components: - type: Transform @@ -44301,7 +45332,7 @@ entities: pos: -45.5,-21.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 7769 components: - type: Transform @@ -44309,7 +45340,7 @@ entities: pos: -46.5,-22.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 7770 components: - type: Transform @@ -44317,7 +45348,7 @@ entities: pos: -48.5,-22.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 7771 components: - type: Transform @@ -44325,7 +45356,7 @@ entities: pos: -44.5,-22.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 7773 components: - type: Transform @@ -44333,7 +45364,7 @@ entities: pos: -50.5,-22.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 7815 components: - type: Transform @@ -44371,7 +45402,7 @@ entities: pos: 33.5,-14.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 7971 components: - type: Transform @@ -44379,7 +45410,7 @@ entities: pos: -14.5,-0.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 7972 components: - type: Transform @@ -44387,7 +45418,7 @@ entities: pos: -15.5,-0.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 7974 components: - type: Transform @@ -44395,7 +45426,7 @@ entities: pos: -18.5,-0.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 7975 components: - type: Transform @@ -44403,7 +45434,7 @@ entities: pos: -19.5,-0.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 7976 components: - type: Transform @@ -44411,7 +45442,7 @@ entities: pos: -20.5,-0.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 7977 components: - type: Transform @@ -44419,7 +45450,7 @@ entities: pos: -21.5,-0.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 7978 components: - type: Transform @@ -44427,7 +45458,7 @@ entities: pos: -22.5,-0.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 7979 components: - type: Transform @@ -44435,7 +45466,7 @@ entities: pos: -24.5,-0.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 7980 components: - type: Transform @@ -44443,7 +45474,7 @@ entities: pos: -25.5,-0.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 7982 components: - type: Transform @@ -44451,15 +45482,7 @@ entities: pos: -27.5,-0.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 7983 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -28.5,-0.5 - parent: 34 - - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 7984 components: - type: Transform @@ -44467,14 +45490,14 @@ entities: pos: -29.5,-0.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 7985 components: - type: Transform pos: -30.5,0.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 8006 components: - type: Transform @@ -44482,7 +45505,7 @@ entities: pos: 4.5,-38.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8177 components: - type: Transform @@ -44490,7 +45513,7 @@ entities: pos: 10.5,-32.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 8178 components: - type: Transform @@ -44498,7 +45521,7 @@ entities: pos: 33.5,-19.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 8180 components: - type: Transform @@ -44506,7 +45529,7 @@ entities: pos: 11.5,-32.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 8182 components: - type: Transform @@ -44514,7 +45537,7 @@ entities: pos: 33.5,-18.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 8183 components: - type: Transform @@ -44522,7 +45545,7 @@ entities: pos: 32.5,-17.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 8184 components: - type: Transform @@ -44530,14 +45553,14 @@ entities: pos: 31.5,-17.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 8185 components: - type: Transform pos: 30.5,-16.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 8187 components: - type: Transform @@ -44545,7 +45568,7 @@ entities: pos: 28.5,-13.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 8188 components: - type: Transform @@ -44553,7 +45576,7 @@ entities: pos: 27.5,-13.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 8196 components: - type: Transform @@ -44561,7 +45584,7 @@ entities: pos: -43.5,-25.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 8214 components: - type: Transform @@ -44569,7 +45592,7 @@ entities: pos: -46.5,-25.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 8223 components: - type: Transform @@ -44577,7 +45600,7 @@ entities: pos: -48.5,-25.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 8227 components: - type: Transform @@ -44585,7 +45608,7 @@ entities: pos: -49.5,-25.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 8277 components: - type: Transform @@ -44593,7 +45616,7 @@ entities: pos: -50.5,-25.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 8328 components: - type: Transform @@ -44601,7 +45624,7 @@ entities: pos: 10.5,-33.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8355 components: - type: Transform @@ -44609,7 +45632,7 @@ entities: pos: -32.5,-41.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8357 components: - type: Transform @@ -44617,14 +45640,14 @@ entities: pos: -29.5,-41.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8369 components: - type: Transform pos: -38.5,-34.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 8372 components: - type: Transform @@ -44632,7 +45655,7 @@ entities: pos: -38.5,-37.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8373 components: - type: Transform @@ -44640,7 +45663,7 @@ entities: pos: -37.5,-37.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8374 components: - type: Transform @@ -44648,7 +45671,7 @@ entities: pos: -36.5,-37.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8375 components: - type: Transform @@ -44656,7 +45679,7 @@ entities: pos: -35.5,-37.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8376 components: - type: Transform @@ -44664,7 +45687,7 @@ entities: pos: -34.5,-37.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8377 components: - type: Transform @@ -44672,7 +45695,7 @@ entities: pos: -33.5,-37.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8378 components: - type: Transform @@ -44680,7 +45703,7 @@ entities: pos: -31.5,-37.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8379 components: - type: Transform @@ -44688,7 +45711,7 @@ entities: pos: -32.5,-38.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8380 components: - type: Transform @@ -44696,7 +45719,7 @@ entities: pos: -32.5,-39.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8381 components: - type: Transform @@ -44704,7 +45727,7 @@ entities: pos: -32.5,-40.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8382 components: - type: Transform @@ -44712,7 +45735,7 @@ entities: pos: -30.5,-38.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8383 components: - type: Transform @@ -44720,42 +45743,42 @@ entities: pos: -30.5,-39.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8386 components: - type: Transform pos: -30.5,-36.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8387 components: - type: Transform pos: -30.5,-35.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8389 components: - type: Transform pos: -30.5,-33.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8390 components: - type: Transform pos: -30.5,-32.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8391 components: - type: Transform pos: -30.5,-31.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8393 components: - type: Transform @@ -44763,7 +45786,7 @@ entities: pos: -31.5,-30.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8394 components: - type: Transform @@ -44771,7 +45794,7 @@ entities: pos: -32.5,-30.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8395 components: - type: Transform @@ -44779,7 +45802,7 @@ entities: pos: -33.5,-30.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8397 components: - type: Transform @@ -44787,7 +45810,7 @@ entities: pos: -35.5,-30.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8398 components: - type: Transform @@ -44795,7 +45818,7 @@ entities: pos: -36.5,-30.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8399 components: - type: Transform @@ -44803,7 +45826,7 @@ entities: pos: -37.5,-30.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8400 components: - type: Transform @@ -44811,7 +45834,7 @@ entities: pos: -39.5,-30.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8401 components: - type: Transform @@ -44819,7 +45842,7 @@ entities: pos: -40.5,-30.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8402 components: - type: Transform @@ -44827,21 +45850,21 @@ entities: pos: -41.5,-30.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8407 components: - type: Transform pos: -44.5,-31.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8408 components: - type: Transform pos: -44.5,-32.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8410 components: - type: Transform @@ -44849,7 +45872,7 @@ entities: pos: -43.5,-30.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8411 components: - type: Transform @@ -44857,7 +45880,7 @@ entities: pos: -42.5,-30.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8414 components: - type: Transform @@ -44865,7 +45888,7 @@ entities: pos: -42.5,-21.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 8419 components: - type: Transform @@ -44873,7 +45896,7 @@ entities: pos: -27.5,-26.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8420 components: - type: Transform @@ -44881,14 +45904,14 @@ entities: pos: -26.5,-26.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8423 components: - type: Transform pos: -44.5,-26.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 8425 components: - type: Transform @@ -44896,7 +45919,7 @@ entities: pos: -34.5,-27.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8426 components: - type: Transform @@ -44904,7 +45927,7 @@ entities: pos: -34.5,-28.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8427 components: - type: Transform @@ -44912,7 +45935,7 @@ entities: pos: -34.5,-29.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8428 components: - type: Transform @@ -44920,14 +45943,14 @@ entities: pos: -40.5,-21.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 8433 components: - type: Transform pos: -2.5,13.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8437 components: - type: Transform @@ -44935,7 +45958,7 @@ entities: pos: -25.5,-25.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8438 components: - type: Transform @@ -44943,7 +45966,7 @@ entities: pos: -25.5,-24.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8442 components: - type: Transform @@ -44951,7 +45974,7 @@ entities: pos: -24.5,-22.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8443 components: - type: Transform @@ -44959,7 +45982,7 @@ entities: pos: -23.5,-22.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8445 components: - type: Transform @@ -44967,7 +45990,7 @@ entities: pos: -21.5,-22.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8446 components: - type: Transform @@ -44975,7 +45998,7 @@ entities: pos: -20.5,-22.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8447 components: - type: Transform @@ -44983,7 +46006,7 @@ entities: pos: -19.5,-22.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8448 components: - type: Transform @@ -44991,7 +46014,7 @@ entities: pos: -18.5,-22.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8451 components: - type: Transform @@ -44999,7 +46022,7 @@ entities: pos: -15.5,-22.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8452 components: - type: Transform @@ -45007,7 +46030,7 @@ entities: pos: -14.5,-22.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8453 components: - type: Transform @@ -45015,28 +46038,28 @@ entities: pos: -13.5,-22.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8456 components: - type: Transform pos: -16.5,-21.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8457 components: - type: Transform pos: -16.5,-20.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8459 components: - type: Transform pos: -11.5,-24.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8460 components: - type: Transform @@ -45044,56 +46067,56 @@ entities: pos: -12.5,-25.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8462 components: - type: Transform pos: -11.5,-23.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8464 components: - type: Transform pos: -11.5,-26.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8465 components: - type: Transform pos: -11.5,-27.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8466 components: - type: Transform pos: -11.5,-28.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8467 components: - type: Transform pos: -11.5,-29.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8468 components: - type: Transform pos: -11.5,-30.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8469 components: - type: Transform pos: -11.5,-31.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8471 components: - type: Transform @@ -45101,7 +46124,7 @@ entities: pos: 26.5,-13.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 8497 components: - type: Transform @@ -45109,77 +46132,77 @@ entities: pos: 3.5,-39.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8585 components: - type: Transform pos: -12.5,-21.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8586 components: - type: Transform pos: -12.5,-20.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8587 components: - type: Transform pos: -12.5,-19.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8588 components: - type: Transform pos: -12.5,-18.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8589 components: - type: Transform pos: -12.5,-17.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8590 components: - type: Transform pos: -12.5,-16.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8591 components: - type: Transform pos: -12.5,-15.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8592 components: - type: Transform pos: -12.5,-14.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8593 components: - type: Transform pos: -12.5,-13.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8594 components: - type: Transform pos: -12.5,-12.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8599 components: - type: Transform @@ -45187,7 +46210,7 @@ entities: pos: -13.5,-11.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8600 components: - type: Transform @@ -45195,7 +46218,7 @@ entities: pos: -11.5,-11.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8601 components: - type: Transform @@ -45203,7 +46226,7 @@ entities: pos: -9.5,-11.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8602 components: - type: Transform @@ -45211,7 +46234,7 @@ entities: pos: -8.5,-11.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8603 components: - type: Transform @@ -45219,7 +46242,7 @@ entities: pos: -7.5,-11.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8604 components: - type: Transform @@ -45227,7 +46250,7 @@ entities: pos: -6.5,-11.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8606 components: - type: Transform @@ -45235,56 +46258,56 @@ entities: pos: -4.5,-11.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8611 components: - type: Transform pos: -5.5,-13.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8613 components: - type: Transform pos: -5.5,-15.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8614 components: - type: Transform pos: -5.5,-16.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8615 components: - type: Transform pos: -5.5,-17.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8616 components: - type: Transform pos: -5.5,-18.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8618 components: - type: Transform pos: -5.5,-20.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8619 components: - type: Transform pos: -5.5,-21.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8620 components: - type: Transform @@ -45292,7 +46315,7 @@ entities: pos: -6.5,-22.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8621 components: - type: Transform @@ -45300,7 +46323,7 @@ entities: pos: -7.5,-22.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8622 components: - type: Transform @@ -45308,7 +46331,7 @@ entities: pos: -8.5,-22.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8623 components: - type: Transform @@ -45316,7 +46339,7 @@ entities: pos: -9.5,-22.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8624 components: - type: Transform @@ -45324,7 +46347,7 @@ entities: pos: -10.5,-22.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8625 components: - type: Transform @@ -45332,7 +46355,7 @@ entities: pos: -4.5,-19.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8627 components: - type: Transform @@ -45340,7 +46363,7 @@ entities: pos: -2.5,-10.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8631 components: - type: Transform @@ -45348,7 +46371,7 @@ entities: pos: 0.5,-10.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8632 components: - type: Transform @@ -45356,7 +46379,7 @@ entities: pos: -0.5,-10.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8633 components: - type: Transform @@ -45364,7 +46387,7 @@ entities: pos: 1.5,-10.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8635 components: - type: Transform @@ -45372,28 +46395,28 @@ entities: pos: -1.5,-10.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8639 components: - type: Transform pos: 2.5,-7.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8640 components: - type: Transform pos: 2.5,-6.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8641 components: - type: Transform pos: 2.5,-5.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8644 components: - type: Transform @@ -45401,7 +46424,7 @@ entities: pos: 3.5,-4.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8645 components: - type: Transform @@ -45409,7 +46432,7 @@ entities: pos: 4.5,-4.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8646 components: - type: Transform @@ -45417,7 +46440,7 @@ entities: pos: 5.5,-4.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8647 components: - type: Transform @@ -45425,7 +46448,7 @@ entities: pos: 6.5,-4.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8648 components: - type: Transform @@ -45433,7 +46456,7 @@ entities: pos: 7.5,-4.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8654 components: - type: Transform @@ -45441,7 +46464,7 @@ entities: pos: 3.5,-8.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8655 components: - type: Transform @@ -45449,7 +46472,7 @@ entities: pos: 4.5,-8.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8656 components: - type: Transform @@ -45457,7 +46480,7 @@ entities: pos: 5.5,-8.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8657 components: - type: Transform @@ -45465,7 +46488,7 @@ entities: pos: 6.5,-8.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8658 components: - type: Transform @@ -45473,7 +46496,7 @@ entities: pos: 7.5,-8.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8660 components: - type: Transform @@ -45481,35 +46504,35 @@ entities: pos: 8.5,-8.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8665 components: - type: Transform pos: -3.5,-9.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8666 components: - type: Transform pos: -3.5,-8.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8667 components: - type: Transform pos: -3.5,-7.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8668 components: - type: Transform pos: -3.5,-6.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8669 components: - type: Transform @@ -45517,7 +46540,7 @@ entities: pos: -4.5,-5.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8670 components: - type: Transform @@ -45525,7 +46548,7 @@ entities: pos: -3.5,-4.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8671 components: - type: Transform @@ -45533,7 +46556,7 @@ entities: pos: -3.5,-3.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8672 components: - type: Transform @@ -45541,7 +46564,7 @@ entities: pos: -3.5,-2.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8675 components: - type: Transform @@ -45549,7 +46572,7 @@ entities: pos: -4.5,-1.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8676 components: - type: Transform @@ -45557,7 +46580,7 @@ entities: pos: -5.5,-1.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8677 components: - type: Transform @@ -45565,28 +46588,28 @@ entities: pos: -6.5,-1.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8678 components: - type: Transform pos: -7.5,-0.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8679 components: - type: Transform pos: -7.5,0.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8680 components: - type: Transform pos: -7.5,1.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8691 components: - type: Transform @@ -45594,7 +46617,7 @@ entities: pos: -28.5,-1.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8692 components: - type: Transform @@ -45602,7 +46625,7 @@ entities: pos: -27.5,-1.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8693 components: - type: Transform @@ -45610,7 +46633,7 @@ entities: pos: -26.5,-1.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8694 components: - type: Transform @@ -45618,7 +46641,7 @@ entities: pos: -25.5,-1.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8695 components: - type: Transform @@ -45626,7 +46649,7 @@ entities: pos: -29.5,-0.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8696 components: - type: Transform @@ -45634,7 +46657,7 @@ entities: pos: -29.5,0.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8702 components: - type: Transform @@ -45642,7 +46665,7 @@ entities: pos: -23.5,-2.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8703 components: - type: Transform @@ -45650,7 +46673,7 @@ entities: pos: -14.5,2.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8704 components: - type: Transform @@ -45658,7 +46681,7 @@ entities: pos: -14.5,1.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8705 components: - type: Transform @@ -45666,7 +46689,7 @@ entities: pos: -14.5,0.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8706 components: - type: Transform @@ -45674,7 +46697,7 @@ entities: pos: -14.5,-0.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8707 components: - type: Transform @@ -45682,7 +46705,7 @@ entities: pos: -18.5,-0.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8708 components: - type: Transform @@ -45690,7 +46713,7 @@ entities: pos: -22.5,-1.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8709 components: - type: Transform @@ -45698,7 +46721,7 @@ entities: pos: -21.5,-1.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8710 components: - type: Transform @@ -45706,7 +46729,7 @@ entities: pos: -20.5,-1.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8711 components: - type: Transform @@ -45714,7 +46737,7 @@ entities: pos: -19.5,-1.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8712 components: - type: Transform @@ -45722,7 +46745,7 @@ entities: pos: -17.5,-1.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8713 components: - type: Transform @@ -45730,7 +46753,7 @@ entities: pos: -16.5,-1.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8714 components: - type: Transform @@ -45738,7 +46761,7 @@ entities: pos: -15.5,-1.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8715 components: - type: Transform @@ -45746,7 +46769,7 @@ entities: pos: -13.5,-1.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8716 components: - type: Transform @@ -45754,7 +46777,7 @@ entities: pos: -12.5,-1.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8717 components: - type: Transform @@ -45762,7 +46785,7 @@ entities: pos: -11.5,-1.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8718 components: - type: Transform @@ -45770,7 +46793,7 @@ entities: pos: -10.5,-1.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8719 components: - type: Transform @@ -45778,7 +46801,7 @@ entities: pos: -9.5,-1.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8720 components: - type: Transform @@ -45786,7 +46809,7 @@ entities: pos: -8.5,-1.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8725 components: - type: Transform @@ -45794,14 +46817,14 @@ entities: pos: -1.5,-1.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8730 components: - type: Transform pos: -0.5,-0.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8731 components: - type: Transform @@ -45809,7 +46832,7 @@ entities: pos: 9.5,-0.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8732 components: - type: Transform @@ -45817,7 +46840,7 @@ entities: pos: 8.5,-1.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8733 components: - type: Transform @@ -45825,7 +46848,7 @@ entities: pos: 7.5,-1.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8734 components: - type: Transform @@ -45833,7 +46856,7 @@ entities: pos: 6.5,-1.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8735 components: - type: Transform @@ -45841,7 +46864,7 @@ entities: pos: 5.5,-1.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8736 components: - type: Transform @@ -45849,7 +46872,7 @@ entities: pos: 4.5,-1.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8737 components: - type: Transform @@ -45857,7 +46880,7 @@ entities: pos: 3.5,-1.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8738 components: - type: Transform @@ -45865,7 +46888,7 @@ entities: pos: 2.5,-1.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8739 components: - type: Transform @@ -45873,7 +46896,7 @@ entities: pos: 1.5,-1.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8740 components: - type: Transform @@ -45881,7 +46904,7 @@ entities: pos: 0.5,-1.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8742 components: - type: Transform @@ -45889,7 +46912,7 @@ entities: pos: 9.5,0.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8743 components: - type: Transform @@ -45897,7 +46920,7 @@ entities: pos: 9.5,2.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8744 components: - type: Transform @@ -45905,7 +46928,7 @@ entities: pos: 9.5,3.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8745 components: - type: Transform @@ -45913,7 +46936,7 @@ entities: pos: 9.5,4.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8746 components: - type: Transform @@ -45921,7 +46944,7 @@ entities: pos: 9.5,5.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8747 components: - type: Transform @@ -45929,7 +46952,7 @@ entities: pos: 9.5,7.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8748 components: - type: Transform @@ -45937,7 +46960,7 @@ entities: pos: 9.5,8.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8749 components: - type: Transform @@ -45945,7 +46968,7 @@ entities: pos: 9.5,9.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8755 components: - type: Transform @@ -45953,7 +46976,7 @@ entities: pos: 10.5,-1.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8756 components: - type: Transform @@ -45961,7 +46984,7 @@ entities: pos: 11.5,-1.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8757 components: - type: Transform @@ -45969,7 +46992,7 @@ entities: pos: 12.5,-1.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8758 components: - type: Transform @@ -45977,77 +47000,77 @@ entities: pos: 13.5,-1.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8762 components: - type: Transform pos: 14.5,9.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8763 components: - type: Transform pos: 14.5,10.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8765 components: - type: Transform pos: 14.5,12.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8766 components: - type: Transform pos: 14.5,7.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8767 components: - type: Transform pos: 14.5,6.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8768 components: - type: Transform pos: 14.5,5.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8769 components: - type: Transform pos: 14.5,4.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8770 components: - type: Transform pos: 14.5,2.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8771 components: - type: Transform pos: 14.5,1.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8772 components: - type: Transform pos: 14.5,-0.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8773 components: - type: Transform @@ -46055,7 +47078,7 @@ entities: pos: 15.5,0.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8774 components: - type: Transform @@ -46063,7 +47086,7 @@ entities: pos: 16.5,0.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8775 components: - type: Transform @@ -46071,7 +47094,7 @@ entities: pos: -1.5,-14.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8777 components: - type: Transform @@ -46079,7 +47102,7 @@ entities: pos: 15.5,3.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8778 components: - type: Transform @@ -46087,7 +47110,7 @@ entities: pos: 16.5,3.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8783 components: - type: Transform @@ -46095,7 +47118,7 @@ entities: pos: -2.5,-14.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8784 components: - type: Transform @@ -46103,7 +47126,7 @@ entities: pos: -4.5,-14.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8785 components: - type: Transform @@ -46111,7 +47134,7 @@ entities: pos: -3.5,-14.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8788 components: - type: Transform @@ -46119,7 +47142,7 @@ entities: pos: 14.5,-3.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8790 components: - type: Transform @@ -46127,7 +47150,7 @@ entities: pos: 14.5,-2.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8791 components: - type: Transform @@ -46135,7 +47158,7 @@ entities: pos: 14.5,-6.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8792 components: - type: Transform @@ -46143,7 +47166,7 @@ entities: pos: 14.5,-7.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8793 components: - type: Transform @@ -46151,7 +47174,7 @@ entities: pos: 14.5,-8.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8794 components: - type: Transform @@ -46159,7 +47182,7 @@ entities: pos: 14.5,-9.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8797 components: - type: Transform @@ -46167,14 +47190,14 @@ entities: pos: 13.5,11.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8798 components: - type: Transform pos: 14.5,-5.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8807 components: - type: Transform @@ -46182,7 +47205,7 @@ entities: pos: 13.5,-10.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8808 components: - type: Transform @@ -46190,7 +47213,7 @@ entities: pos: 12.5,-10.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8809 components: - type: Transform @@ -46198,7 +47221,7 @@ entities: pos: 14.5,-11.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8821 components: - type: Transform @@ -46206,7 +47229,7 @@ entities: pos: 13.5,-32.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 8824 components: - type: Transform @@ -46214,7 +47237,7 @@ entities: pos: 35.5,-23.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8825 components: - type: Transform @@ -46222,7 +47245,7 @@ entities: pos: 35.5,-22.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8826 components: - type: Transform @@ -46230,7 +47253,7 @@ entities: pos: 35.5,-21.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8827 components: - type: Transform @@ -46238,7 +47261,7 @@ entities: pos: 35.5,-20.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8828 components: - type: Transform @@ -46246,7 +47269,7 @@ entities: pos: 35.5,-19.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8835 components: - type: Transform @@ -46254,7 +47277,7 @@ entities: pos: 31.5,-15.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8838 components: - type: Transform @@ -46262,7 +47285,7 @@ entities: pos: 31.5,-13.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8839 components: - type: Transform @@ -46270,7 +47293,7 @@ entities: pos: 30.5,-12.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8840 components: - type: Transform @@ -46278,7 +47301,7 @@ entities: pos: 28.5,-12.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8843 components: - type: Transform @@ -46286,7 +47309,7 @@ entities: pos: 27.5,-12.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8847 components: - type: Transform @@ -46294,7 +47317,7 @@ entities: pos: 24.5,-12.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8848 components: - type: Transform @@ -46302,7 +47325,7 @@ entities: pos: 23.5,-12.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8849 components: - type: Transform @@ -46310,7 +47333,7 @@ entities: pos: 22.5,-12.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8853 components: - type: Transform @@ -46318,7 +47341,7 @@ entities: pos: 25.5,-12.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8856 components: - type: Transform @@ -46326,7 +47349,7 @@ entities: pos: 21.5,-12.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8857 components: - type: Transform @@ -46334,7 +47357,7 @@ entities: pos: 20.5,-12.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8859 components: - type: Transform @@ -46342,7 +47365,7 @@ entities: pos: 19.5,-12.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8860 components: - type: Transform @@ -46350,7 +47373,7 @@ entities: pos: 18.5,-12.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8865 components: - type: Transform @@ -46358,7 +47381,7 @@ entities: pos: 16.5,-12.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8866 components: - type: Transform @@ -46366,7 +47389,7 @@ entities: pos: 15.5,-12.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8870 components: - type: Transform @@ -46374,7 +47397,7 @@ entities: pos: 16.5,-13.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 8875 components: - type: Transform @@ -46382,7 +47405,7 @@ entities: pos: 15.5,-13.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 8877 components: - type: Transform @@ -46390,7 +47413,7 @@ entities: pos: 17.5,-13.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 8882 components: - type: Transform @@ -46398,7 +47421,7 @@ entities: pos: 19.5,-13.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 8883 components: - type: Transform @@ -46406,7 +47429,7 @@ entities: pos: 21.5,-13.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 8884 components: - type: Transform @@ -46414,7 +47437,7 @@ entities: pos: 22.5,-13.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 8885 components: - type: Transform @@ -46422,7 +47445,7 @@ entities: pos: 24.5,-13.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 8886 components: - type: Transform @@ -46430,7 +47453,7 @@ entities: pos: 23.5,-13.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 8887 components: - type: Transform @@ -46438,7 +47461,7 @@ entities: pos: 20.5,-13.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 8896 components: - type: Transform @@ -46446,7 +47469,7 @@ entities: pos: 40.5,-3.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8897 components: - type: Transform @@ -46454,7 +47477,7 @@ entities: pos: 42.5,-2.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8898 components: - type: Transform @@ -46462,7 +47485,7 @@ entities: pos: 42.5,-1.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8899 components: - type: Transform @@ -46470,7 +47493,7 @@ entities: pos: 42.5,-0.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8900 components: - type: Transform @@ -46478,7 +47501,7 @@ entities: pos: 42.5,0.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8901 components: - type: Transform @@ -46486,7 +47509,7 @@ entities: pos: 42.5,1.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8902 components: - type: Transform @@ -46494,7 +47517,7 @@ entities: pos: 42.5,2.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8904 components: - type: Transform @@ -46502,7 +47525,7 @@ entities: pos: 43.5,-3.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8934 components: - type: Transform @@ -46510,7 +47533,7 @@ entities: pos: 40.5,4.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 8935 components: - type: Transform @@ -46518,14 +47541,14 @@ entities: pos: 39.5,4.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 8945 components: - type: Transform pos: -5.5,-23.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8946 components: - type: Transform @@ -46533,7 +47556,7 @@ entities: pos: -5.5,-25.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8947 components: - type: Transform @@ -46541,7 +47564,7 @@ entities: pos: -5.5,-26.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8948 components: - type: Transform @@ -46549,7 +47572,7 @@ entities: pos: -5.5,-27.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8949 components: - type: Transform @@ -46557,7 +47580,7 @@ entities: pos: -5.5,-28.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8950 components: - type: Transform @@ -46565,7 +47588,7 @@ entities: pos: -5.5,-29.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8951 components: - type: Transform @@ -46573,7 +47596,7 @@ entities: pos: -5.5,-30.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8952 components: - type: Transform @@ -46581,7 +47604,7 @@ entities: pos: -5.5,-31.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8953 components: - type: Transform @@ -46589,7 +47612,7 @@ entities: pos: -5.5,-32.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8955 components: - type: Transform @@ -46597,7 +47620,7 @@ entities: pos: -5.5,-34.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8956 components: - type: Transform @@ -46605,7 +47628,7 @@ entities: pos: -5.5,-35.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8958 components: - type: Transform @@ -46613,7 +47636,7 @@ entities: pos: -5.5,-37.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8959 components: - type: Transform @@ -46621,7 +47644,7 @@ entities: pos: -5.5,-38.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8960 components: - type: Transform @@ -46629,7 +47652,7 @@ entities: pos: -5.5,-39.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8961 components: - type: Transform @@ -46637,7 +47660,7 @@ entities: pos: -5.5,-40.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8963 components: - type: Transform @@ -46645,7 +47668,7 @@ entities: pos: -5.5,-42.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8964 components: - type: Transform @@ -46653,14 +47676,14 @@ entities: pos: -5.5,-43.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8966 components: - type: Transform pos: -5.5,-45.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8973 components: - type: Transform @@ -46668,7 +47691,7 @@ entities: pos: 7.5,-42.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 8974 components: - type: Transform @@ -46676,7 +47699,7 @@ entities: pos: 8.5,-42.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 8975 components: - type: Transform @@ -46684,7 +47707,7 @@ entities: pos: -6.5,-41.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8976 components: - type: Transform @@ -46692,7 +47715,7 @@ entities: pos: -7.5,-41.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8979 components: - type: Transform @@ -46700,7 +47723,7 @@ entities: pos: 4.5,-40.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8982 components: - type: Transform @@ -46708,7 +47731,7 @@ entities: pos: 2.5,-47.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8984 components: - type: Transform @@ -46716,7 +47739,7 @@ entities: pos: 2.5,-37.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8985 components: - type: Transform @@ -46724,7 +47747,7 @@ entities: pos: 2.5,-39.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8997 components: - type: Transform @@ -46732,7 +47755,7 @@ entities: pos: -4.5,-33.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8998 components: - type: Transform @@ -46740,7 +47763,7 @@ entities: pos: -3.5,-33.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8999 components: - type: Transform @@ -46748,7 +47771,7 @@ entities: pos: -2.5,-33.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 9000 components: - type: Transform @@ -46756,7 +47779,7 @@ entities: pos: -1.5,-33.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 9001 components: - type: Transform @@ -46764,7 +47787,7 @@ entities: pos: -0.5,-32.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 9002 components: - type: Transform @@ -46772,7 +47795,7 @@ entities: pos: -0.5,-31.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 9003 components: - type: Transform @@ -46780,7 +47803,7 @@ entities: pos: -0.5,-30.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 9004 components: - type: Transform @@ -46788,7 +47811,7 @@ entities: pos: -0.5,-29.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 9005 components: - type: Transform @@ -46796,7 +47819,7 @@ entities: pos: -0.5,-28.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 9006 components: - type: Transform @@ -46804,7 +47827,7 @@ entities: pos: -0.5,-27.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 9007 components: - type: Transform @@ -46812,7 +47835,7 @@ entities: pos: -1.5,-31.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9008 components: - type: Transform @@ -46820,7 +47843,7 @@ entities: pos: -1.5,-30.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9009 components: - type: Transform @@ -46828,7 +47851,7 @@ entities: pos: -1.5,-29.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9011 components: - type: Transform @@ -46836,7 +47859,7 @@ entities: pos: -0.5,-28.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9014 components: - type: Transform @@ -46844,7 +47867,7 @@ entities: pos: -2.5,-32.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9015 components: - type: Transform @@ -46852,21 +47875,21 @@ entities: pos: -3.5,-32.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9017 components: - type: Transform pos: 3.5,-44.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9018 components: - type: Transform pos: 3.5,-43.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9022 components: - type: Transform @@ -46874,7 +47897,7 @@ entities: pos: 4.5,-42.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 9024 components: - type: Transform @@ -46882,7 +47905,7 @@ entities: pos: -4.5,-24.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 9025 components: - type: Transform @@ -46890,7 +47913,7 @@ entities: pos: -3.5,-24.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 9026 components: - type: Transform @@ -46898,14 +47921,14 @@ entities: pos: -2.5,-24.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 9030 components: - type: Transform pos: 4.5,-46.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 9034 components: - type: Transform @@ -46913,7 +47936,7 @@ entities: pos: 4.5,-43.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 9038 components: - type: Transform @@ -46926,14 +47949,14 @@ entities: pos: 3.5,-39.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9040 components: - type: Transform pos: 3.5,-38.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9045 components: - type: Transform @@ -46941,7 +47964,7 @@ entities: pos: -0.5,-24.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 9046 components: - type: Transform @@ -46949,7 +47972,7 @@ entities: pos: 1.5,-24.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 9047 components: - type: Transform @@ -46957,7 +47980,7 @@ entities: pos: 2.5,-24.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 9048 components: - type: Transform @@ -46965,7 +47988,7 @@ entities: pos: 4.5,-24.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 9051 components: - type: Transform @@ -46973,7 +47996,7 @@ entities: pos: 8.5,-24.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 9052 components: - type: Transform @@ -46981,7 +48004,7 @@ entities: pos: 3.5,-23.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 9053 components: - type: Transform @@ -46989,7 +48012,7 @@ entities: pos: 0.5,-23.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 9054 components: - type: Transform @@ -46997,7 +48020,7 @@ entities: pos: 0.5,-22.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 9055 components: - type: Transform @@ -47005,7 +48028,7 @@ entities: pos: 0.5,-21.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 9056 components: - type: Transform @@ -47013,28 +48036,28 @@ entities: pos: 0.5,-20.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 9058 components: - type: Transform pos: 5.5,-23.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 9059 components: - type: Transform pos: 5.5,-22.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 9060 components: - type: Transform pos: 5.5,-21.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 9062 components: - type: Transform @@ -47042,7 +48065,7 @@ entities: pos: 10.5,-24.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 9063 components: - type: Transform @@ -47050,7 +48073,7 @@ entities: pos: 11.5,-24.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 9068 components: - type: Transform @@ -47058,7 +48081,7 @@ entities: pos: 12.5,-24.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 9074 components: - type: Transform @@ -47066,7 +48089,7 @@ entities: pos: 14.5,-23.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 9075 components: - type: Transform @@ -47074,7 +48097,7 @@ entities: pos: 14.5,-22.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 9076 components: - type: Transform @@ -47082,7 +48105,7 @@ entities: pos: 14.5,-21.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 9077 components: - type: Transform @@ -47090,7 +48113,7 @@ entities: pos: 14.5,-20.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 9078 components: - type: Transform @@ -47098,7 +48121,7 @@ entities: pos: 14.5,-19.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 9079 components: - type: Transform @@ -47106,7 +48129,7 @@ entities: pos: 14.5,-18.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 9080 components: - type: Transform @@ -47114,7 +48137,7 @@ entities: pos: 14.5,-17.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 9081 components: - type: Transform @@ -47122,7 +48145,7 @@ entities: pos: 14.5,-16.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 9082 components: - type: Transform @@ -47130,7 +48153,7 @@ entities: pos: 14.5,-15.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 9083 components: - type: Transform @@ -47138,7 +48161,7 @@ entities: pos: 14.5,-14.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 9084 components: - type: Transform @@ -47146,7 +48169,7 @@ entities: pos: 14.5,-13.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 9086 components: - type: Transform @@ -47154,7 +48177,7 @@ entities: pos: 15.5,-24.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 9087 components: - type: Transform @@ -47162,7 +48185,7 @@ entities: pos: 16.5,-24.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 9088 components: - type: Transform @@ -47170,7 +48193,7 @@ entities: pos: 17.5,-24.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 9089 components: - type: Transform @@ -47178,7 +48201,7 @@ entities: pos: 18.5,-24.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 9090 components: - type: Transform @@ -47186,7 +48209,7 @@ entities: pos: 19.5,-24.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 9091 components: - type: Transform @@ -47194,7 +48217,7 @@ entities: pos: 20.5,-24.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 9092 components: - type: Transform @@ -47202,7 +48225,7 @@ entities: pos: 21.5,-24.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 9093 components: - type: Transform @@ -47210,7 +48233,7 @@ entities: pos: 23.5,-24.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 9094 components: - type: Transform @@ -47218,7 +48241,7 @@ entities: pos: 24.5,-24.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 9096 components: - type: Transform @@ -47226,7 +48249,7 @@ entities: pos: 26.5,-24.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 9097 components: - type: Transform @@ -47234,7 +48257,7 @@ entities: pos: 27.5,-24.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 9098 components: - type: Transform @@ -47242,7 +48265,7 @@ entities: pos: 28.5,-24.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 9099 components: - type: Transform @@ -47250,7 +48273,7 @@ entities: pos: 29.5,-24.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 9101 components: - type: Transform @@ -47258,14 +48281,14 @@ entities: pos: 46.5,-12.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 9112 components: - type: Transform pos: 32.5,-23.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 9114 components: - type: Transform @@ -47273,7 +48296,7 @@ entities: pos: 30.5,-24.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 9115 components: - type: Transform @@ -47281,7 +48304,7 @@ entities: pos: 31.5,-24.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 9148 components: - type: Transform @@ -47289,7 +48312,7 @@ entities: pos: 45.5,-27.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9149 components: - type: Transform @@ -47297,84 +48320,84 @@ entities: pos: 45.5,-28.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9152 components: - type: Transform pos: 44.5,-39.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9154 components: - type: Transform pos: 22.5,-25.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 9155 components: - type: Transform pos: 22.5,-26.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 9156 components: - type: Transform pos: 22.5,-27.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 9157 components: - type: Transform pos: 22.5,-28.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 9158 components: - type: Transform pos: 22.5,-29.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 9159 components: - type: Transform pos: 22.5,-30.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 9160 components: - type: Transform pos: 22.5,-31.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 9161 components: - type: Transform pos: 22.5,-32.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 9162 components: - type: Transform pos: 22.5,-33.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 9163 components: - type: Transform pos: 44.5,-38.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9164 components: - type: Transform @@ -47382,7 +48405,7 @@ entities: pos: 22.5,-35.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 9165 components: - type: Transform @@ -47390,14 +48413,14 @@ entities: pos: 22.5,-37.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 9167 components: - type: Transform pos: 44.5,-37.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9177 components: - type: Transform @@ -47405,28 +48428,28 @@ entities: pos: -25.5,-18.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 9178 components: - type: Transform pos: -26.5,-21.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 9179 components: - type: Transform pos: -26.5,-20.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 9180 components: - type: Transform pos: -26.5,-19.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 9183 components: - type: Transform @@ -47434,7 +48457,7 @@ entities: pos: -26.5,-17.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 9184 components: - type: Transform @@ -47442,7 +48465,7 @@ entities: pos: -26.5,-16.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 9185 components: - type: Transform @@ -47450,7 +48473,7 @@ entities: pos: -26.5,-15.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 9188 components: - type: Transform @@ -47458,7 +48481,7 @@ entities: pos: -28.5,-14.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 9189 components: - type: Transform @@ -47466,7 +48489,7 @@ entities: pos: -29.5,-14.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 9190 components: - type: Transform @@ -47474,7 +48497,7 @@ entities: pos: -30.5,-14.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 9193 components: - type: Transform @@ -47482,7 +48505,7 @@ entities: pos: -27.5,-22.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 9194 components: - type: Transform @@ -47490,7 +48513,7 @@ entities: pos: -28.5,-22.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 9195 components: - type: Transform @@ -47498,7 +48521,7 @@ entities: pos: -29.5,-22.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 9196 components: - type: Transform @@ -47506,7 +48529,7 @@ entities: pos: -30.5,-22.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 9197 components: - type: Transform @@ -47514,7 +48537,7 @@ entities: pos: -31.5,-22.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 9198 components: - type: Transform @@ -47522,21 +48545,21 @@ entities: pos: -32.5,-22.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 9199 components: - type: Transform pos: -33.5,-21.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 9200 components: - type: Transform pos: -33.5,-20.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 9203 components: - type: Transform @@ -47544,7 +48567,7 @@ entities: pos: -35.5,-22.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 9204 components: - type: Transform @@ -47552,133 +48575,133 @@ entities: pos: -36.5,-22.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 9206 components: - type: Transform pos: -37.5,-21.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 9207 components: - type: Transform pos: -37.5,-20.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 9208 components: - type: Transform pos: -37.5,-19.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 9209 components: - type: Transform pos: -37.5,-18.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 9210 components: - type: Transform pos: -37.5,-17.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 9211 components: - type: Transform pos: -37.5,-16.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 9212 components: - type: Transform pos: -37.5,-15.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 9213 components: - type: Transform pos: -37.5,-14.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 9214 components: - type: Transform pos: -37.5,-13.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 9215 components: - type: Transform pos: -37.5,-12.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 9216 components: - type: Transform pos: -37.5,-11.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 9218 components: - type: Transform pos: -37.5,-9.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 9219 components: - type: Transform pos: -37.5,-8.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 9221 components: - type: Transform pos: -37.5,-6.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 9222 components: - type: Transform pos: -37.5,-5.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 9223 components: - type: Transform pos: -37.5,-4.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 9224 components: - type: Transform pos: -37.5,-3.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 9225 components: - type: Transform pos: -37.5,-2.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 9226 components: - type: Transform @@ -47686,7 +48709,7 @@ entities: pos: -36.5,-1.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 9227 components: - type: Transform @@ -47694,7 +48717,7 @@ entities: pos: -35.5,-1.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 9229 components: - type: Transform @@ -47702,7 +48725,7 @@ entities: pos: -33.5,-1.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 9230 components: - type: Transform @@ -47710,7 +48733,7 @@ entities: pos: -32.5,-1.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 9231 components: - type: Transform @@ -47718,63 +48741,56 @@ entities: pos: -31.5,-1.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 9233 - components: - - type: Transform - pos: -34.5,-2.5 - parent: 34 - - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 9236 components: - type: Transform pos: -37.5,-0.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 9237 components: - type: Transform pos: -37.5,0.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 9239 components: - type: Transform pos: -37.5,2.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 9240 components: - type: Transform pos: -41.5,2.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9241 components: - type: Transform pos: -41.5,3.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9242 components: - type: Transform pos: -41.5,4.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9243 components: - type: Transform pos: -41.5,5.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9244 components: - type: Transform @@ -47782,21 +48798,21 @@ entities: pos: -39.5,3.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 9245 components: - type: Transform pos: -41.5,6.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9246 components: - type: Transform pos: -41.5,7.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9247 components: - type: Transform @@ -47804,7 +48820,7 @@ entities: pos: -38.5,-1.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 9248 components: - type: Transform @@ -47812,7 +48828,7 @@ entities: pos: -39.5,-1.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 9249 components: - type: Transform @@ -47820,7 +48836,7 @@ entities: pos: -40.5,-1.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 9250 components: - type: Transform @@ -47828,44 +48844,28 @@ entities: pos: -41.5,-1.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 9259 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -48.5,-2.5 - parent: 34 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 9260 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -48.5,-3.5 - parent: 34 - - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 9262 components: - type: Transform pos: -43.5,-2.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 9263 components: - type: Transform pos: -43.5,-3.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 9264 components: - type: Transform pos: -43.5,-4.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 9267 components: - type: Transform @@ -47873,7 +48873,7 @@ entities: pos: -42.5,-1.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 9268 components: - type: Transform @@ -47881,116 +48881,47 @@ entities: pos: -44.5,-1.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 9269 + color: '#0335FCFF' + - uid: 9279 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -45.5,-1.5 + rot: -1.5707963267948966 rad + pos: -38.5,-10.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 9270 + color: '#0335FCFF' + - uid: 9280 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -46.5,-1.5 + rot: -1.5707963267948966 rad + pos: -39.5,-10.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 9271 + color: '#0335FCFF' + - uid: 9281 components: - type: Transform - pos: -47.5,-0.5 + rot: -1.5707963267948966 rad + pos: -40.5,-10.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 9272 + color: '#0335FCFF' + - uid: 9282 components: - type: Transform - pos: -47.5,0.5 + rot: -1.5707963267948966 rad + pos: -41.5,-10.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 9273 + color: '#0335FCFF' + - uid: 9283 components: - type: Transform - pos: -47.5,1.5 + rot: -1.5707963267948966 rad + pos: -42.5,-10.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 9274 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -49.5,-1.5 - parent: 34 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 9275 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -50.5,-1.5 - parent: 34 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 9276 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -51.5,-1.5 - parent: 34 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 9277 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -52.5,-1.5 - parent: 34 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 9279 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -38.5,-10.5 - parent: 34 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 9280 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -39.5,-10.5 - parent: 34 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 9281 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -40.5,-10.5 - parent: 34 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 9282 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -41.5,-10.5 - parent: 34 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 9283 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -42.5,-10.5 - parent: 34 - - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 9284 components: - type: Transform @@ -47998,7 +48929,7 @@ entities: pos: -43.5,-10.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 9285 components: - type: Transform @@ -48006,7 +48937,7 @@ entities: pos: -44.5,-10.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 9286 components: - type: Transform @@ -48014,7 +48945,7 @@ entities: pos: -45.5,-10.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 9287 components: - type: Transform @@ -48022,7 +48953,7 @@ entities: pos: -46.5,-10.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 9288 components: - type: Transform @@ -48030,28 +48961,28 @@ entities: pos: -47.5,-10.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 9291 components: - type: Transform pos: -48.5,-7.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 9292 components: - type: Transform pos: -48.5,-8.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 9293 components: - type: Transform pos: -48.5,-9.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 9296 components: - type: Transform @@ -48059,7 +48990,7 @@ entities: pos: -38.5,-7.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 9299 components: - type: Transform @@ -48067,7 +48998,7 @@ entities: pos: -27.5,-11.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 9300 components: - type: Transform @@ -48075,7 +49006,7 @@ entities: pos: -27.5,-13.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 9301 components: - type: Transform @@ -48083,7 +49014,7 @@ entities: pos: -27.5,-12.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 9303 components: - type: Transform @@ -48091,7 +49022,7 @@ entities: pos: -28.5,-10.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 9306 components: - type: Transform @@ -48099,7 +49030,7 @@ entities: pos: -30.5,-2.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 9309 components: - type: Transform @@ -48107,7 +49038,7 @@ entities: pos: -30.5,-10.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 9310 components: - type: Transform @@ -48115,7 +49046,7 @@ entities: pos: -31.5,-10.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 9311 components: - type: Transform @@ -48123,7 +49054,7 @@ entities: pos: -32.5,-10.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 9312 components: - type: Transform @@ -48131,77 +49062,77 @@ entities: pos: -45.5,-25.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9318 components: - type: Transform pos: 43.5,-32.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 9320 components: - type: Transform pos: 43.5,-35.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 9321 components: - type: Transform pos: 43.5,-36.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 9322 components: - type: Transform pos: 43.5,-37.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 9323 components: - type: Transform pos: 43.5,-38.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 9324 components: - type: Transform pos: 44.5,-28.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 9325 components: - type: Transform pos: 30.5,-43.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 9326 components: - type: Transform pos: 30.5,-42.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 9327 components: - type: Transform pos: 44.5,-29.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 9328 components: - type: Transform pos: 44.5,-30.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 9356 components: - type: Transform @@ -48209,7 +49140,7 @@ entities: pos: 16.5,8.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 9357 components: - type: Transform @@ -48217,7 +49148,7 @@ entities: pos: 15.5,8.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 9358 components: - type: Transform @@ -48225,7 +49156,7 @@ entities: pos: -37.5,-35.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9359 components: - type: Transform @@ -48233,7 +49164,7 @@ entities: pos: -36.5,-35.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9361 components: - type: Transform @@ -48241,7 +49172,7 @@ entities: pos: -35.5,-34.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9362 components: - type: Transform @@ -48249,7 +49180,7 @@ entities: pos: -35.5,-33.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9363 components: - type: Transform @@ -48257,7 +49188,7 @@ entities: pos: -35.5,-32.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9364 components: - type: Transform @@ -48265,7 +49196,7 @@ entities: pos: -35.5,-31.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9365 components: - type: Transform @@ -48273,7 +49204,7 @@ entities: pos: -35.5,-30.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9367 components: - type: Transform @@ -48281,7 +49212,7 @@ entities: pos: -36.5,-29.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9368 components: - type: Transform @@ -48289,7 +49220,7 @@ entities: pos: -37.5,-29.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9369 components: - type: Transform @@ -48297,7 +49228,7 @@ entities: pos: -38.5,-29.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9370 components: - type: Transform @@ -48305,7 +49236,7 @@ entities: pos: -39.5,-29.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9375 components: - type: Transform @@ -48313,7 +49244,7 @@ entities: pos: -40.5,-30.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9376 components: - type: Transform @@ -48321,7 +49252,7 @@ entities: pos: -41.5,-29.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9377 components: - type: Transform @@ -48329,7 +49260,7 @@ entities: pos: -42.5,-29.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9380 components: - type: Transform @@ -48337,7 +49268,7 @@ entities: pos: -43.5,-32.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9381 components: - type: Transform @@ -48345,7 +49276,7 @@ entities: pos: -43.5,-30.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9385 components: - type: Transform @@ -48353,7 +49284,7 @@ entities: pos: -33.5,-44.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9386 components: - type: Transform @@ -48361,7 +49292,7 @@ entities: pos: -32.5,-45.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9387 components: - type: Transform @@ -48369,21 +49300,21 @@ entities: pos: -31.5,-45.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9389 components: - type: Transform pos: -33.5,-42.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9390 components: - type: Transform pos: -33.5,-41.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9394 components: - type: Transform @@ -48391,7 +49322,7 @@ entities: pos: -34.5,-39.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9395 components: - type: Transform @@ -48399,7 +49330,7 @@ entities: pos: -34.5,-38.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9396 components: - type: Transform @@ -48407,7 +49338,7 @@ entities: pos: -34.5,-37.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9400 components: - type: Transform @@ -48415,7 +49346,7 @@ entities: pos: -31.5,-35.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9401 components: - type: Transform @@ -48423,7 +49354,7 @@ entities: pos: -30.5,-35.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9405 components: - type: Transform @@ -48431,7 +49362,7 @@ entities: pos: -29.5,-34.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 9408 components: - type: Transform @@ -48439,7 +49370,7 @@ entities: pos: -34.5,-29.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9409 components: - type: Transform @@ -48447,7 +49378,7 @@ entities: pos: -33.5,-29.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9410 components: - type: Transform @@ -48455,7 +49386,7 @@ entities: pos: -32.5,-29.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9411 components: - type: Transform @@ -48463,21 +49394,21 @@ entities: pos: -31.5,-29.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9412 components: - type: Transform pos: -30.5,-27.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9413 components: - type: Transform pos: -30.5,-28.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9418 components: - type: Transform @@ -48485,7 +49416,7 @@ entities: pos: -46.5,-13.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9421 components: - type: Transform @@ -48493,7 +49424,7 @@ entities: pos: -51.5,-13.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9422 components: - type: Transform @@ -48501,7 +49432,7 @@ entities: pos: -52.5,-13.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9423 components: - type: Transform @@ -48509,7 +49440,7 @@ entities: pos: -53.5,-12.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9425 components: - type: Transform @@ -48517,7 +49448,7 @@ entities: pos: -46.5,-15.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9426 components: - type: Transform @@ -48533,7 +49464,7 @@ entities: pos: -35.5,-28.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9428 components: - type: Transform @@ -48549,7 +49480,7 @@ entities: pos: -38.5,-26.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 9432 components: - type: Transform @@ -48557,7 +49488,7 @@ entities: pos: -39.5,-26.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 9434 components: - type: Transform @@ -48565,7 +49496,7 @@ entities: pos: -42.5,-26.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 9435 components: - type: Transform @@ -48573,7 +49504,7 @@ entities: pos: -34.5,-21.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9436 components: - type: Transform @@ -48581,15 +49512,7 @@ entities: pos: -33.5,-21.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9437 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -32.5,-21.5 - parent: 34 - - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9438 components: - type: Transform @@ -48597,7 +49520,7 @@ entities: pos: -31.5,-21.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9439 components: - type: Transform @@ -48605,29 +49528,21 @@ entities: pos: -30.5,-21.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9441 components: - type: Transform pos: -27.5,-20.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9442 components: - type: Transform pos: -27.5,-19.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9443 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -28.5,-18.5 - parent: 34 - - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9446 components: - type: Transform @@ -48635,7 +49550,7 @@ entities: pos: -29.5,-21.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9447 components: - type: Transform @@ -48643,7 +49558,7 @@ entities: pos: -28.5,-21.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9448 components: - type: Transform @@ -48651,7 +49566,7 @@ entities: pos: -26.5,-21.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9449 components: - type: Transform @@ -48659,7 +49574,7 @@ entities: pos: -25.5,-21.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9450 components: - type: Transform @@ -48667,7 +49582,7 @@ entities: pos: -24.5,-21.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9452 components: - type: Transform @@ -48675,7 +49590,7 @@ entities: pos: -23.5,-22.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9453 components: - type: Transform @@ -48683,7 +49598,7 @@ entities: pos: -23.5,-23.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9454 components: - type: Transform @@ -48691,7 +49606,7 @@ entities: pos: -23.5,-24.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9455 components: - type: Transform @@ -48699,7 +49614,7 @@ entities: pos: -23.5,-25.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9458 components: - type: Transform @@ -48707,7 +49622,7 @@ entities: pos: -22.5,-20.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9459 components: - type: Transform @@ -48715,14 +49630,14 @@ entities: pos: -22.5,-19.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9465 components: - type: Transform pos: -18.5,-22.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9466 components: - type: Transform @@ -48730,7 +49645,7 @@ entities: pos: 0.5,14.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 9472 components: - type: Transform @@ -48738,7 +49653,7 @@ entities: pos: -20.5,-21.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9473 components: - type: Transform @@ -48746,7 +49661,7 @@ entities: pos: -21.5,-21.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9474 components: - type: Transform @@ -48754,7 +49669,7 @@ entities: pos: -17.5,-21.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9475 components: - type: Transform @@ -48762,7 +49677,7 @@ entities: pos: -16.5,-21.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9476 components: - type: Transform @@ -48770,7 +49685,7 @@ entities: pos: -15.5,-21.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9477 components: - type: Transform @@ -48778,7 +49693,7 @@ entities: pos: -14.5,-21.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9479 components: - type: Transform @@ -48786,7 +49701,7 @@ entities: pos: -12.5,-21.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9480 components: - type: Transform @@ -48794,77 +49709,77 @@ entities: pos: -11.5,-21.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9482 components: - type: Transform pos: -10.5,-22.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9483 components: - type: Transform pos: -10.5,-23.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9484 components: - type: Transform pos: -10.5,-24.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9486 components: - type: Transform pos: -10.5,-26.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9487 components: - type: Transform pos: -10.5,-27.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9488 components: - type: Transform pos: -10.5,-28.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9489 components: - type: Transform pos: -10.5,-29.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9490 components: - type: Transform pos: -10.5,-30.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9491 components: - type: Transform pos: -10.5,-31.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9492 components: - type: Transform pos: -10.5,-32.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9494 components: - type: Transform @@ -48872,7 +49787,7 @@ entities: pos: -9.5,-25.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9498 components: - type: Transform @@ -48880,7 +49795,7 @@ entities: pos: -13.5,-20.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9499 components: - type: Transform @@ -48888,7 +49803,7 @@ entities: pos: -13.5,-19.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9500 components: - type: Transform @@ -48896,7 +49811,7 @@ entities: pos: -13.5,-18.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9501 components: - type: Transform @@ -48904,7 +49819,7 @@ entities: pos: -13.5,-17.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9502 components: - type: Transform @@ -48912,7 +49827,7 @@ entities: pos: -13.5,-16.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9503 components: - type: Transform @@ -48920,7 +49835,7 @@ entities: pos: -13.5,-15.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9504 components: - type: Transform @@ -48928,7 +49843,7 @@ entities: pos: -13.5,-14.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9505 components: - type: Transform @@ -48936,7 +49851,7 @@ entities: pos: -13.5,-13.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9508 components: - type: Transform @@ -48944,7 +49859,7 @@ entities: pos: -15.5,-11.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9511 components: - type: Transform @@ -48952,7 +49867,7 @@ entities: pos: -14.5,-12.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9512 components: - type: Transform @@ -48960,7 +49875,7 @@ entities: pos: -12.5,-12.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9513 components: - type: Transform @@ -48968,7 +49883,7 @@ entities: pos: -11.5,-12.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9514 components: - type: Transform @@ -48976,7 +49891,7 @@ entities: pos: -10.5,-12.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9516 components: - type: Transform @@ -48984,7 +49899,7 @@ entities: pos: -9.5,-11.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9517 components: - type: Transform @@ -48992,7 +49907,7 @@ entities: pos: -9.5,-10.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9518 components: - type: Transform @@ -49000,7 +49915,7 @@ entities: pos: -9.5,-9.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9519 components: - type: Transform @@ -49008,7 +49923,7 @@ entities: pos: -15.5,-9.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9520 components: - type: Transform @@ -49016,7 +49931,7 @@ entities: pos: -15.5,-8.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9525 components: - type: Transform @@ -49024,7 +49939,7 @@ entities: pos: -8.5,-12.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9526 components: - type: Transform @@ -49032,7 +49947,7 @@ entities: pos: -7.5,-12.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9527 components: - type: Transform @@ -49040,7 +49955,7 @@ entities: pos: -6.5,-12.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9528 components: - type: Transform @@ -49048,7 +49963,7 @@ entities: pos: -5.5,-12.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9529 components: - type: Transform @@ -49056,7 +49971,7 @@ entities: pos: -4.5,-11.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9530 components: - type: Transform @@ -49064,7 +49979,7 @@ entities: pos: -4.5,-10.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9531 components: - type: Transform @@ -49072,14 +49987,14 @@ entities: pos: -4.5,-9.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9533 components: - type: Transform pos: -4.5,-7.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9535 components: - type: Transform @@ -49087,7 +50002,7 @@ entities: pos: -3.5,-8.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9536 components: - type: Transform @@ -49095,7 +50010,7 @@ entities: pos: -2.5,-8.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9537 components: - type: Transform @@ -49103,7 +50018,7 @@ entities: pos: -1.5,-8.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9538 components: - type: Transform @@ -49111,7 +50026,7 @@ entities: pos: -0.5,-8.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9540 components: - type: Transform @@ -49119,7 +50034,7 @@ entities: pos: 2.5,-7.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9541 components: - type: Transform @@ -49127,7 +50042,7 @@ entities: pos: 3.5,-7.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9542 components: - type: Transform @@ -49135,7 +50050,7 @@ entities: pos: 4.5,-7.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9549 components: - type: Transform @@ -49143,7 +50058,7 @@ entities: pos: 5.5,-6.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9550 components: - type: Transform @@ -49151,7 +50066,7 @@ entities: pos: 6.5,-7.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9551 components: - type: Transform @@ -49159,42 +50074,42 @@ entities: pos: 7.5,-7.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9552 components: - type: Transform pos: -4.5,-13.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9553 components: - type: Transform pos: -4.5,-14.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9554 components: - type: Transform pos: -4.5,-15.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9555 components: - type: Transform pos: -4.5,-16.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9556 components: - type: Transform pos: -4.5,-17.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9558 components: - type: Transform @@ -49202,7 +50117,7 @@ entities: pos: -3.5,-18.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9559 components: - type: Transform @@ -49210,7 +50125,7 @@ entities: pos: -2.5,-18.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9560 components: - type: Transform @@ -49218,7 +50133,7 @@ entities: pos: -1.5,-18.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9561 components: - type: Transform @@ -49226,7 +50141,7 @@ entities: pos: -0.5,-18.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9564 components: - type: Transform @@ -49234,7 +50149,7 @@ entities: pos: -5.5,-21.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9565 components: - type: Transform @@ -49242,7 +50157,7 @@ entities: pos: -6.5,-21.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9566 components: - type: Transform @@ -49250,7 +50165,7 @@ entities: pos: -7.5,-21.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9567 components: - type: Transform @@ -49258,7 +50173,7 @@ entities: pos: -8.5,-21.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9568 components: - type: Transform @@ -49266,7 +50181,7 @@ entities: pos: -9.5,-21.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9569 components: - type: Transform @@ -49274,7 +50189,7 @@ entities: pos: -4.5,-19.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9572 components: - type: Transform @@ -49282,7 +50197,7 @@ entities: pos: -4.5,-22.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9574 components: - type: Transform @@ -49290,7 +50205,7 @@ entities: pos: -3.5,-23.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9575 components: - type: Transform @@ -49298,7 +50213,7 @@ entities: pos: -2.5,-23.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9576 components: - type: Transform @@ -49306,14 +50221,14 @@ entities: pos: -1.5,-23.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9578 components: - type: Transform pos: 3.5,-37.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9579 components: - type: Transform @@ -49321,7 +50236,7 @@ entities: pos: 2.5,-36.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9580 components: - type: Transform @@ -49329,7 +50244,7 @@ entities: pos: 1.5,-36.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9581 components: - type: Transform @@ -49337,7 +50252,7 @@ entities: pos: 0.5,-23.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9582 components: - type: Transform @@ -49345,7 +50260,7 @@ entities: pos: 1.5,-23.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9583 components: - type: Transform @@ -49353,7 +50268,7 @@ entities: pos: 2.5,-23.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9584 components: - type: Transform @@ -49361,7 +50276,7 @@ entities: pos: 3.5,-23.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9585 components: - type: Transform @@ -49369,7 +50284,7 @@ entities: pos: 0.5,-36.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9587 components: - type: Transform @@ -49377,7 +50292,7 @@ entities: pos: 5.5,-23.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9588 components: - type: Transform @@ -49385,7 +50300,7 @@ entities: pos: 8.5,-23.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9589 components: - type: Transform @@ -49393,21 +50308,21 @@ entities: pos: 9.5,-23.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9591 components: - type: Transform pos: 6.5,-22.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9592 components: - type: Transform pos: 6.5,-21.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9597 components: - type: Transform @@ -49415,7 +50330,7 @@ entities: pos: 1.5,-37.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 9600 components: - type: Transform @@ -49423,7 +50338,7 @@ entities: pos: 3.5,-37.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 9602 components: - type: Transform @@ -49431,7 +50346,7 @@ entities: pos: 5.5,-37.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 9603 components: - type: Transform @@ -49439,7 +50354,7 @@ entities: pos: 6.5,-37.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 9604 components: - type: Transform @@ -49447,21 +50362,21 @@ entities: pos: 8.5,-37.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 9605 components: - type: Transform pos: 7.5,-39.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 9606 components: - type: Transform pos: 7.5,-38.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 9611 components: - type: Transform @@ -49469,7 +50384,7 @@ entities: pos: 4.5,-36.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9625 components: - type: Transform @@ -49477,7 +50392,7 @@ entities: pos: 8.5,-33.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 9639 components: - type: Transform @@ -49485,7 +50400,7 @@ entities: pos: 5.5,-32.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9642 components: - type: Transform @@ -49493,7 +50408,7 @@ entities: pos: 8.5,-32.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9649 components: - type: Transform @@ -49501,7 +50416,7 @@ entities: pos: -4.5,-4.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9650 components: - type: Transform @@ -49509,7 +50424,7 @@ entities: pos: -4.5,-5.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9651 components: - type: Transform @@ -49517,7 +50432,7 @@ entities: pos: -0.5,-45.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9652 components: - type: Transform @@ -49525,7 +50440,7 @@ entities: pos: -1.5,-45.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9653 components: - type: Transform @@ -49533,7 +50448,7 @@ entities: pos: -2.5,-45.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9654 components: - type: Transform @@ -49541,28 +50456,28 @@ entities: pos: -3.5,-44.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9661 components: - type: Transform pos: -7.5,-46.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9662 components: - type: Transform pos: -7.5,-45.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9663 components: - type: Transform pos: -7.5,-44.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9664 components: - type: Transform @@ -49570,7 +50485,7 @@ entities: pos: -6.5,-43.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9665 components: - type: Transform @@ -49578,7 +50493,7 @@ entities: pos: -5.5,-43.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9666 components: - type: Transform @@ -49586,7 +50501,7 @@ entities: pos: -4.5,-42.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9667 components: - type: Transform @@ -49594,7 +50509,7 @@ entities: pos: -4.5,-41.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9668 components: - type: Transform @@ -49602,7 +50517,7 @@ entities: pos: -4.5,-40.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9669 components: - type: Transform @@ -49610,7 +50525,7 @@ entities: pos: -4.5,-39.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9670 components: - type: Transform @@ -49618,7 +50533,7 @@ entities: pos: -4.5,-38.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9671 components: - type: Transform @@ -49626,7 +50541,7 @@ entities: pos: -4.5,-37.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9672 components: - type: Transform @@ -49634,7 +50549,7 @@ entities: pos: -4.5,-36.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9674 components: - type: Transform @@ -49642,7 +50557,7 @@ entities: pos: -4.5,-34.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9675 components: - type: Transform @@ -49650,7 +50565,7 @@ entities: pos: -4.5,-33.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9676 components: - type: Transform @@ -49658,7 +50573,7 @@ entities: pos: -1.5,-24.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 9677 components: - type: Transform @@ -49666,7 +50581,7 @@ entities: pos: -4.5,-31.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9678 components: - type: Transform @@ -49674,7 +50589,7 @@ entities: pos: -4.5,-30.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9679 components: - type: Transform @@ -49682,7 +50597,7 @@ entities: pos: -4.5,-29.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9680 components: - type: Transform @@ -49690,7 +50605,7 @@ entities: pos: -4.5,-28.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9681 components: - type: Transform @@ -49698,7 +50613,7 @@ entities: pos: -4.5,-27.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9682 components: - type: Transform @@ -49706,7 +50621,7 @@ entities: pos: -4.5,-26.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9683 components: - type: Transform @@ -49714,7 +50629,7 @@ entities: pos: -4.5,-25.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9684 components: - type: Transform @@ -49722,7 +50637,7 @@ entities: pos: -4.5,-24.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9688 components: - type: Transform @@ -49730,7 +50645,7 @@ entities: pos: 1.5,-45.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9689 components: - type: Transform @@ -49738,7 +50653,7 @@ entities: pos: 2.5,-45.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9690 components: - type: Transform @@ -49746,7 +50661,7 @@ entities: pos: -4.5,-3.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9691 components: - type: Transform @@ -49762,7 +50677,7 @@ entities: pos: -0.5,-23.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9693 components: - type: Transform @@ -49770,7 +50685,7 @@ entities: pos: -4.5,-2.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9694 components: - type: Transform @@ -49778,7 +50693,7 @@ entities: pos: -4.5,-1.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9697 components: - type: Transform @@ -49786,7 +50701,7 @@ entities: pos: 2.5,-0.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9698 components: - type: Transform @@ -49794,7 +50709,7 @@ entities: pos: 1.5,-0.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9699 components: - type: Transform @@ -49802,7 +50717,7 @@ entities: pos: 0.5,-0.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9700 components: - type: Transform @@ -49810,7 +50725,7 @@ entities: pos: -0.5,-0.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9702 components: - type: Transform @@ -49818,7 +50733,7 @@ entities: pos: -2.5,-0.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9703 components: - type: Transform @@ -49826,28 +50741,28 @@ entities: pos: -3.5,-0.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9712 components: - type: Transform pos: -8.5,2.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9713 components: - type: Transform pos: -8.5,1.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9714 components: - type: Transform pos: -8.5,0.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9741 components: - type: Transform @@ -49855,7 +50770,7 @@ entities: pos: -12.5,-0.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9742 components: - type: Transform @@ -49863,7 +50778,7 @@ entities: pos: -11.5,-0.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9743 components: - type: Transform @@ -49871,7 +50786,7 @@ entities: pos: -10.5,-0.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9744 components: - type: Transform @@ -49879,7 +50794,7 @@ entities: pos: -9.5,-0.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9745 components: - type: Transform @@ -49887,7 +50802,7 @@ entities: pos: -7.5,-0.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9746 components: - type: Transform @@ -49895,7 +50810,7 @@ entities: pos: -6.5,-0.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9747 components: - type: Transform @@ -49903,7 +50818,7 @@ entities: pos: -5.5,-0.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9750 components: - type: Transform @@ -49911,7 +50826,7 @@ entities: pos: -17.5,0.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9751 components: - type: Transform @@ -49919,7 +50834,7 @@ entities: pos: -17.5,1.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9752 components: - type: Transform @@ -49927,7 +50842,7 @@ entities: pos: -17.5,2.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9753 components: - type: Transform @@ -49935,7 +50850,7 @@ entities: pos: -23.5,0.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9754 components: - type: Transform @@ -49943,96 +50858,28 @@ entities: pos: -23.5,1.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9755 - components: - - type: Transform - pos: -28.5,-12.5 - parent: 34 - - type: AtmosPipeColor - color: '#F84000FF' - - uid: 9756 - components: - - type: Transform - pos: -28.5,-13.5 - parent: 34 - - type: AtmosPipeColor - color: '#F84000FF' - - uid: 9757 - components: - - type: Transform - pos: -28.5,-14.5 - parent: 34 - - type: AtmosPipeColor - color: '#F84000FF' + color: '#FF1212FF' - uid: 9758 components: - type: Transform pos: -28.5,-15.5 parent: 34 - type: AtmosPipeColor - color: '#F84000FF' + color: '#FF1212FF' - uid: 9759 components: - type: Transform pos: -28.5,-16.5 parent: 34 - type: AtmosPipeColor - color: '#F84000FF' + color: '#FF1212FF' - uid: 9760 components: - type: Transform pos: -28.5,-17.5 parent: 34 - type: AtmosPipeColor - color: '#F84000FF' - - uid: 9762 - components: - - type: Transform - pos: -28.5,-10.5 - parent: 34 - - type: AtmosPipeColor - color: '#F84000FF' - - uid: 9763 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -30.5,-10.5 - parent: 34 - - type: AtmosPipeColor - color: '#F84000FF' - - uid: 9767 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -32.5,-9.5 - parent: 34 - - type: AtmosPipeColor - color: '#F84000FF' - - uid: 9768 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -31.5,-9.5 - parent: 34 - - type: AtmosPipeColor - color: '#F84000FF' - - uid: 9770 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -36.5,-4.5 - parent: 34 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9771 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -37.5,-4.5 - parent: 34 - - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9772 components: - type: Transform @@ -50040,7 +50887,7 @@ entities: pos: -31.5,-0.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9773 components: - type: Transform @@ -50048,7 +50895,7 @@ entities: pos: -32.5,-0.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9774 components: - type: Transform @@ -50056,7 +50903,7 @@ entities: pos: -33.5,-0.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9775 components: - type: Transform @@ -50064,7 +50911,7 @@ entities: pos: -35.5,-0.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9776 components: - type: Transform @@ -50072,7 +50919,7 @@ entities: pos: -34.5,-0.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9779 components: - type: Transform @@ -50080,7 +50927,7 @@ entities: pos: -36.5,1.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9780 components: - type: Transform @@ -50088,35 +50935,35 @@ entities: pos: -36.5,0.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9784 components: - type: Transform pos: -41.5,-1.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9785 components: - type: Transform pos: -41.5,-2.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9787 components: - type: Transform pos: -40.5,5.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 9788 components: - type: Transform pos: -40.5,6.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 9789 components: - type: Transform @@ -50124,7 +50971,7 @@ entities: pos: -39.5,-0.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9790 components: - type: Transform @@ -50132,49 +50979,49 @@ entities: pos: -37.5,-0.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9791 components: - type: Transform pos: -38.5,-1.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9792 components: - type: Transform pos: -38.5,-2.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9793 components: - type: Transform pos: -38.5,-5.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9794 components: - type: Transform pos: -38.5,-6.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9795 components: - type: Transform pos: -38.5,-7.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9796 components: - type: Transform pos: -38.5,-8.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9806 components: - type: Transform @@ -50182,7 +51029,7 @@ entities: pos: -53.5,-0.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9807 components: - type: Transform @@ -50190,7 +51037,7 @@ entities: pos: -52.5,-0.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9808 components: - type: Transform @@ -50198,7 +51045,7 @@ entities: pos: -51.5,-0.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9809 components: - type: Transform @@ -50206,71 +51053,42 @@ entities: pos: -50.5,-0.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9810 - components: - - type: Transform - pos: -48.5,0.5 - parent: 34 - - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9811 components: - type: Transform pos: -44.5,0.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9812 components: - type: Transform pos: -44.5,1.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9813 components: - type: Transform pos: -46.5,-1.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9814 components: - type: Transform pos: -46.5,-2.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9815 components: - type: Transform pos: -46.5,-3.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9816 - components: - - type: Transform - pos: -49.5,-1.5 - parent: 34 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9817 - components: - - type: Transform - pos: -49.5,-2.5 - parent: 34 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9818 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -47.5,-0.5 - parent: 34 - - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9819 components: - type: Transform @@ -50278,7 +51096,7 @@ entities: pos: -45.5,-0.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9820 components: - type: Transform @@ -50286,7 +51104,7 @@ entities: pos: -43.5,-0.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9821 components: - type: Transform @@ -50294,7 +51112,7 @@ entities: pos: -42.5,-0.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9828 components: - type: Transform @@ -50302,7 +51120,7 @@ entities: pos: -43.5,-26.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 9829 components: - type: Transform @@ -50310,7 +51128,7 @@ entities: pos: -50.5,-9.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9830 components: - type: Transform @@ -50318,7 +51136,7 @@ entities: pos: -49.5,-9.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9831 components: - type: Transform @@ -50326,7 +51144,7 @@ entities: pos: -48.5,-9.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9832 components: - type: Transform @@ -50334,7 +51152,7 @@ entities: pos: -47.5,-9.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9833 components: - type: Transform @@ -50342,7 +51160,7 @@ entities: pos: -45.5,-9.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9834 components: - type: Transform @@ -50350,7 +51168,7 @@ entities: pos: -44.5,-9.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9835 components: - type: Transform @@ -50358,7 +51176,7 @@ entities: pos: -43.5,-9.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9836 components: - type: Transform @@ -50366,7 +51184,7 @@ entities: pos: -42.5,-9.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9837 components: - type: Transform @@ -50374,7 +51192,7 @@ entities: pos: -41.5,-9.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9838 components: - type: Transform @@ -50382,7 +51200,7 @@ entities: pos: -40.5,-9.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9839 components: - type: Transform @@ -50390,123 +51208,98 @@ entities: pos: -39.5,-9.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9840 components: - type: Transform pos: -46.5,-8.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9841 components: - type: Transform pos: -46.5,-7.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9842 components: - type: Transform pos: -51.5,-8.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9843 components: - type: Transform pos: -51.5,-7.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9847 + color: '#FF1212FF' + - uid: 9851 components: - type: Transform rot: -1.5707963267948966 rad - pos: -36.5,-17.5 + pos: -0.5,14.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9848 + color: '#0335FCFF' + - uid: 9852 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -37.5,-17.5 + rot: 3.141592653589793 rad + pos: -38.5,-16.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9849 + color: '#FF1212FF' + - uid: 9853 components: - type: Transform rot: 3.141592653589793 rad - pos: -38.5,-18.5 + pos: -38.5,-15.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9850 + color: '#FF1212FF' + - uid: 9854 components: - type: Transform rot: 3.141592653589793 rad - pos: -38.5,-19.5 + pos: -38.5,-14.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9851 + color: '#FF1212FF' + - uid: 9855 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,14.5 + rot: 3.141592653589793 rad + pos: -38.5,-13.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 9852 + color: '#FF1212FF' + - uid: 9857 components: - type: Transform rot: 3.141592653589793 rad - pos: -38.5,-16.5 - parent: 34 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9853 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -38.5,-15.5 - parent: 34 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9854 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -38.5,-14.5 - parent: 34 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9855 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -38.5,-13.5 + pos: -38.5,-11.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9857 + color: '#FF1212FF' + - uid: 9858 components: - type: Transform rot: 3.141592653589793 rad - pos: -38.5,-11.5 + pos: -38.5,-10.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9858 + color: '#FF1212FF' + - uid: 9859 components: - type: Transform - rot: 3.141592653589793 rad - pos: -38.5,-10.5 + pos: -28.5,-3.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9860 components: - type: Transform @@ -50514,7 +51307,7 @@ entities: pos: -36.5,-21.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9861 components: - type: Transform @@ -50522,7 +51315,7 @@ entities: pos: -37.5,-21.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9862 components: - type: Transform @@ -50530,7 +51323,7 @@ entities: pos: -44.5,-26.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 9863 components: - type: Transform @@ -50538,7 +51331,7 @@ entities: pos: 4.5,-0.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9864 components: - type: Transform @@ -50546,7 +51339,7 @@ entities: pos: 5.5,-0.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9865 components: - type: Transform @@ -50554,7 +51347,7 @@ entities: pos: 6.5,-0.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9866 components: - type: Transform @@ -50562,7 +51355,7 @@ entities: pos: 7.5,-0.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9867 components: - type: Transform @@ -50570,7 +51363,7 @@ entities: pos: 8.5,-0.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9868 components: - type: Transform @@ -50578,7 +51371,7 @@ entities: pos: 9.5,-0.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9869 components: - type: Transform @@ -50586,7 +51379,7 @@ entities: pos: 10.5,-0.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9870 components: - type: Transform @@ -50594,7 +51387,7 @@ entities: pos: 11.5,-0.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9871 components: - type: Transform @@ -50602,14 +51395,14 @@ entities: pos: 12.5,-0.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9872 components: - type: Transform pos: 13.5,0.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9874 components: - type: Transform @@ -50617,7 +51410,7 @@ entities: pos: 12.5,1.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9877 components: - type: Transform @@ -50625,7 +51418,7 @@ entities: pos: 13.5,2.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9878 components: - type: Transform @@ -50633,7 +51426,7 @@ entities: pos: 13.5,3.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9879 components: - type: Transform @@ -50641,7 +51434,7 @@ entities: pos: 13.5,4.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9881 components: - type: Transform @@ -50649,7 +51442,7 @@ entities: pos: 13.5,6.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9882 components: - type: Transform @@ -50657,7 +51450,7 @@ entities: pos: 13.5,7.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9884 components: - type: Transform @@ -50665,7 +51458,7 @@ entities: pos: 12.5,8.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9885 components: - type: Transform @@ -50673,7 +51466,7 @@ entities: pos: 11.5,8.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9888 components: - type: Transform @@ -50681,7 +51474,7 @@ entities: pos: 14.5,5.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9889 components: - type: Transform @@ -50689,7 +51482,7 @@ entities: pos: 15.5,5.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9890 components: - type: Transform @@ -50697,7 +51490,7 @@ entities: pos: 16.5,5.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9895 components: - type: Transform @@ -50705,7 +51498,7 @@ entities: pos: 15.5,9.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9896 components: - type: Transform @@ -50713,7 +51506,7 @@ entities: pos: 14.5,9.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9898 components: - type: Transform @@ -50721,7 +51514,7 @@ entities: pos: 13.5,11.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9899 components: - type: Transform @@ -50729,7 +51522,7 @@ entities: pos: 13.5,12.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9900 components: - type: Transform @@ -50737,14 +51530,14 @@ entities: pos: 12.5,13.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9903 components: - type: Transform pos: 13.5,-1.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9905 components: - type: Transform @@ -50752,7 +51545,7 @@ entities: pos: 15.5,1.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9906 components: - type: Transform @@ -50760,28 +51553,28 @@ entities: pos: 14.5,1.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9907 components: - type: Transform pos: 13.5,-2.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9908 components: - type: Transform pos: 13.5,-3.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9909 components: - type: Transform pos: 13.5,-4.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9911 components: - type: Transform @@ -50789,56 +51582,56 @@ entities: pos: 14.5,-5.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9916 components: - type: Transform pos: 44.5,-13.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 9917 components: - type: Transform pos: 13.5,-6.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9918 components: - type: Transform pos: 13.5,-7.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9919 components: - type: Transform pos: 13.5,-8.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9920 components: - type: Transform pos: 13.5,-9.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9921 components: - type: Transform pos: 13.5,-10.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9922 components: - type: Transform pos: 13.5,-11.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9924 components: - type: Transform @@ -50846,7 +51639,7 @@ entities: pos: 12.5,-12.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9927 components: - type: Transform @@ -50854,7 +51647,7 @@ entities: pos: 14.5,-13.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9928 components: - type: Transform @@ -50862,7 +51655,7 @@ entities: pos: 12.5,-33.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 9929 components: - type: Transform @@ -50870,70 +51663,70 @@ entities: pos: 11.5,-33.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 9935 components: - type: Transform pos: 25.5,-12.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9937 components: - type: Transform pos: 25.5,-10.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9939 components: - type: Transform pos: 25.5,-9.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9941 components: - type: Transform pos: 25.5,-7.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9942 components: - type: Transform pos: 25.5,-6.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9943 components: - type: Transform pos: 25.5,-5.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9945 components: - type: Transform pos: 25.5,-4.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9946 components: - type: Transform pos: 25.5,-3.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9947 components: - type: Transform pos: 25.5,-2.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9952 components: - type: Transform @@ -50941,7 +51734,7 @@ entities: pos: 26.5,-1.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9953 components: - type: Transform @@ -50949,7 +51742,7 @@ entities: pos: 27.5,-1.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9954 components: - type: Transform @@ -50957,7 +51750,7 @@ entities: pos: 28.5,-1.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9959 components: - type: Transform @@ -50965,7 +51758,7 @@ entities: pos: 29.5,-0.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9961 components: - type: Transform @@ -50973,7 +51766,7 @@ entities: pos: 29.5,0.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9968 components: - type: Transform @@ -50981,7 +51774,7 @@ entities: pos: 26.5,-11.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 9970 components: - type: Transform @@ -50989,7 +51782,7 @@ entities: pos: 26.5,-9.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 9971 components: - type: Transform @@ -50997,7 +51790,7 @@ entities: pos: 26.5,-8.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 9972 components: - type: Transform @@ -51005,7 +51798,7 @@ entities: pos: 26.5,-7.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 9973 components: - type: Transform @@ -51013,7 +51806,7 @@ entities: pos: 26.5,-6.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 9975 components: - type: Transform @@ -51021,7 +51814,7 @@ entities: pos: 26.5,-4.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 9976 components: - type: Transform @@ -51029,7 +51822,7 @@ entities: pos: 26.5,-3.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 9977 components: - type: Transform @@ -51037,7 +51830,7 @@ entities: pos: 26.5,-2.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 9978 components: - type: Transform @@ -51045,7 +51838,14 @@ entities: pos: 26.5,-1.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' + - uid: 9981 + components: + - type: Transform + pos: -28.5,-2.5 + parent: 34 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 9982 components: - type: Transform @@ -51053,7 +51853,7 @@ entities: pos: 37.5,-2.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9985 components: - type: Transform @@ -51061,7 +51861,7 @@ entities: pos: 36.5,-2.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9986 components: - type: Transform @@ -51069,7 +51869,7 @@ entities: pos: 35.5,-2.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9992 components: - type: Transform @@ -51077,7 +51877,7 @@ entities: pos: 27.5,-0.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 9993 components: - type: Transform @@ -51085,7 +51885,7 @@ entities: pos: 25.5,-0.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 9994 components: - type: Transform @@ -51093,7 +51893,7 @@ entities: pos: 24.5,-0.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 9995 components: - type: Transform @@ -51101,7 +51901,7 @@ entities: pos: 23.5,-0.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 9996 components: - type: Transform @@ -51109,7 +51909,7 @@ entities: pos: 22.5,-0.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 9997 components: - type: Transform @@ -51117,7 +51917,7 @@ entities: pos: 23.5,-1.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9999 components: - type: Transform @@ -51125,7 +51925,7 @@ entities: pos: 39.5,-3.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 10001 components: - type: Transform @@ -51133,7 +51933,7 @@ entities: pos: 37.5,-3.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 10002 components: - type: Transform @@ -51141,35 +51941,35 @@ entities: pos: 36.5,-3.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 10007 components: - type: Transform pos: 38.5,3.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 10008 components: - type: Transform pos: 38.5,2.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 10012 components: - type: Transform pos: 44.5,-5.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 10014 components: - type: Transform pos: 43.5,-3.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 10018 components: - type: Transform @@ -51177,7 +51977,7 @@ entities: pos: 42.5,-2.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 10020 components: - type: Transform @@ -51185,7 +51985,7 @@ entities: pos: 44.5,-2.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 10022 components: - type: Transform @@ -51193,7 +51993,7 @@ entities: pos: 34.5,-2.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 10026 components: - type: Transform @@ -51201,63 +52001,63 @@ entities: pos: 22.5,-23.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 10028 components: - type: Transform pos: 13.5,-14.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 10029 components: - type: Transform pos: 13.5,-15.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 10030 components: - type: Transform pos: 13.5,-16.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 10031 components: - type: Transform pos: 13.5,-17.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 10033 components: - type: Transform pos: 13.5,-19.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 10034 components: - type: Transform pos: 13.5,-20.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 10035 components: - type: Transform pos: 13.5,-21.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 10036 components: - type: Transform pos: 13.5,-22.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 10037 components: - type: Transform @@ -51265,7 +52065,7 @@ entities: pos: 12.5,-23.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 10038 components: - type: Transform @@ -51273,7 +52073,7 @@ entities: pos: 14.5,-23.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 10040 components: - type: Transform @@ -51281,7 +52081,7 @@ entities: pos: 16.5,-23.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 10041 components: - type: Transform @@ -51289,7 +52089,7 @@ entities: pos: 18.5,-23.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 10042 components: - type: Transform @@ -51297,7 +52097,7 @@ entities: pos: 19.5,-23.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 10043 components: - type: Transform @@ -51305,7 +52105,7 @@ entities: pos: 20.5,-23.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 10049 components: - type: Transform @@ -51313,91 +52113,91 @@ entities: pos: 21.5,-36.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 10056 components: - type: Transform pos: 11.5,-22.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 10058 components: - type: Transform pos: 21.5,-24.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 10059 components: - type: Transform pos: 21.5,-25.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 10060 components: - type: Transform pos: 21.5,-26.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 10061 components: - type: Transform pos: 21.5,-27.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 10062 components: - type: Transform pos: 21.5,-28.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 10063 components: - type: Transform pos: 21.5,-29.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 10064 components: - type: Transform pos: 21.5,-30.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 10066 components: - type: Transform pos: 21.5,-32.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 10067 components: - type: Transform pos: 21.5,-33.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 10068 components: - type: Transform pos: 21.5,-34.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 10070 components: - type: Transform pos: 21.5,-36.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 10077 components: - type: Transform @@ -51405,7 +52205,7 @@ entities: pos: 43.5,-36.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 10078 components: - type: Transform @@ -51413,7 +52213,7 @@ entities: pos: 21.5,-39.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 10079 components: - type: Transform @@ -51421,7 +52221,7 @@ entities: pos: 21.5,-40.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 10080 components: - type: Transform @@ -51429,7 +52229,7 @@ entities: pos: 21.5,-41.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 10082 components: - type: Transform @@ -51437,7 +52237,7 @@ entities: pos: 22.5,-42.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 10083 components: - type: Transform @@ -51445,7 +52245,7 @@ entities: pos: 23.5,-42.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 10084 components: - type: Transform @@ -51453,7 +52253,7 @@ entities: pos: 24.5,-42.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 10085 components: - type: Transform @@ -51461,14 +52261,14 @@ entities: pos: 25.5,-42.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 10088 components: - type: Transform pos: 26.5,-41.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 10089 components: - type: Transform @@ -51476,7 +52276,7 @@ entities: pos: 27.5,-40.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 10090 components: - type: Transform @@ -51484,7 +52284,7 @@ entities: pos: 28.5,-40.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 10092 components: - type: Transform @@ -51492,7 +52292,7 @@ entities: pos: 30.5,-40.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 10093 components: - type: Transform @@ -51500,35 +52300,35 @@ entities: pos: 31.5,-40.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 10095 components: - type: Transform pos: 29.5,-41.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 10096 components: - type: Transform pos: 29.5,-42.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 10097 components: - type: Transform pos: 29.5,-43.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 10153 components: - type: Transform pos: 14.5,-33.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 10154 components: - type: Transform @@ -51536,14 +52336,14 @@ entities: pos: 33.5,-40.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 10178 components: - type: Transform pos: 31.5,-24.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 10190 components: - type: Transform @@ -51551,21 +52351,21 @@ entities: pos: 32.5,-18.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 10191 components: - type: Transform pos: 31.5,-17.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 10192 components: - type: Transform pos: 44.5,-7.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 10194 components: - type: Transform @@ -51573,7 +52373,7 @@ entities: pos: 33.5,-18.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 10195 components: - type: Transform @@ -51581,28 +52381,28 @@ entities: pos: 28.5,0.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 10203 components: - type: Transform pos: 33.5,-20.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 10204 components: - type: Transform pos: 33.5,-21.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 10205 components: - type: Transform pos: 33.5,-22.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 10208 components: - type: Transform @@ -51610,7 +52410,7 @@ entities: pos: 32.5,-23.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 10209 components: - type: Transform @@ -51618,7 +52418,7 @@ entities: pos: 30.5,-23.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 10210 components: - type: Transform @@ -51626,7 +52426,7 @@ entities: pos: 29.5,-23.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 10211 components: - type: Transform @@ -51634,7 +52434,7 @@ entities: pos: 27.5,-23.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 10212 components: - type: Transform @@ -51642,7 +52442,7 @@ entities: pos: 26.5,-23.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 10213 components: - type: Transform @@ -51650,7 +52450,7 @@ entities: pos: 25.5,-23.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 10214 components: - type: Transform @@ -51658,7 +52458,7 @@ entities: pos: 24.5,-23.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 10215 components: - type: Transform @@ -51666,7 +52466,7 @@ entities: pos: 23.5,-23.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 10216 components: - type: Transform @@ -51674,7 +52474,7 @@ entities: pos: 22.5,-23.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 10258 components: - type: Transform @@ -51682,7 +52482,7 @@ entities: pos: -46.5,-26.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 10260 components: - type: Transform @@ -51690,7 +52490,7 @@ entities: pos: 5.5,-40.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 10263 components: - type: Transform @@ -51698,7 +52498,7 @@ entities: pos: 7.5,-23.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 10313 components: - type: Transform @@ -51706,7 +52506,7 @@ entities: pos: -47.5,-26.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 10314 components: - type: Transform @@ -51714,7 +52514,7 @@ entities: pos: -49.5,-26.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 10327 components: - type: Transform @@ -51722,7 +52522,7 @@ entities: pos: 9.5,-24.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 10328 components: - type: Transform @@ -51730,7 +52530,7 @@ entities: pos: 6.5,-36.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 10329 components: - type: Transform @@ -51738,7 +52538,7 @@ entities: pos: 7.5,-36.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 10330 components: - type: Transform @@ -51746,7 +52546,7 @@ entities: pos: 8.5,-36.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 10331 components: - type: Transform @@ -51754,7 +52554,7 @@ entities: pos: 9.5,-36.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 10332 components: - type: Transform @@ -51762,7 +52562,7 @@ entities: pos: 10.5,-36.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 10389 components: - type: Transform @@ -51770,7 +52570,7 @@ entities: pos: -50.5,-26.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 10465 components: - type: Transform @@ -51778,35 +52578,35 @@ entities: pos: -4.5,-36.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 10491 components: - type: Transform pos: 38.5,-5.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 10494 components: - type: Transform pos: 39.5,-3.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 10504 components: - type: Transform pos: 39.5,-4.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 10505 components: - type: Transform pos: 39.5,-5.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 10521 components: - type: Transform @@ -51819,7 +52619,7 @@ entities: pos: 20.5,-38.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 10575 components: - type: Transform @@ -51827,7 +52627,7 @@ entities: pos: 3.5,-47.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 10586 components: - type: Transform @@ -51835,7 +52635,7 @@ entities: pos: 34.5,-11.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 10588 components: - type: Transform @@ -51843,7 +52643,7 @@ entities: pos: 34.5,-10.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 10589 components: - type: Transform @@ -51851,7 +52651,7 @@ entities: pos: 34.5,-9.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 10590 components: - type: Transform @@ -51859,7 +52659,7 @@ entities: pos: 34.5,-8.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 10592 components: - type: Transform @@ -51867,14 +52667,14 @@ entities: pos: 32.5,-7.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 10593 components: - type: Transform pos: 30.5,-6.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 10594 components: - type: Transform @@ -51882,14 +52682,14 @@ entities: pos: 33.5,-6.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 10596 components: - type: Transform pos: -38.5,-22.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 10599 components: - type: Transform @@ -51897,7 +52697,15 @@ entities: pos: 31.5,-7.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' + - uid: 10624 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,-4.5 + parent: 34 + - type: AtmosPipeColor + color: '#0335FCFF' - uid: 10626 components: - type: Transform @@ -51905,7 +52713,39 @@ entities: pos: 32.5,-6.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' + - uid: 10628 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,-9.5 + parent: 34 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 10629 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,-8.5 + parent: 34 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 10674 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,-5.5 + parent: 34 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 10675 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,-4.5 + parent: 34 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 10681 components: - type: Transform @@ -51913,7 +52753,7 @@ entities: pos: 30.5,-5.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 10682 components: - type: Transform @@ -51921,7 +52761,47 @@ entities: pos: 30.5,-4.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' + - uid: 10696 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,-5.5 + parent: 34 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 10735 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,-7.5 + parent: 34 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 10737 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,-8.5 + parent: 34 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 10738 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,-8.5 + parent: 34 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 10739 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,-8.5 + parent: 34 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 10831 components: - type: Transform @@ -51929,7 +52809,23 @@ entities: pos: 34.5,-13.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' + - uid: 10834 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,-8.5 + parent: 34 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 10835 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -33.5,-8.5 + parent: 34 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 10841 components: - type: Transform @@ -51937,7 +52833,7 @@ entities: pos: -47.5,-25.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 10842 components: - type: Transform @@ -51945,7 +52841,7 @@ entities: pos: -48.5,-26.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 10846 components: - type: Transform @@ -51953,7 +52849,7 @@ entities: pos: -41.5,-26.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 10848 components: - type: Transform @@ -51961,7 +52857,7 @@ entities: pos: -42.5,-22.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 10854 components: - type: Transform @@ -51969,7 +52865,7 @@ entities: pos: -39.5,-26.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 10861 components: - type: Transform @@ -51977,7 +52873,7 @@ entities: pos: 37.5,-13.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 10893 components: - type: Transform @@ -51985,7 +52881,15 @@ entities: pos: 35.5,-12.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' + - uid: 10897 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -51.5,0.5 + parent: 34 + - type: AtmosPipeColor + color: '#0335FCFF' - uid: 10901 components: - type: Transform @@ -51993,7 +52897,7 @@ entities: pos: 12.5,-18.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 10902 components: - type: Transform @@ -52001,14 +52905,14 @@ entities: pos: 11.5,-18.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 10904 components: - type: Transform pos: 22.5,2.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 10905 components: - type: Transform @@ -52016,7 +52920,7 @@ entities: pos: 36.5,-12.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 10917 components: - type: Transform @@ -52024,7 +52928,7 @@ entities: pos: 37.5,-12.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 10918 components: - type: Transform @@ -52032,7 +52936,7 @@ entities: pos: 38.5,-12.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 10919 components: - type: Transform @@ -52040,7 +52944,7 @@ entities: pos: 39.5,-12.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 10920 components: - type: Transform @@ -52048,7 +52952,7 @@ entities: pos: 25.5,-5.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 10921 components: - type: Transform @@ -52056,7 +52960,7 @@ entities: pos: 24.5,-5.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 10922 components: - type: Transform @@ -52064,7 +52968,7 @@ entities: pos: 23.5,-5.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 10923 components: - type: Transform @@ -52072,7 +52976,15 @@ entities: pos: 22.5,-5.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' + - uid: 10947 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -34.5,-8.5 + parent: 34 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 10973 components: - type: Transform @@ -52080,7 +52992,7 @@ entities: pos: 21.5,-5.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 10983 components: - type: Transform @@ -52088,7 +53000,7 @@ entities: pos: 24.5,-8.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 10985 components: - type: Transform @@ -52096,7 +53008,7 @@ entities: pos: 23.5,-8.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 10987 components: - type: Transform @@ -52104,21 +53016,21 @@ entities: pos: 22.5,-8.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 11078 components: - type: Transform pos: 21.5,-6.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 11079 components: - type: Transform pos: 21.5,-5.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 11100 components: - type: Transform @@ -52126,14 +53038,14 @@ entities: pos: 4.5,-41.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 11105 components: - type: Transform pos: 20.5,-7.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 11193 components: - type: Transform @@ -52141,7 +53053,7 @@ entities: pos: 44.5,-33.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 11196 components: - type: Transform @@ -52149,7 +53061,7 @@ entities: pos: 45.5,-33.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 11200 components: - type: Transform @@ -52157,7 +53069,7 @@ entities: pos: 46.5,-33.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 11219 components: - type: Transform @@ -52165,14 +53077,14 @@ entities: pos: 47.5,-33.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 11224 components: - type: Transform pos: 3.5,-42.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 11225 components: - type: Transform @@ -52180,7 +53092,7 @@ entities: pos: 48.5,-33.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 11240 components: - type: Transform @@ -52188,7 +53100,7 @@ entities: pos: 49.5,-33.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 11249 components: - type: Transform @@ -52196,7 +53108,7 @@ entities: pos: 20.5,-36.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 11259 components: - type: Transform @@ -52204,7 +53116,7 @@ entities: pos: 51.5,-33.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 11290 components: - type: Transform @@ -52212,7 +53124,7 @@ entities: pos: 20.5,-10.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 11292 components: - type: Transform @@ -52220,7 +53132,7 @@ entities: pos: 19.5,-10.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 11310 components: - type: Transform @@ -52228,7 +53140,7 @@ entities: pos: -1.5,13.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 11319 components: - type: Transform @@ -52236,7 +53148,7 @@ entities: pos: 18.5,-10.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 11320 components: - type: Transform @@ -52244,7 +53156,7 @@ entities: pos: 17.5,-10.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 11327 components: - type: Transform @@ -52252,7 +53164,7 @@ entities: pos: 50.5,-35.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 11329 components: - type: Transform @@ -52260,7 +53172,7 @@ entities: pos: 19.5,-9.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 11330 components: - type: Transform @@ -52268,7 +53180,7 @@ entities: pos: 18.5,-9.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 11331 components: - type: Transform @@ -52276,7 +53188,7 @@ entities: pos: 17.5,-9.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 11332 components: - type: Transform @@ -52284,7 +53196,7 @@ entities: pos: 20.5,-7.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 11340 components: - type: Transform @@ -52292,7 +53204,7 @@ entities: pos: 19.5,-7.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 11341 components: - type: Transform @@ -52300,7 +53212,7 @@ entities: pos: 20.5,-4.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 11342 components: - type: Transform @@ -52308,7 +53220,7 @@ entities: pos: 18.5,-7.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 11343 components: - type: Transform @@ -52316,7 +53228,7 @@ entities: pos: 17.5,-7.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 11344 components: - type: Transform @@ -52324,7 +53236,7 @@ entities: pos: 19.5,-6.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 11348 components: - type: Transform @@ -52332,7 +53244,7 @@ entities: pos: 18.5,-6.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 11353 components: - type: Transform @@ -52340,7 +53252,7 @@ entities: pos: 17.5,-6.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 11354 components: - type: Transform @@ -52348,7 +53260,7 @@ entities: pos: 51.5,-35.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 11374 components: - type: Transform @@ -52356,7 +53268,7 @@ entities: pos: 49.5,-39.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 11393 components: - type: Transform @@ -52364,7 +53276,7 @@ entities: pos: -45.5,-20.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 11394 components: - type: Transform @@ -52372,7 +53284,7 @@ entities: pos: -47.5,-22.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 11405 components: - type: Transform @@ -52380,7 +53292,7 @@ entities: pos: -49.5,-22.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 11439 components: - type: Transform @@ -52388,7 +53300,7 @@ entities: pos: -16.5,-33.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 11464 components: - type: Transform @@ -52396,7 +53308,7 @@ entities: pos: -15.5,-33.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 11470 components: - type: Transform @@ -52416,7 +53328,7 @@ entities: pos: 49.5,-38.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 11501 components: - type: Transform @@ -52424,7 +53336,7 @@ entities: pos: 49.5,-37.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 11503 components: - type: Transform @@ -52432,7 +53344,7 @@ entities: pos: 49.5,-36.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 11504 components: - type: Transform @@ -52440,7 +53352,7 @@ entities: pos: 50.5,-34.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 11505 components: - type: Transform @@ -52448,7 +53360,7 @@ entities: pos: 50.5,-35.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 11506 components: - type: Transform @@ -52456,7 +53368,7 @@ entities: pos: 19.5,-4.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 11507 components: - type: Transform @@ -52464,7 +53376,7 @@ entities: pos: 50.5,-36.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 11509 components: - type: Transform @@ -52472,7 +53384,7 @@ entities: pos: 50.5,-37.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 11510 components: - type: Transform @@ -52480,7 +53392,7 @@ entities: pos: 50.5,-38.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 11520 components: - type: Transform @@ -52488,7 +53400,7 @@ entities: pos: -38.5,-23.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 11532 components: - type: Transform @@ -52496,7 +53408,7 @@ entities: pos: 51.5,-39.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 11536 components: - type: Transform @@ -52504,7 +53416,7 @@ entities: pos: 50.5,-40.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 11538 components: - type: Transform @@ -52512,7 +53424,7 @@ entities: pos: 51.5,-40.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 11544 components: - type: Transform @@ -52520,7 +53432,7 @@ entities: pos: 52.5,-40.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 11547 components: - type: Transform @@ -52528,7 +53440,7 @@ entities: pos: -38.5,-22.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 11549 components: - type: Transform @@ -52536,7 +53448,7 @@ entities: pos: 18.5,-4.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 11582 components: - type: Transform @@ -52544,7 +53456,7 @@ entities: pos: 53.5,-40.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 11592 components: - type: Transform @@ -52552,7 +53464,7 @@ entities: pos: 17.5,-4.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 11603 components: - type: Transform @@ -52574,7 +53486,7 @@ entities: pos: -13.5,-33.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 11622 components: - type: Transform @@ -52582,7 +53494,7 @@ entities: pos: 19.5,-3.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 11632 components: - type: Transform @@ -52590,7 +53502,7 @@ entities: pos: 18.5,-3.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 11686 components: - type: Transform @@ -52598,7 +53510,7 @@ entities: pos: 17.5,-3.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 11708 components: - type: Transform @@ -52606,7 +53518,7 @@ entities: pos: -45.5,-12.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 11716 components: - type: Transform @@ -52614,7 +53526,7 @@ entities: pos: 12.5,14.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 11766 components: - type: Transform @@ -52622,7 +53534,7 @@ entities: pos: 14.5,15.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 11767 components: - type: Transform @@ -52630,7 +53542,7 @@ entities: pos: 13.5,14.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 11783 components: - type: Transform @@ -52638,7 +53550,7 @@ entities: pos: 9.5,14.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 11784 components: - type: Transform @@ -52646,7 +53558,7 @@ entities: pos: 11.5,14.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 11819 components: - type: Transform @@ -52654,7 +53566,7 @@ entities: pos: -1.5,14.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 11828 components: - type: Transform @@ -52662,7 +53574,7 @@ entities: pos: 4.5,14.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 11841 components: - type: Transform @@ -52670,7 +53582,7 @@ entities: pos: 46.5,-9.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 11843 components: - type: Transform @@ -52678,7 +53590,7 @@ entities: pos: 20.5,-4.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 11858 components: - type: Transform @@ -52686,7 +53598,7 @@ entities: pos: 2.5,14.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 11859 components: - type: Transform @@ -52694,14 +53606,14 @@ entities: pos: 3.5,14.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 11860 components: - type: Transform pos: -2.5,12.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 11861 components: - type: Transform @@ -52709,7 +53621,7 @@ entities: pos: -39.5,-21.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 11862 components: - type: Transform @@ -52717,7 +53629,7 @@ entities: pos: 7.5,13.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 11863 components: - type: Transform @@ -52725,7 +53637,7 @@ entities: pos: 6.5,13.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 11864 components: - type: Transform @@ -52733,7 +53645,7 @@ entities: pos: 5.5,13.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 11865 components: - type: Transform @@ -52741,7 +53653,7 @@ entities: pos: 4.5,13.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 11866 components: - type: Transform @@ -52749,7 +53661,7 @@ entities: pos: 1.5,13.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 11867 components: - type: Transform @@ -52757,7 +53669,7 @@ entities: pos: -0.5,13.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 11868 components: - type: Transform @@ -52765,7 +53677,7 @@ entities: pos: 0.5,13.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 11870 components: - type: Transform @@ -52773,7 +53685,7 @@ entities: pos: 3.5,13.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 11871 components: - type: Transform @@ -52781,7 +53693,7 @@ entities: pos: 2.5,13.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 11872 components: - type: Transform @@ -52789,7 +53701,7 @@ entities: pos: -14.5,-33.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 11873 components: - type: Transform @@ -52797,7 +53709,7 @@ entities: pos: 11.5,13.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 11874 components: - type: Transform @@ -52805,7 +53717,7 @@ entities: pos: 10.5,13.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 11875 components: - type: Transform @@ -52813,7 +53725,7 @@ entities: pos: 7.5,14.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 11881 components: - type: Transform @@ -52821,7 +53733,7 @@ entities: pos: 6.5,14.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 11884 components: - type: Transform @@ -52837,7 +53749,7 @@ entities: pos: 5.5,14.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 11897 components: - type: Transform @@ -52852,7 +53764,7 @@ entities: pos: 38.5,-6.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 11913 components: - type: Transform @@ -52860,7 +53772,7 @@ entities: pos: 10.5,14.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 11916 components: - type: Transform @@ -52883,49 +53795,57 @@ entities: pos: -2.5,2.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 11988 components: - type: Transform pos: -2.5,1.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 11989 components: - type: Transform pos: -2.5,0.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 11990 components: - type: Transform pos: -2.5,-0.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 11991 components: - type: Transform pos: -1.5,0.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 11992 components: - type: Transform pos: -1.5,1.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 11993 components: - type: Transform pos: -1.5,2.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' + - uid: 11995 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -56.5,-28.5 + parent: 34 + - type: AtmosPipeColor + color: '#03FCD3FF' - uid: 12062 components: - type: Transform @@ -52933,7 +53853,7 @@ entities: pos: -33.5,-49.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 12063 components: - type: Transform @@ -52941,7 +53861,7 @@ entities: pos: -34.5,-49.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 12064 components: - type: Transform @@ -52949,7 +53869,7 @@ entities: pos: -35.5,-49.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 12065 components: - type: Transform @@ -52957,7 +53877,7 @@ entities: pos: -32.5,-43.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 12066 components: - type: Transform @@ -52965,7 +53885,7 @@ entities: pos: -32.5,-44.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 12067 components: - type: Transform @@ -52973,7 +53893,7 @@ entities: pos: -32.5,-45.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 12068 components: - type: Transform @@ -52981,7 +53901,7 @@ entities: pos: -32.5,-46.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 12069 components: - type: Transform @@ -52989,7 +53909,7 @@ entities: pos: -32.5,-47.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 12070 components: - type: Transform @@ -52997,7 +53917,7 @@ entities: pos: -32.5,-48.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 12071 components: - type: Transform @@ -53005,7 +53925,7 @@ entities: pos: -33.5,-42.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 12111 components: - type: Transform @@ -53013,7 +53933,7 @@ entities: pos: 15.5,-28.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 12137 components: - type: Transform @@ -53021,7 +53941,7 @@ entities: pos: -28.5,-29.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 12139 components: - type: Transform @@ -53029,7 +53949,7 @@ entities: pos: -27.5,-29.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 12167 components: - type: Transform @@ -53051,7 +53971,7 @@ entities: pos: 33.5,-3.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 12199 components: - type: Transform @@ -53075,7 +53995,7 @@ entities: pos: -54.5,-11.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 12203 components: - type: Transform @@ -53083,7 +54003,7 @@ entities: pos: -55.5,-11.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 12206 components: - type: Transform @@ -53106,14 +54026,14 @@ entities: pos: -49.5,-11.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 12211 components: - type: Transform pos: -49.5,-12.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 12222 components: - type: Transform @@ -53121,7 +54041,7 @@ entities: pos: -25.5,-32.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 12223 components: - type: Transform @@ -53129,14 +54049,14 @@ entities: pos: -25.5,-31.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 12225 components: - type: Transform pos: -29.5,-30.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 12228 components: - type: Transform @@ -53144,14 +54064,14 @@ entities: pos: 30.5,-3.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 12261 components: - type: Transform pos: 44.5,-10.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 12283 components: - type: Transform @@ -53159,7 +54079,7 @@ entities: pos: -3.5,11.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 12307 components: - type: Transform @@ -53174,28 +54094,28 @@ entities: pos: -18.5,-34.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 12342 components: - type: Transform pos: -18.5,-35.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 12343 components: - type: Transform pos: -18.5,-36.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 12344 components: - type: Transform pos: -18.5,-37.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 12363 components: - type: Transform @@ -53203,14 +54123,14 @@ entities: pos: -43.5,-12.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 12383 components: - type: Transform pos: 31.5,-1.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 12386 components: - type: Transform @@ -53218,7 +54138,7 @@ entities: pos: 46.5,-6.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 12387 components: - type: Transform @@ -53226,7 +54146,7 @@ entities: pos: 30.5,-0.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 12391 components: - type: Transform @@ -53234,7 +54154,7 @@ entities: pos: 31.5,-2.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 12397 components: - type: Transform @@ -53242,7 +54162,7 @@ entities: pos: 31.5,-2.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 12405 components: - type: Transform @@ -53250,7 +54170,7 @@ entities: pos: -4.5,11.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 12438 components: - type: Transform @@ -53258,7 +54178,7 @@ entities: pos: 2.5,-41.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 12665 components: - type: Transform @@ -53272,7 +54192,7 @@ entities: pos: 18.5,-14.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 12703 components: - type: Transform @@ -53280,7 +54200,7 @@ entities: pos: 18.5,-15.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 12706 components: - type: Transform @@ -53288,7 +54208,7 @@ entities: pos: 18.5,-16.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 12708 components: - type: Transform @@ -53296,7 +54216,7 @@ entities: pos: 46.5,-3.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 12780 components: - type: Transform @@ -53304,7 +54224,7 @@ entities: pos: 17.5,-15.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 12851 components: - type: Transform @@ -53312,7 +54232,7 @@ entities: pos: 17.5,-17.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 12853 components: - type: Transform @@ -53320,7 +54240,7 @@ entities: pos: 17.5,-13.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 12858 components: - type: Transform @@ -53328,7 +54248,7 @@ entities: pos: -5.5,11.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 12859 components: - type: Transform @@ -53336,21 +54256,21 @@ entities: pos: -6.5,11.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 12861 components: - type: Transform pos: 8.5,12.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 12862 components: - type: Transform pos: 8.5,11.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 12864 components: - type: Transform @@ -53358,7 +54278,7 @@ entities: pos: 7.5,10.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 12865 components: - type: Transform @@ -53366,7 +54286,7 @@ entities: pos: 6.5,10.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 12866 components: - type: Transform @@ -53374,7 +54294,7 @@ entities: pos: 5.5,10.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 12867 components: - type: Transform @@ -53382,7 +54302,7 @@ entities: pos: 4.5,10.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 12868 components: - type: Transform @@ -53390,7 +54310,7 @@ entities: pos: 3.5,10.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 12869 components: - type: Transform @@ -53398,7 +54318,7 @@ entities: pos: 2.5,10.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 12870 components: - type: Transform @@ -53406,7 +54326,7 @@ entities: pos: 1.5,10.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 12871 components: - type: Transform @@ -53414,7 +54334,7 @@ entities: pos: -0.5,10.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 12872 components: - type: Transform @@ -53422,7 +54342,7 @@ entities: pos: 0.5,10.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 12873 components: - type: Transform @@ -53430,7 +54350,7 @@ entities: pos: -1.5,10.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 12874 components: - type: Transform @@ -53438,7 +54358,7 @@ entities: pos: -3.5,10.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 12875 components: - type: Transform @@ -53446,7 +54366,7 @@ entities: pos: -2.5,10.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 12876 components: - type: Transform @@ -53454,14 +54374,14 @@ entities: pos: -4.5,10.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 12878 components: - type: Transform pos: -5.5,9.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 12881 components: - type: Transform @@ -53469,7 +54389,7 @@ entities: pos: -39.5,-22.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 12882 components: - type: Transform @@ -53477,14 +54397,14 @@ entities: pos: -40.5,-22.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 12884 components: - type: Transform pos: -13.5,-39.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 12888 components: - type: Transform @@ -53492,7 +54412,7 @@ entities: pos: 14.5,-28.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 12912 components: - type: Transform @@ -53500,7 +54420,7 @@ entities: pos: 26.5,-13.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 12922 components: - type: Transform @@ -53508,7 +54428,7 @@ entities: pos: 26.5,-14.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 12923 components: - type: Transform @@ -53516,7 +54436,7 @@ entities: pos: 26.5,-15.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 12924 components: - type: Transform @@ -53524,42 +54444,42 @@ entities: pos: 26.5,-16.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 12930 components: - type: Transform pos: 41.5,2.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 12936 components: - type: Transform pos: 41.5,1.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 12939 components: - type: Transform pos: 41.5,0.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 12940 components: - type: Transform pos: 41.5,-0.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 12941 components: - type: Transform pos: 41.5,-1.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 12943 components: - type: Transform @@ -53567,7 +54487,7 @@ entities: pos: 41.5,3.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 12944 components: - type: Transform @@ -53575,35 +54495,35 @@ entities: pos: 40.5,3.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 12949 components: - type: Transform pos: 39.5,2.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 12950 components: - type: Transform pos: -12.5,-34.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 12953 components: - type: Transform pos: -12.5,-35.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 12954 components: - type: Transform pos: -12.5,-36.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 12955 components: - type: Transform @@ -53611,7 +54531,7 @@ entities: pos: 25.5,-17.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 12956 components: - type: Transform @@ -53619,7 +54539,7 @@ entities: pos: 24.5,-17.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 12957 components: - type: Transform @@ -53627,7 +54547,7 @@ entities: pos: 23.5,-17.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 12958 components: - type: Transform @@ -53635,7 +54555,7 @@ entities: pos: 22.5,-17.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 12959 components: - type: Transform @@ -53643,66 +54563,42 @@ entities: pos: 24.5,-16.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 12960 components: - type: Transform pos: 25.5,-14.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 12962 components: - type: Transform pos: 25.5,-15.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 12963 components: - type: Transform pos: -12.5,-37.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 12964 components: - type: Transform pos: -12.5,-38.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 12965 components: - type: Transform pos: -12.5,-39.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13103 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,14.5 - parent: 34 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13107 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,15.5 - parent: 34 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13108 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,15.5 - parent: 34 - - type: AtmosPipeColor - color: '#FF0000FF' + color: '#0335FCFF' - uid: 13110 components: - type: Transform @@ -53710,63 +54606,63 @@ entities: pos: 15.5,16.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13118 components: - type: Transform pos: 43.5,-7.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13119 components: - type: Transform pos: 43.5,-8.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13120 components: - type: Transform pos: 43.5,-9.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13121 components: - type: Transform pos: 43.5,-10.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13122 components: - type: Transform pos: 43.5,-11.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13123 components: - type: Transform pos: 43.5,-12.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13124 components: - type: Transform pos: 43.5,-13.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13125 components: - type: Transform pos: 43.5,-14.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13128 components: - type: Transform @@ -53774,7 +54670,7 @@ entities: pos: 44.5,-14.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13212 components: - type: Transform @@ -53782,7 +54678,7 @@ entities: pos: 52.5,-39.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13213 components: - type: Transform @@ -53790,7 +54686,7 @@ entities: pos: 53.5,-39.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13244 components: - type: Transform @@ -53798,14 +54694,14 @@ entities: pos: 12.5,-32.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13296 components: - type: Transform pos: -8.5,3.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13485 components: - type: Transform @@ -53813,7 +54709,7 @@ entities: pos: 37.5,-18.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13488 components: - type: Transform @@ -53821,7 +54717,7 @@ entities: pos: 36.5,-18.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13489 components: - type: Transform @@ -53829,7 +54725,7 @@ entities: pos: 36.5,-16.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13490 components: - type: Transform @@ -53837,7 +54733,7 @@ entities: pos: 37.5,-16.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13491 components: - type: Transform @@ -53845,7 +54741,7 @@ entities: pos: 38.5,-16.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13493 components: - type: Transform @@ -53853,7 +54749,7 @@ entities: pos: 38.5,-17.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13494 components: - type: Transform @@ -53861,7 +54757,7 @@ entities: pos: 39.5,-17.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13800 components: - type: Transform @@ -53920,7 +54816,7 @@ entities: pos: -52.5,-10.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14127 components: - type: Transform @@ -53928,7 +54824,7 @@ entities: pos: 41.5,-35.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14278 components: - type: Transform @@ -53968,520 +54864,1172 @@ entities: parent: 34 - type: AtmosPipeColor color: '#0000FFFF' -- proto: GasPipeTJunction - entities: - - uid: 96 + - uid: 14358 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -47.5,-35.5 + rot: 3.141592653589793 rad + pos: 16.5,12.5 parent: 34 - type: AtmosPipeColor - color: '#444444FF' - - uid: 806 + color: '#0335FCFF' + - uid: 14378 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,-7.5 + rot: 3.141592653589793 rad + pos: 31.5,14.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 808 + color: '#FF1212FF' + - uid: 14453 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,-8.5 + rot: 3.141592653589793 rad + pos: 31.5,13.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 945 + color: '#FF1212FF' + - uid: 14524 components: - type: Transform - rot: 3.141592653589793 rad - pos: -44.5,-55.5 + pos: 21.5,14.5 parent: 34 - - uid: 956 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14556 components: - type: Transform - pos: 5.5,-5.5 + pos: 17.5,14.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 979 + color: '#FF1212FF' + - uid: 14557 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 44.5,-6.5 + rot: -1.5707963267948966 rad + pos: 18.5,15.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 1233 + color: '#FF1212FF' + - uid: 14558 components: - type: Transform rot: -1.5707963267948966 rad - pos: 43.5,-6.5 + pos: 19.5,15.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1334 + color: '#FF1212FF' + - uid: 14559 components: - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,-24.5 + rot: -1.5707963267948966 rad + pos: 20.5,15.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 1352 + color: '#FF1212FF' + - uid: 14561 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,13.5 + pos: 21.5,13.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1364 + color: '#FF1212FF' + - uid: 14562 components: - type: Transform - pos: 14.5,16.5 + pos: 17.5,13.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 1434 + color: '#FF1212FF' + - uid: 14563 + components: + - type: Transform + pos: 16.5,14.5 + parent: 34 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14564 components: - type: Transform rot: -1.5707963267948966 rad - pos: -54.5,-26.5 + pos: 18.5,16.5 parent: 34 - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 1628 + color: '#0335FCFF' + - uid: 14565 components: - type: Transform rot: -1.5707963267948966 rad - pos: -29.5,-6.5 + pos: 19.5,16.5 parent: 34 - - uid: 1693 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14566 components: - type: Transform - pos: -41.5,-40.5 + rot: -1.5707963267948966 rad + pos: 20.5,16.5 parent: 34 - type: AtmosPipeColor - color: '#FF00FFFF' - - uid: 2330 + color: '#0335FCFF' + - uid: 14567 components: - type: Transform - pos: -45.5,-26.5 + rot: -1.5707963267948966 rad + pos: 21.5,16.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2337 + color: '#0335FCFF' + - uid: 14569 components: - type: Transform rot: -1.5707963267948966 rad - pos: -37.5,-23.5 + pos: 22.5,15.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2344 + color: '#FF1212FF' + - uid: 14570 components: - type: Transform rot: 3.141592653589793 rad - pos: -38.5,-27.5 + pos: 22.5,15.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2372 + color: '#0335FCFF' + - uid: 14571 components: - type: Transform rot: 3.141592653589793 rad - pos: -37.5,-26.5 + pos: 22.5,14.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2375 + color: '#0335FCFF' + - uid: 14572 components: - type: Transform rot: 3.141592653589793 rad - pos: -39.5,-27.5 + pos: 22.5,13.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2400 + color: '#0335FCFF' + - uid: 14573 components: - type: Transform rot: 3.141592653589793 rad - pos: -45.5,-22.5 + pos: 21.5,12.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2541 + color: '#FF1212FF' + - uid: 14574 components: - type: Transform rot: 3.141592653589793 rad - pos: 33.5,-23.5 + pos: 22.5,12.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2544 + color: '#0335FCFF' + - uid: 14581 components: - type: Transform - pos: 25.5,-24.5 + rot: 1.5707963267948966 rad + pos: 23.5,16.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2566 + color: '#0335FCFF' + - uid: 14582 components: - type: Transform rot: 1.5707963267948966 rad - pos: 21.5,-35.5 + pos: 24.5,16.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2642 + color: '#0335FCFF' + - uid: 14583 components: - type: Transform - rot: 3.141592653589793 rad - pos: 34.5,-40.5 + rot: 1.5707963267948966 rad + pos: 24.5,14.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2700 + color: '#FF1212FF' + - uid: 14584 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,-40.5 + rot: 1.5707963267948966 rad + pos: 25.5,16.5 parent: 34 - - uid: 2708 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14585 components: - type: Transform rot: 1.5707963267948966 rad - pos: -5.5,-46.5 + pos: 26.5,16.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2966 + color: '#0335FCFF' + - uid: 14586 components: - type: Transform rot: 1.5707963267948966 rad - pos: -5.5,-33.5 + pos: 25.5,14.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2967 + color: '#FF1212FF' + - uid: 14587 components: - type: Transform rot: 1.5707963267948966 rad - pos: -4.5,-35.5 + pos: 26.5,14.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2971 + color: '#FF1212FF' + - uid: 14590 components: - type: Transform rot: 3.141592653589793 rad - pos: 3.5,-45.5 + pos: 17.5,12.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2972 + color: '#FF1212FF' + - uid: 14591 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,-36.5 + rot: 3.141592653589793 rad + pos: 16.5,13.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2973 + color: '#0335FCFF' + - uid: 14593 components: - type: Transform rot: 1.5707963267948966 rad - pos: -4.5,-32.5 + pos: 18.5,8.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3328 + color: '#0335FCFF' + - uid: 14594 components: - type: Transform - rot: 3.141592653589793 rad - pos: -29.5,-9.5 + rot: 1.5707963267948966 rad + pos: 19.5,8.5 parent: 34 - type: AtmosPipeColor - color: '#F84000FF' - - uid: 3460 + color: '#0335FCFF' + - uid: 14595 components: - type: Transform rot: 1.5707963267948966 rad - pos: 10.5,8.5 + pos: 20.5,8.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3639 + color: '#0335FCFF' + - uid: 14596 components: - type: Transform - rot: 3.141592653589793 rad - pos: 35.5,-24.5 + rot: 1.5707963267948966 rad + pos: 21.5,8.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3783 + color: '#0335FCFF' + - uid: 14597 components: - type: Transform - rot: 3.141592653589793 rad - pos: -33.5,-36.5 + rot: 1.5707963267948966 rad + pos: 22.5,8.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3847 + color: '#0335FCFF' + - uid: 14598 components: - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,-23.5 + rot: 1.5707963267948966 rad + pos: 23.5,8.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3857 + color: '#0335FCFF' + - uid: 14599 components: - type: Transform - pos: 7.5,-24.5 + rot: 1.5707963267948966 rad + pos: 24.5,8.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3878 + color: '#0335FCFF' + - uid: 14600 components: - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,-32.5 + rot: 1.5707963267948966 rad + pos: 29.5,8.5 parent: 34 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4015 + - uid: 14601 components: - type: Transform - pos: 0.5,-47.5 + rot: 1.5707963267948966 rad + pos: 26.5,8.5 parent: 34 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4250 + - uid: 14602 components: - type: Transform - pos: 9.5,-33.5 + rot: 1.5707963267948966 rad + pos: 27.5,8.5 parent: 34 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4344 + - uid: 14603 components: - type: Transform rot: 1.5707963267948966 rad - pos: 15.5,-27.5 + pos: 28.5,8.5 parent: 34 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4373 + - uid: 14604 components: - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,-32.5 + anchored: False + rot: 1.5707963267948966 rad + pos: 25.5,8.5 parent: 34 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4389 + - type: Physics + canCollide: True + bodyType: Dynamic + - uid: 14605 components: - type: Transform rot: 1.5707963267948966 rad - pos: 21.5,-37.5 + pos: 24.5,7.5 parent: 34 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4425 + - uid: 14606 components: - type: Transform rot: 1.5707963267948966 rad - pos: 29.5,2.5 + pos: 30.5,8.5 parent: 34 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4441 + - uid: 14607 components: - type: Transform - pos: 15.5,-23.5 + rot: 1.5707963267948966 rad + pos: 31.5,8.5 parent: 34 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4442 + - uid: 14609 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,-31.5 + rot: 3.141592653589793 rad + pos: 32.5,9.5 parent: 34 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4567 + - uid: 14610 components: - type: Transform - pos: -11.5,-34.5 + rot: 3.141592653589793 rad + pos: 32.5,10.5 parent: 34 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4650 + - uid: 14612 components: - type: Transform - pos: 28.5,4.5 + rot: 3.141592653589793 rad + pos: 32.5,12.5 parent: 34 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4673 + - uid: 14613 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,-17.5 + rot: 3.141592653589793 rad + pos: 32.5,13.5 parent: 34 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4687 + - uid: 14614 components: - type: Transform rot: 1.5707963267948966 rad - pos: 33.5,-16.5 + pos: 33.5,11.5 parent: 34 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4785 + - uid: 14617 components: - type: Transform - pos: -13.5,-37.5 + pos: 32.5,14.5 parent: 34 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4793 + - uid: 14618 components: - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,-33.5 + pos: 32.5,15.5 parent: 34 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5181 + - uid: 14619 components: - type: Transform - rot: 3.141592653589793 rad - pos: 35.5,-3.5 + pos: 32.5,16.5 parent: 34 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5803 + - uid: 14620 components: - type: Transform - rot: 3.141592653589793 rad - pos: -38.5,3.5 + rot: -1.5707963267948966 rad + pos: 28.5,14.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5845 + color: '#FF1212FF' + - uid: 14622 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -40.5,3.5 + pos: 27.5,13.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5849 + color: '#FF1212FF' + - uid: 14623 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -41.5,1.5 + pos: 27.5,12.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5998 + color: '#FF1212FF' + - uid: 14624 components: - type: Transform - rot: 3.141592653589793 rad - pos: 32.5,-24.5 + pos: 27.5,11.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 6015 + color: '#FF1212FF' + - uid: 14625 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -51.5,-9.5 + pos: 27.5,10.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 6364 + color: '#FF1212FF' + - uid: 14627 components: - type: Transform - pos: -58.5,-19.5 + rot: 1.5707963267948966 rad + pos: 28.5,9.5 parent: 34 - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 6398 + color: '#FF1212FF' + - uid: 14628 components: - type: Transform rot: 1.5707963267948966 rad - pos: -1.5,-40.5 + pos: 29.5,9.5 parent: 34 - - uid: 6553 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14629 components: - type: Transform - pos: 27.5,-37.5 + rot: 1.5707963267948966 rad + pos: 30.5,9.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 6561 + color: '#FF1212FF' + - uid: 14631 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 34.5,-37.5 + rot: 3.141592653589793 rad + pos: 31.5,10.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 6660 + color: '#FF1212FF' + - uid: 14632 components: - type: Transform rot: 3.141592653589793 rad - pos: 44.5,-40.5 + pos: 31.5,11.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 6701 + color: '#FF1212FF' + - uid: 14634 components: - type: Transform - rot: 3.141592653589793 rad - pos: 34.5,-18.5 + rot: 1.5707963267948966 rad + pos: 32.5,12.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 6712 + color: '#FF1212FF' + - uid: 14635 components: - type: Transform rot: 1.5707963267948966 rad - pos: 31.5,-3.5 + pos: 33.5,12.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 6721 + color: '#FF1212FF' + - uid: 14636 components: - type: Transform - pos: 38.5,-2.5 + rot: 3.141592653589793 rad + pos: 31.5,15.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 6877 + color: '#FF1212FF' + - uid: 14637 components: - type: Transform - pos: 33.5,-24.5 + rot: 3.141592653589793 rad + pos: 31.5,16.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 6878 + color: '#FF1212FF' + - uid: 14759 components: - type: Transform rot: -1.5707963267948966 rad - pos: 3.5,-41.5 + pos: -29.5,-13.5 + parent: 34 + - uid: 14760 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,-13.5 + parent: 34 + - uid: 14761 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,-13.5 + parent: 34 + - uid: 14762 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,-13.5 + parent: 34 + - uid: 14763 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -33.5,-13.5 + parent: 34 + - uid: 14764 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -34.5,-13.5 + parent: 34 + - uid: 14765 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,-14.5 + parent: 34 + - uid: 14766 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,-14.5 + parent: 34 + - uid: 14767 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -33.5,-14.5 + parent: 34 + - uid: 14768 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -34.5,-14.5 + parent: 34 +- proto: GasPipeTJunction + entities: + - uid: 96 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -47.5,-35.5 + parent: 34 + - type: AtmosPipeColor + color: '#444444FF' + - uid: 515 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,-18.5 + parent: 34 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 806 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,-7.5 + parent: 34 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 808 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,-8.5 + parent: 34 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 945 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -44.5,-55.5 + parent: 34 + - uid: 956 + components: + - type: Transform + pos: 5.5,-5.5 + parent: 34 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 959 + components: + - type: Transform + pos: -28.5,-0.5 + parent: 34 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 979 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 44.5,-6.5 + parent: 34 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1233 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,-6.5 + parent: 34 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 1334 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-24.5 + parent: 34 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1364 + components: + - type: Transform + pos: 14.5,16.5 + parent: 34 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1434 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -54.5,-26.5 + parent: 34 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 1650 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -57.5,-32.5 + parent: 34 + - uid: 1651 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -59.5,-32.5 parent: 34 - type: AtmosPipeColor color: '#FF0000FF' + - uid: 1693 + components: + - type: Transform + pos: -41.5,-40.5 + parent: 34 + - type: AtmosPipeColor + color: '#FF00FFFF' + - uid: 1795 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -45.5,-51.5 + parent: 34 + - uid: 2040 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -46.5,-0.5 + parent: 34 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 2202 + components: + - type: Transform + pos: -49.5,0.5 + parent: 34 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 2231 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -48.5,-0.5 + parent: 34 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 2330 + components: + - type: Transform + pos: -45.5,-26.5 + parent: 34 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 2337 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,-23.5 + parent: 34 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 2344 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,-27.5 + parent: 34 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 2372 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,-26.5 + parent: 34 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 2375 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -39.5,-27.5 + parent: 34 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 2400 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -45.5,-22.5 + parent: 34 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 2535 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,-19.5 + parent: 34 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 2541 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,-23.5 + parent: 34 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 2544 + components: + - type: Transform + pos: 25.5,-24.5 + parent: 34 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 2547 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,13.5 + parent: 34 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 2566 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,-35.5 + parent: 34 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 2642 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,-40.5 + parent: 34 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 2700 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-40.5 + parent: 34 + - uid: 2708 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-46.5 + parent: 34 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 2966 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-33.5 + parent: 34 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 2967 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-35.5 + parent: 34 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 2971 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-45.5 + parent: 34 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 2972 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-36.5 + parent: 34 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 2973 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-32.5 + parent: 34 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 3460 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,8.5 + parent: 34 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 3639 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,-24.5 + parent: 34 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 3783 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,-36.5 + parent: 34 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 3847 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-23.5 + parent: 34 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 3857 + components: + - type: Transform + pos: 7.5,-24.5 + parent: 34 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 3878 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-32.5 + parent: 34 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4015 + components: + - type: Transform + pos: 0.5,-47.5 + parent: 34 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4250 + components: + - type: Transform + pos: 9.5,-33.5 + parent: 34 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4344 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,-27.5 + parent: 34 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4373 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-32.5 + parent: 34 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4389 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,-37.5 + parent: 34 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4425 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,2.5 + parent: 34 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4441 + components: + - type: Transform + pos: 15.5,-23.5 + parent: 34 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4442 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,-31.5 + parent: 34 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4567 + components: + - type: Transform + pos: -11.5,-34.5 + parent: 34 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4650 + components: + - type: Transform + pos: 28.5,4.5 + parent: 34 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4673 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,-17.5 + parent: 34 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4687 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,-16.5 + parent: 34 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4785 + components: + - type: Transform + pos: -13.5,-37.5 + parent: 34 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4793 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,-33.5 + parent: 34 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5181 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,-3.5 + parent: 34 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5192 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,8.5 + parent: 34 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5510 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -47.5,0.5 + parent: 34 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5803 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,3.5 + parent: 34 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5845 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -40.5,3.5 + parent: 34 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5849 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -41.5,1.5 + parent: 34 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5866 + components: + - type: Transform + pos: 17.5,15.5 + parent: 34 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5868 + components: + - type: Transform + pos: 16.5,16.5 + parent: 34 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5998 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,-24.5 + parent: 34 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 6015 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -51.5,-9.5 + parent: 34 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 6340 + components: + - type: Transform + pos: -47.5,2.5 + parent: 34 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 6364 + components: + - type: Transform + pos: -58.5,-19.5 + parent: 34 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 6398 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-40.5 + parent: 34 + - uid: 6522 + components: + - type: Transform + pos: 13.5,15.5 + parent: 34 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 6553 + components: + - type: Transform + pos: 27.5,-37.5 + parent: 34 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 6561 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,-37.5 + parent: 34 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 6660 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 44.5,-40.5 + parent: 34 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 6701 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,-18.5 + parent: 34 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 6712 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,-3.5 + parent: 34 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 6721 + components: + - type: Transform + pos: 38.5,-2.5 + parent: 34 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 6877 + components: + - type: Transform + pos: 33.5,-24.5 + parent: 34 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 6878 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-41.5 + parent: 34 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 6949 components: - type: Transform @@ -54489,7 +56037,7 @@ entities: pos: 34.5,-7.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 6976 components: - type: Transform @@ -54497,7 +56045,7 @@ entities: pos: 22.5,-1.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 7163 components: - type: Transform @@ -54505,7 +56053,7 @@ entities: pos: 33.5,-35.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 7184 components: - type: Transform @@ -54513,7 +56061,7 @@ entities: pos: 34.5,-33.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 7188 components: - type: Transform @@ -54521,14 +56069,14 @@ entities: pos: 33.5,-13.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 7192 components: - type: Transform pos: 34.5,-23.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 7464 components: - type: Transform @@ -54536,7 +56084,7 @@ entities: pos: 43.5,-27.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 7498 components: - type: Transform @@ -54544,7 +56092,7 @@ entities: pos: -38.5,-12.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 7579 components: - type: Transform @@ -54552,7 +56100,7 @@ entities: pos: -11.5,-32.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 7663 components: - type: Transform @@ -54560,7 +56108,7 @@ entities: pos: -1.5,-0.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 7675 components: - type: Transform @@ -54568,14 +56116,14 @@ entities: pos: 32.5,-3.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 7735 components: - type: Transform pos: -13.5,-0.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 7761 components: - type: Transform @@ -54583,14 +56131,14 @@ entities: pos: -53.5,-11.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 7767 components: - type: Transform pos: 1.5,14.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 7926 components: - type: Transform @@ -54598,7 +56146,7 @@ entities: pos: -48.5,-10.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8005 components: - type: Transform @@ -54606,7 +56154,7 @@ entities: pos: 4.5,-44.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8008 components: - type: Transform @@ -54614,7 +56162,7 @@ entities: pos: 4.5,-39.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8158 components: - type: Transform @@ -54622,14 +56170,14 @@ entities: pos: -10.5,-34.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 8161 components: - type: Transform pos: -12.5,-33.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8186 components: - type: Transform @@ -54637,14 +56185,14 @@ entities: pos: 30.5,-15.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 8198 components: - type: Transform pos: -44.5,-25.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 8327 components: - type: Transform @@ -54652,7 +56200,7 @@ entities: pos: -29.5,-1.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8365 components: - type: Transform @@ -54660,7 +56208,7 @@ entities: pos: -38.5,-35.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 8368 components: - type: Transform @@ -54675,7 +56223,7 @@ entities: pos: -32.5,-37.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8388 components: - type: Transform @@ -54683,7 +56231,7 @@ entities: pos: -30.5,-34.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8396 components: - type: Transform @@ -54691,7 +56239,7 @@ entities: pos: -34.5,-30.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8403 components: - type: Transform @@ -54699,7 +56247,7 @@ entities: pos: -38.5,-30.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8405 components: - type: Transform @@ -54707,7 +56255,7 @@ entities: pos: -44.5,-30.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8421 components: - type: Transform @@ -54715,7 +56263,7 @@ entities: pos: -25.5,-26.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8439 components: - type: Transform @@ -54723,14 +56271,14 @@ entities: pos: -25.5,-23.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8441 components: - type: Transform pos: -25.5,-22.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8450 components: - type: Transform @@ -54738,7 +56286,7 @@ entities: pos: -16.5,-22.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8454 components: - type: Transform @@ -54746,14 +56294,14 @@ entities: pos: -12.5,-22.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8455 components: - type: Transform pos: -11.5,-22.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8461 components: - type: Transform @@ -54761,7 +56309,7 @@ entities: pos: -11.5,-25.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8472 components: - type: Transform @@ -54769,21 +56317,21 @@ entities: pos: 14.5,14.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8498 components: - type: Transform pos: 1.5,-41.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 8499 components: - type: Transform pos: 4.5,-37.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8584 components: - type: Transform @@ -54791,14 +56339,14 @@ entities: pos: -5.5,-22.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8596 components: - type: Transform pos: -12.5,-11.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8597 components: - type: Transform @@ -54806,14 +56354,14 @@ entities: pos: -10.5,-11.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8605 components: - type: Transform pos: -5.5,-11.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8612 components: - type: Transform @@ -54821,7 +56369,7 @@ entities: pos: -5.5,-14.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8617 components: - type: Transform @@ -54829,7 +56377,7 @@ entities: pos: -5.5,-19.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8636 components: - type: Transform @@ -54837,7 +56385,7 @@ entities: pos: 2.5,-9.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8637 components: - type: Transform @@ -54845,14 +56393,14 @@ entities: pos: 2.5,-8.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8638 components: - type: Transform pos: 2.5,-4.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8662 components: - type: Transform @@ -54860,7 +56408,7 @@ entities: pos: -3.5,-5.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8664 components: - type: Transform @@ -54868,14 +56416,14 @@ entities: pos: -3.5,-10.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8673 components: - type: Transform pos: -3.5,-1.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8674 components: - type: Transform @@ -54883,7 +56431,7 @@ entities: pos: -7.5,-1.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8687 components: - type: Transform @@ -54891,7 +56439,7 @@ entities: pos: -14.5,-1.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8688 components: - type: Transform @@ -54899,14 +56447,14 @@ entities: pos: -24.5,-1.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8689 components: - type: Transform pos: -23.5,-1.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8690 components: - type: Transform @@ -54914,7 +56462,7 @@ entities: pos: -27.5,-14.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8721 components: - type: Transform @@ -54922,7 +56470,7 @@ entities: pos: -18.5,-1.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8723 components: - type: Transform @@ -54930,7 +56478,7 @@ entities: pos: -0.5,-1.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8727 components: - type: Transform @@ -54938,7 +56486,7 @@ entities: pos: -2.5,-1.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8752 components: - type: Transform @@ -54946,7 +56494,7 @@ entities: pos: 9.5,-1.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8753 components: - type: Transform @@ -54954,7 +56502,7 @@ entities: pos: 9.5,1.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8759 components: - type: Transform @@ -54962,7 +56510,7 @@ entities: pos: 14.5,0.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8760 components: - type: Transform @@ -54970,7 +56518,7 @@ entities: pos: 14.5,3.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8761 components: - type: Transform @@ -54978,7 +56526,7 @@ entities: pos: 14.5,8.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8764 components: - type: Transform @@ -54986,7 +56534,7 @@ entities: pos: 14.5,11.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8787 components: - type: Transform @@ -54994,7 +56542,7 @@ entities: pos: 14.5,-1.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8789 components: - type: Transform @@ -55002,7 +56550,7 @@ entities: pos: 14.5,-4.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8806 components: - type: Transform @@ -55010,7 +56558,7 @@ entities: pos: 14.5,-10.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8810 components: - type: Transform @@ -55018,14 +56566,14 @@ entities: pos: 14.5,-12.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8829 components: - type: Transform pos: 35.5,-18.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8908 components: - type: Transform @@ -55033,7 +56581,7 @@ entities: pos: 42.5,-3.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8937 components: - type: Transform @@ -55041,7 +56589,7 @@ entities: pos: 41.5,-2.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 8944 components: - type: Transform @@ -55049,7 +56597,7 @@ entities: pos: -5.5,-24.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8962 components: - type: Transform @@ -55057,7 +56605,7 @@ entities: pos: -5.5,-41.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8995 components: - type: Transform @@ -55065,7 +56613,7 @@ entities: pos: -1.5,-32.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 8996 components: - type: Transform @@ -55073,7 +56621,7 @@ entities: pos: -0.5,-33.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 9041 components: - type: Transform @@ -55081,14 +56629,14 @@ entities: pos: 0.5,-24.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 9042 components: - type: Transform pos: 3.5,-36.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9043 components: - type: Transform @@ -55096,7 +56644,7 @@ entities: pos: 3.5,-24.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 9064 components: - type: Transform @@ -55104,14 +56652,14 @@ entities: pos: 14.5,-24.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 9072 components: - type: Transform pos: 13.5,-24.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 9153 components: - type: Transform @@ -55119,7 +56667,7 @@ entities: pos: 22.5,-34.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 9166 components: - type: Transform @@ -55127,7 +56675,7 @@ entities: pos: 44.5,-36.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9176 components: - type: Transform @@ -55135,7 +56683,7 @@ entities: pos: -26.5,-22.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 9181 components: - type: Transform @@ -55143,14 +56691,14 @@ entities: pos: -26.5,-18.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 9187 components: - type: Transform pos: -30.5,-1.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 9192 components: - type: Transform @@ -55158,7 +56706,7 @@ entities: pos: -33.5,-22.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 9217 components: - type: Transform @@ -55166,7 +56714,7 @@ entities: pos: -37.5,-10.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 9220 components: - type: Transform @@ -55174,72 +56722,21 @@ entities: pos: -37.5,-7.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 9228 - components: - - type: Transform - pos: -34.5,-1.5 - parent: 34 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 9251 - components: - - type: Transform - pos: -48.5,-1.5 - parent: 34 - - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 9252 components: - type: Transform pos: -43.5,-1.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 9253 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -47.5,-1.5 - parent: 34 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 9254 - components: - - type: Transform - pos: -47.5,2.5 - parent: 34 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 9261 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -48.5,-4.5 - parent: 34 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 9278 - components: - - type: Transform - pos: -53.5,-1.5 - parent: 34 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 9290 - components: - - type: Transform - pos: -48.5,-6.5 - parent: 34 - - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 9304 components: - type: Transform pos: -29.5,-10.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 9305 components: - type: Transform @@ -55247,7 +56744,7 @@ entities: pos: -30.5,-0.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9319 components: - type: Transform @@ -55255,7 +56752,7 @@ entities: pos: 43.5,-33.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 9360 components: - type: Transform @@ -55263,14 +56760,14 @@ entities: pos: -35.5,-35.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9371 components: - type: Transform pos: -40.5,-29.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9379 components: - type: Transform @@ -55278,7 +56775,7 @@ entities: pos: -43.5,-31.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9382 components: - type: Transform @@ -55286,14 +56783,14 @@ entities: pos: -32.5,-42.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 9397 components: - type: Transform pos: -34.5,-36.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9415 components: - type: Transform @@ -55301,7 +56798,7 @@ entities: pos: -30.5,-29.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9424 components: - type: Transform @@ -55309,7 +56806,7 @@ entities: pos: 21.5,-38.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9433 components: - type: Transform @@ -55317,7 +56814,7 @@ entities: pos: -40.5,-26.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 9440 components: - type: Transform @@ -55325,14 +56822,14 @@ entities: pos: -27.5,-21.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9451 components: - type: Transform pos: -23.5,-21.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9457 components: - type: Transform @@ -55340,21 +56837,21 @@ entities: pos: -22.5,-21.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9461 components: - type: Transform pos: -18.5,-21.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9462 components: - type: Transform pos: -17.5,-22.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 9471 components: - type: Transform @@ -55362,7 +56859,7 @@ entities: pos: -19.5,-21.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9478 components: - type: Transform @@ -55370,14 +56867,14 @@ entities: pos: -13.5,-21.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9481 components: - type: Transform pos: -10.5,-21.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9485 components: - type: Transform @@ -55385,14 +56882,14 @@ entities: pos: -10.5,-25.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9506 components: - type: Transform pos: -13.5,-12.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9509 components: - type: Transform @@ -55400,7 +56897,7 @@ entities: pos: -15.5,-10.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9515 components: - type: Transform @@ -55408,7 +56905,7 @@ entities: pos: -9.5,-12.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9523 components: - type: Transform @@ -55416,7 +56913,7 @@ entities: pos: -4.5,-12.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9524 components: - type: Transform @@ -55424,7 +56921,7 @@ entities: pos: -4.5,-6.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9532 components: - type: Transform @@ -55432,7 +56929,7 @@ entities: pos: -4.5,-8.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9544 components: - type: Transform @@ -55440,7 +56937,7 @@ entities: pos: 0.5,-8.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9548 components: - type: Transform @@ -55448,7 +56945,7 @@ entities: pos: 5.5,-7.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9557 components: - type: Transform @@ -55456,7 +56953,7 @@ entities: pos: -4.5,-18.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9563 components: - type: Transform @@ -55464,7 +56961,7 @@ entities: pos: -4.5,-21.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9570 components: - type: Transform @@ -55472,7 +56969,7 @@ entities: pos: -4.5,-20.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9573 components: - type: Transform @@ -55480,7 +56977,7 @@ entities: pos: -4.5,-23.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9612 components: - type: Transform @@ -55488,7 +56985,7 @@ entities: pos: 5.5,-36.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9657 components: - type: Transform @@ -55496,28 +56993,28 @@ entities: pos: -4.5,-43.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9658 components: - type: Transform pos: -7.5,-43.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9685 components: - type: Transform pos: 0.5,-45.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9695 components: - type: Transform pos: -4.5,-0.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9696 components: - type: Transform @@ -55525,14 +57022,14 @@ entities: pos: 3.5,-0.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9711 components: - type: Transform pos: 42.5,3.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 9748 components: - type: Transform @@ -55540,7 +57037,7 @@ entities: pos: -17.5,-0.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9749 components: - type: Transform @@ -55548,14 +57045,7 @@ entities: pos: -23.5,-0.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9761 - components: - - type: Transform - pos: -30.5,-9.5 - parent: 34 - - type: AtmosPipeColor - color: '#F84000FF' + color: '#FF1212FF' - uid: 9778 components: - type: Transform @@ -55563,22 +57053,14 @@ entities: pos: -36.5,-0.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9786 components: - type: Transform pos: -38.5,-0.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9797 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -38.5,-4.5 - parent: 34 - - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9798 components: - type: Transform @@ -55586,14 +57068,7 @@ entities: pos: -38.5,-3.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9801 - components: - - type: Transform - pos: -46.5,-0.5 - parent: 34 - - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9802 components: - type: Transform @@ -55601,22 +57076,7 @@ entities: pos: -44.5,-0.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9803 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -48.5,-0.5 - parent: 34 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9804 - components: - - type: Transform - pos: -49.5,-0.5 - parent: 34 - - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9826 components: - type: Transform @@ -55624,15 +57084,7 @@ entities: pos: -38.5,-9.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9859 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -38.5,-17.5 - parent: 34 - - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9876 components: - type: Transform @@ -55640,7 +57092,7 @@ entities: pos: 13.5,-0.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9880 components: - type: Transform @@ -55648,7 +57100,7 @@ entities: pos: 13.5,5.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9883 components: - type: Transform @@ -55656,7 +57108,7 @@ entities: pos: 13.5,8.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9893 components: - type: Transform @@ -55664,7 +57116,7 @@ entities: pos: 13.5,9.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9897 components: - type: Transform @@ -55672,7 +57124,7 @@ entities: pos: 13.5,10.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9910 components: - type: Transform @@ -55680,7 +57132,7 @@ entities: pos: 13.5,-5.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9923 components: - type: Transform @@ -55688,7 +57140,7 @@ entities: pos: 13.5,-12.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9926 components: - type: Transform @@ -55696,7 +57148,7 @@ entities: pos: 13.5,-13.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9930 components: - type: Transform @@ -55704,14 +57156,14 @@ entities: pos: 17.5,-14.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 9931 components: - type: Transform pos: 17.5,-12.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 9936 components: - type: Transform @@ -55719,7 +57171,7 @@ entities: pos: 25.5,-11.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9940 components: - type: Transform @@ -55727,21 +57179,21 @@ entities: pos: 26.5,-5.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 9950 components: - type: Transform pos: 25.5,-1.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9951 components: - type: Transform pos: 26.5,-0.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 9963 components: - type: Transform @@ -55749,7 +57201,7 @@ entities: pos: 29.5,-1.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9969 components: - type: Transform @@ -55757,7 +57209,7 @@ entities: pos: 26.5,-10.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 9974 components: - type: Transform @@ -55765,14 +57217,14 @@ entities: pos: 25.5,-8.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9979 components: - type: Transform pos: 39.5,-2.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9988 components: - type: Transform @@ -55780,7 +57232,7 @@ entities: pos: 38.5,-4.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 10016 components: - type: Transform @@ -55788,7 +57240,7 @@ entities: pos: 44.5,-9.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 10032 components: - type: Transform @@ -55796,7 +57248,7 @@ entities: pos: 13.5,-18.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 10044 components: - type: Transform @@ -55804,7 +57256,7 @@ entities: pos: 11.5,-23.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 10045 components: - type: Transform @@ -55812,28 +57264,28 @@ entities: pos: 13.5,-23.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 10057 components: - type: Transform pos: 21.5,-23.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 10087 components: - type: Transform pos: 26.5,-40.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 10091 components: - type: Transform pos: 29.5,-40.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 10193 components: - type: Transform @@ -55841,21 +57293,21 @@ entities: pos: 28.5,-0.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 10199 components: - type: Transform pos: 38.5,-3.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 10207 components: - type: Transform pos: 31.5,-23.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 10217 components: - type: Transform @@ -55863,7 +57315,7 @@ entities: pos: 28.5,-23.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 10249 components: - type: Transform @@ -55871,7 +57323,7 @@ entities: pos: -33.5,-45.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 10334 components: - type: Transform @@ -55879,7 +57331,7 @@ entities: pos: 13.5,-28.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 10382 components: - type: Transform @@ -55887,14 +57339,14 @@ entities: pos: 9.5,6.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 10435 components: - type: Transform pos: 8.5,13.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 10520 components: - type: Transform @@ -55903,6 +57355,14 @@ entities: parent: 34 - type: AtmosPipeColor color: '#03FCD3FF' + - uid: 10677 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.5,-6.5 + parent: 34 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 10717 components: - type: Transform @@ -55910,7 +57370,7 @@ entities: pos: 33.5,-8.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 10862 components: - type: Transform @@ -55918,7 +57378,7 @@ entities: pos: 36.5,-13.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 10941 components: - type: Transform @@ -55926,7 +57386,7 @@ entities: pos: -38.5,-20.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 11015 components: - type: Transform @@ -55934,7 +57394,7 @@ entities: pos: 21.5,-8.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 11020 components: - type: Transform @@ -55942,7 +57402,7 @@ entities: pos: 21.5,-7.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 11031 components: - type: Transform @@ -55965,7 +57425,7 @@ entities: pos: 20.5,-6.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 11244 components: - type: Transform @@ -55973,7 +57433,7 @@ entities: pos: 20.5,-8.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 11261 components: - type: Transform @@ -55981,7 +57441,7 @@ entities: pos: 21.5,-9.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 11311 components: - type: Transform @@ -55989,14 +57449,14 @@ entities: pos: 22.5,-38.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 11325 components: - type: Transform pos: 50.5,-33.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 11357 components: - type: Transform @@ -56004,7 +57464,7 @@ entities: pos: 49.5,-40.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 11406 components: - type: Transform @@ -56026,7 +57486,7 @@ entities: pos: 20.5,-5.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 11895 components: - type: Transform @@ -56034,7 +57494,7 @@ entities: pos: 9.5,13.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 12013 components: - type: Transform @@ -56042,21 +57502,21 @@ entities: pos: -16.5,-0.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 12014 components: - type: Transform pos: -26.5,-0.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 12017 components: - type: Transform pos: -29.5,-29.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 12169 components: - type: Transform @@ -56064,7 +57524,7 @@ entities: pos: 31.5,-14.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 12209 components: - type: Transform @@ -56072,7 +57532,7 @@ entities: pos: -46.5,-9.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 12281 components: - type: Transform @@ -56080,7 +57540,7 @@ entities: pos: 30.5,-2.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 12420 components: - type: Transform @@ -56088,7 +57548,7 @@ entities: pos: 6.5,-41.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13483 components: - type: Transform @@ -56096,7 +57556,7 @@ entities: pos: 38.5,-18.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13484 components: - type: Transform @@ -56104,7 +57564,7 @@ entities: pos: 39.5,-16.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13818 components: - type: Transform @@ -56133,31 +57593,73 @@ entities: parent: 34 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 14348 + - uid: 14560 components: - type: Transform - pos: -46.5,-51.5 + pos: 21.5,15.5 parent: 34 - - uid: 14349 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14568 components: - type: Transform - rot: 3.141592653589793 rad - pos: -45.5,-55.5 + pos: 22.5,16.5 parent: 34 - - uid: 14350 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14611 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,11.5 + parent: 34 + - uid: 14621 + components: + - type: Transform + pos: 27.5,14.5 + parent: 34 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14626 components: - type: Transform rot: 3.141592653589793 rad - pos: -46.5,-55.5 + pos: 27.5,9.5 parent: 34 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14633 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,12.5 + parent: 34 + - type: AtmosPipeColor + color: '#FF1212FF' - proto: GasPort entities: + - uid: 1051 + components: + - type: Transform + pos: -47.5,-0.5 + parent: 34 + - uid: 1514 + components: + - type: Transform + pos: -57.5,-31.5 + parent: 34 - uid: 1564 components: - type: Transform rot: 1.5707963267948966 rad pos: -56.5,-26.5 parent: 34 + - uid: 1580 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -56.5,-33.5 + parent: 34 - uid: 1779 components: - type: Transform @@ -56193,7 +57695,7 @@ entities: pos: 10.5,-18.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 4539 components: - type: Transform @@ -56201,7 +57703,7 @@ entities: pos: 23.5,3.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14277 components: - type: Transform @@ -56219,7 +57721,7 @@ entities: pos: -39.5,-35.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 125 components: - type: Transform @@ -56227,7 +57729,7 @@ entities: pos: -39.5,-37.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 222 components: - type: Transform @@ -56238,6 +57740,11 @@ entities: targetPressure: 4500 - type: AtmosPipeColor color: '#03FCD3FF' + - uid: 1064 + components: + - type: Transform + pos: -47.5,-1.5 + parent: 34 - uid: 1154 components: - type: Transform @@ -56275,15 +57782,6 @@ entities: targetPressure: 4500 - type: AtmosPipeColor color: '#FF00FFFF' - - uid: 1428 - components: - - type: MetaData - name: distro pump - - type: Transform - pos: -29.5,-4.5 - parent: 34 - - type: AtmosPipeColor - color: '#0000FFFF' - uid: 1535 components: - type: Transform @@ -56337,31 +57835,31 @@ entities: targetPressure: 4500 - type: AtmosPipeColor color: '#444444FF' - - uid: 1796 + - uid: 1861 components: - - type: MetaData - name: gas input pump - type: Transform - rot: -1.5707963267948966 rad - pos: -30.5,-5.5 + rot: 3.141592653589793 rad + pos: -54.5,-31.5 parent: 34 - - uid: 2020 + - type: GasPressurePump + targetPressure: 4500 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2069 components: - - type: MetaData - name: gas output pump - type: Transform - rot: 1.5707963267948966 rad - pos: -30.5,-6.5 + rot: 3.141592653589793 rad + pos: -48.5,-1.5 parent: 34 - - uid: 2124 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 2215 components: - - type: MetaData - name: waste pump - type: Transform - pos: -29.5,-7.5 + pos: -49.5,-1.5 parent: 34 - type: AtmosPipeColor - color: '#F84000FF' + color: '#0335FCFF' - uid: 2426 components: - type: Transform @@ -56372,6 +57870,16 @@ entities: targetPressure: 4500 - type: AtmosPipeColor color: '#00FFFFFF' + - uid: 2427 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -58.5,-32.5 + parent: 34 + - type: GasPressurePump + targetPressure: 225 + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 2456 components: - type: Transform @@ -56402,6 +57910,16 @@ entities: targetPressure: 4500 - type: AtmosPipeColor color: '#03FCD3FF' + - uid: 7765 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -56.5,-30.5 + parent: 34 + - type: GasPressurePump + targetPressure: 4500 + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 7847 components: - type: Transform @@ -56473,16 +57991,6 @@ entities: targetPressure: 4500 - type: AtmosPipeColor color: '#03FCD3FF' - - uid: 14353 - components: - - type: Transform - pos: -46.5,-54.5 - parent: 34 - - uid: 14354 - components: - - type: Transform - pos: -47.5,-54.5 - parent: 34 - proto: GasRecycler entities: - uid: 3795 @@ -56546,7 +58054,7 @@ entities: pos: -14.5,-10.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 803 components: - type: Transform @@ -56554,14 +58062,43 @@ entities: pos: -16.5,-8.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' + - uid: 1052 + components: + - type: Transform + pos: -33.5,-17.5 + parent: 34 + - type: DeviceNetwork + deviceLists: + - 10569 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 2113 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -50.5,-6.5 + parent: 34 + - type: DeviceNetwork + deviceLists: + - 2275 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 2228 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -54.5,0.5 + parent: 34 + - type: AtmosPipeColor + color: '#0335FCFF' - uid: 2666 components: - type: Transform pos: 35.5,-0.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 2965 components: - type: Transform @@ -56572,7 +58109,7 @@ entities: deviceLists: - 9601 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 2986 components: - type: Transform @@ -56583,7 +58120,7 @@ entities: deviceLists: - 9601 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 3724 components: - type: Transform @@ -56591,7 +58128,7 @@ entities: pos: 40.5,-34.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 3864 components: - type: Transform @@ -56602,7 +58139,7 @@ entities: deviceLists: - 5244 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 3897 components: - type: Transform @@ -56613,7 +58150,7 @@ entities: deviceLists: - 5244 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 4155 components: - type: Transform @@ -56624,7 +58161,7 @@ entities: deviceLists: - 2410 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 4391 components: - type: Transform @@ -56635,7 +58172,7 @@ entities: deviceLists: - 5585 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 4449 components: - type: Transform @@ -56646,7 +58183,7 @@ entities: deviceLists: - 5208 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 4672 components: - type: Transform @@ -56657,7 +58194,7 @@ entities: deviceLists: - 2410 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 4677 components: - type: Transform @@ -56668,14 +58205,14 @@ entities: deviceLists: - 9601 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 4769 components: - type: Transform pos: -17.5,-32.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 4783 components: - type: Transform @@ -56683,7 +58220,7 @@ entities: pos: -18.5,-38.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 4849 components: - type: Transform @@ -56693,7 +58230,7 @@ entities: deviceLists: - 7684 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 5137 components: - type: Transform @@ -56701,7 +58238,29 @@ entities: pos: 0.5,-48.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' + - uid: 5914 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -46.5,2.5 + parent: 34 + - type: DeviceNetwork + deviceLists: + - 2275 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5927 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -48.5,2.5 + parent: 34 + - type: DeviceNetwork + deviceLists: + - 2275 + - type: AtmosPipeColor + color: '#0335FCFF' - uid: 6000 components: - type: Transform @@ -56712,7 +58271,7 @@ entities: deviceLists: - 5585 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 6020 components: - type: Transform @@ -56723,7 +58282,7 @@ entities: deviceLists: - 12258 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 6957 components: - type: Transform @@ -56734,14 +58293,14 @@ entities: deviceLists: - 2410 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 7094 components: - type: Transform pos: -38.5,4.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 7164 components: - type: Transform @@ -56752,7 +58311,7 @@ entities: deviceLists: - 5573 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 7665 components: - type: Transform @@ -56763,7 +58322,7 @@ entities: deviceLists: - 13430 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 7677 components: - type: Transform @@ -56773,7 +58332,7 @@ entities: deviceLists: - 2410 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 7772 components: - type: Transform @@ -56784,7 +58343,7 @@ entities: deviceLists: - 11539 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 7843 components: - type: Transform @@ -56792,7 +58351,7 @@ entities: pos: 1.5,-39.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8360 components: - type: Transform @@ -56800,7 +58359,7 @@ entities: pos: -29.5,-37.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8362 components: - type: Transform @@ -56811,7 +58370,7 @@ entities: deviceLists: - 13443 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8363 components: - type: Transform @@ -56819,14 +58378,14 @@ entities: pos: -24.5,-26.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8364 components: - type: Transform pos: -38.5,-29.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8404 components: - type: Transform @@ -56834,7 +58393,7 @@ entities: pos: -45.5,-29.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8409 components: - type: Transform @@ -56842,7 +58401,7 @@ entities: pos: -44.5,-33.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8440 components: - type: Transform @@ -56850,14 +58409,14 @@ entities: pos: -26.5,-23.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8458 components: - type: Transform pos: -16.5,-19.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8463 components: - type: Transform @@ -56865,7 +58424,7 @@ entities: pos: -13.5,-25.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8579 components: - type: Transform @@ -56876,7 +58435,7 @@ entities: deviceLists: - 17 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8610 components: - type: Transform @@ -56884,7 +58443,7 @@ entities: pos: -9.5,-7.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8626 components: - type: Transform @@ -56892,7 +58451,7 @@ entities: pos: -3.5,-19.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8634 components: - type: Transform @@ -56900,7 +58459,7 @@ entities: pos: 3.5,-9.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8642 components: - type: Transform @@ -56908,7 +58467,7 @@ entities: pos: 1.5,-4.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8643 components: - type: Transform @@ -56916,14 +58475,14 @@ entities: pos: 8.5,-5.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8661 components: - type: Transform pos: 9.5,-7.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8663 components: - type: Transform @@ -56931,7 +58490,7 @@ entities: pos: -5.5,-5.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8684 components: - type: Transform @@ -56939,7 +58498,7 @@ entities: pos: -6.5,2.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8685 components: - type: Transform @@ -56950,14 +58509,14 @@ entities: deviceLists: - 2525 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8697 components: - type: Transform pos: -14.5,3.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8698 components: - type: Transform @@ -56969,14 +58528,14 @@ entities: pos: -29.5,1.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8700 components: - type: Transform pos: -18.5,0.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8701 components: - type: Transform @@ -56984,14 +58543,14 @@ entities: pos: -23.5,-3.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8722 components: - type: Transform pos: -0.5,0.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8741 components: - type: Transform @@ -56999,14 +58558,14 @@ entities: pos: 10.5,1.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8751 components: - type: Transform pos: 9.5,10.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8776 components: - type: Transform @@ -57016,7 +58575,7 @@ entities: deviceLists: - 3295 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8779 components: - type: Transform @@ -57024,14 +58583,14 @@ entities: pos: 17.5,3.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8780 components: - type: Transform pos: 17.5,9.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8796 components: - type: Transform @@ -57039,7 +58598,7 @@ entities: pos: 12.5,11.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8804 components: - type: Transform @@ -57047,7 +58606,7 @@ entities: pos: -0.5,-15.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8805 components: - type: Transform @@ -57055,7 +58614,7 @@ entities: pos: 11.5,-10.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8968 components: - type: Transform @@ -57063,7 +58622,7 @@ entities: pos: -5.5,-47.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8977 components: - type: Transform @@ -57071,7 +58630,7 @@ entities: pos: -8.5,-41.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8980 components: - type: Transform @@ -57079,7 +58638,7 @@ entities: pos: 5.5,-45.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8994 components: - type: Transform @@ -57087,14 +58646,14 @@ entities: pos: 0.5,-33.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 9013 components: - type: Transform pos: -0.5,-26.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 9023 components: - type: Transform @@ -57102,28 +58661,28 @@ entities: pos: 7.5,-40.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 9044 components: - type: Transform pos: 3.5,-22.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 9057 components: - type: Transform pos: 0.5,-19.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 9061 components: - type: Transform pos: 5.5,-20.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 9116 components: - type: Transform @@ -57131,110 +58690,40 @@ entities: pos: 31.5,-22.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 9182 components: - type: Transform rot: -1.5707963267948966 rad pos: -24.5,-18.5 parent: 34 + - type: DeviceNetwork + deviceLists: + - 10569 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 9191 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -31.5,-14.5 - parent: 34 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 9201 - components: - - type: Transform - pos: -33.5,-19.5 - parent: 34 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 9234 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -34.5,-3.5 - parent: 34 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 9255 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -46.5,2.5 - parent: 34 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 9256 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -48.5,2.5 - parent: 34 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 9257 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -49.5,-4.5 - parent: 34 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 9258 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -47.5,-4.5 - parent: 34 - - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 9265 components: - type: Transform rot: 3.141592653589793 rad pos: -43.5,-5.5 parent: 34 + - type: DeviceNetwork + deviceLists: + - 2275 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 9266 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -54.5,-1.5 - parent: 34 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 9294 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -49.5,-6.5 - parent: 34 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 9295 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -47.5,-6.5 - parent: 34 - - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 9297 components: - type: Transform rot: 1.5707963267948966 rad pos: -39.5,-7.5 parent: 34 + - type: DeviceNetwork + deviceLists: + - 2350 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 9307 components: - type: Transform @@ -57242,15 +58731,7 @@ entities: pos: -29.5,-11.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 9308 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -33.5,-10.5 - parent: 34 - - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 9313 components: - type: Transform @@ -57258,7 +58739,7 @@ entities: pos: 23.5,-38.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 9346 components: - type: Transform @@ -57266,7 +58747,7 @@ entities: pos: 30.5,-44.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 9469 components: - type: Transform @@ -57274,7 +58755,7 @@ entities: pos: -16.5,-23.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 9470 components: - type: Transform @@ -57282,7 +58763,7 @@ entities: pos: -10.5,-32.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 9594 components: - type: Transform @@ -57293,7 +58774,7 @@ entities: deviceLists: - 2525 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 9595 components: - type: Transform @@ -57304,7 +58785,7 @@ entities: deviceLists: - 3874 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 9609 components: - type: Transform @@ -57314,7 +58795,7 @@ entities: deviceLists: - 2525 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 9614 components: - type: Transform @@ -57325,7 +58806,7 @@ entities: deviceLists: - 13430 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 9782 components: - type: Transform @@ -57333,21 +58814,21 @@ entities: pos: -40.5,2.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 9783 components: - type: Transform pos: -40.5,7.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 10027 components: - type: Transform pos: 22.5,-22.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 10390 components: - type: Transform @@ -57355,7 +58836,7 @@ entities: pos: -51.5,-26.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 10426 components: - type: Transform @@ -57363,7 +58844,7 @@ entities: pos: 8.5,6.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 10467 components: - type: Transform @@ -57371,7 +58852,7 @@ entities: pos: -3.5,-36.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 10560 components: - type: Transform @@ -57379,7 +58860,28 @@ entities: pos: -45.5,-27.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' + - uid: 10836 + components: + - type: Transform + pos: -33.5,-7.5 + parent: 34 + - type: DeviceNetwork + deviceLists: + - 12332 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 10948 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,-6.5 + parent: 34 + - type: DeviceNetwork + deviceLists: + - 12332 + - type: AtmosPipeColor + color: '#0335FCFF' - uid: 11005 components: - type: Transform @@ -57389,7 +58891,7 @@ entities: deviceLists: - 13443 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 11080 components: - type: Transform @@ -57397,7 +58899,7 @@ entities: pos: 19.5,-36.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 11112 components: - type: Transform @@ -57405,7 +58907,7 @@ entities: pos: -34.5,-42.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 11404 components: - type: Transform @@ -57416,7 +58918,7 @@ entities: deviceLists: - 2349 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 11519 components: - type: Transform @@ -57424,7 +58926,7 @@ entities: pos: -39.5,-23.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 11534 components: - type: Transform @@ -57435,7 +58937,7 @@ entities: deviceLists: - 13432 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 11894 components: - type: Transform @@ -57443,22 +58945,14 @@ entities: pos: 1.5,13.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 11906 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,16.5 - parent: 34 - - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 11985 components: - type: Transform pos: -2.5,3.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 12072 components: - type: Transform @@ -57466,7 +58960,7 @@ entities: pos: -36.5,-49.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 12205 components: - type: Transform @@ -57481,8 +58975,11 @@ entities: rot: 3.141592653589793 rad pos: -49.5,-13.5 parent: 34 + - type: DeviceNetwork + deviceLists: + - 2275 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 12220 components: - type: Transform @@ -57490,7 +58987,7 @@ entities: pos: -24.5,-30.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 12368 components: - type: Transform @@ -57501,7 +58998,7 @@ entities: deviceLists: - 9601 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 12457 components: - type: Transform @@ -57512,7 +59009,7 @@ entities: deviceLists: - 7684 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 12464 components: - type: Transform @@ -57523,7 +59020,7 @@ entities: deviceLists: - 7684 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 12475 components: - type: Transform @@ -57534,7 +59031,7 @@ entities: deviceLists: - 8028 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 12476 components: - type: Transform @@ -57545,7 +59042,7 @@ entities: deviceLists: - 8028 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 12480 components: - type: Transform @@ -57556,7 +59053,7 @@ entities: deviceLists: - 13672 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 12483 components: - type: Transform @@ -57567,7 +59064,7 @@ entities: deviceLists: - 13672 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 12485 components: - type: Transform @@ -57578,7 +59075,7 @@ entities: deviceLists: - 13672 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 12490 components: - type: Transform @@ -57589,7 +59086,7 @@ entities: deviceLists: - 7683 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 12534 components: - type: Transform @@ -57600,7 +59097,7 @@ entities: deviceLists: - 6342 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 12668 components: - type: Transform @@ -57608,7 +59105,7 @@ entities: pos: -12.5,-5.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 12843 components: - type: Transform @@ -57619,7 +59116,7 @@ entities: - 10611 - 9601 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 12860 components: - type: Transform @@ -57627,7 +59124,7 @@ entities: pos: -7.5,11.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 12942 components: - type: Transform @@ -57638,7 +59135,7 @@ entities: deviceLists: - 17 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 12966 components: - type: Transform @@ -57646,7 +59143,7 @@ entities: pos: -12.5,-40.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13104 components: - type: Transform @@ -57654,7 +59151,7 @@ entities: pos: 13.5,16.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13126 components: - type: Transform @@ -57662,7 +59159,7 @@ entities: pos: 44.5,-15.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13190 components: - type: Transform @@ -57670,7 +59167,7 @@ entities: pos: 26.5,-38.5 parent: 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13214 components: - type: Transform @@ -57682,7 +59179,7 @@ entities: - 13432 - 13418 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13241 components: - type: Transform @@ -57693,7 +59190,7 @@ entities: deviceLists: - 5208 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13245 components: - type: Transform @@ -57704,7 +59201,7 @@ entities: deviceLists: - 2525 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13448 components: - type: Transform @@ -57714,7 +59211,7 @@ entities: deviceLists: - 13671 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13451 components: - type: Transform @@ -57725,7 +59222,7 @@ entities: deviceLists: - 13671 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13452 components: - type: Transform @@ -57736,7 +59233,7 @@ entities: deviceLists: - 10291 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13454 components: - type: Transform @@ -57747,7 +59244,7 @@ entities: deviceLists: - 13672 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13496 components: - type: Transform @@ -57758,7 +59255,7 @@ entities: deviceLists: - 6342 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13497 components: - type: Transform @@ -57768,7 +59265,7 @@ entities: deviceLists: - 6342 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14279 components: - type: Transform @@ -57802,8 +59299,72 @@ entities: - 14276 - type: AtmosPipeColor color: '#0000FFFF' + - uid: 14576 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,11.5 + parent: 34 + - type: DeviceNetwork + deviceLists: + - 14538 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14577 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,11.5 + parent: 34 + - type: DeviceNetwork + deviceLists: + - 14538 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14588 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,16.5 + parent: 34 + - type: DeviceNetwork + deviceLists: + - 14538 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14615 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,11.5 + parent: 34 + - uid: 14616 + components: + - type: Transform + pos: 32.5,17.5 + parent: 34 + - uid: 14769 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,-14.5 + parent: 34 + - type: DeviceNetwork + deviceLists: + - 10569 - proto: GasVentScrubber entities: + - uid: 600 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -30.5,-18.5 + parent: 34 + - type: DeviceNetwork + deviceLists: + - 10569 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 831 components: - type: Transform @@ -57811,7 +59372,7 @@ entities: pos: -13.5,-4.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 1101 components: - type: Transform @@ -57822,7 +59383,18 @@ entities: deviceLists: - 9601 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' + - uid: 1163 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -34.5,-19.5 + parent: 34 + - type: DeviceNetwork + deviceLists: + - 10569 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 1411 components: - type: Transform @@ -57833,7 +59405,7 @@ entities: deviceLists: - 5244 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 1818 components: - type: Transform @@ -57844,28 +59416,42 @@ entities: deviceLists: - 11539 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 1914 components: - type: Transform pos: -17.5,-6.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 1974 components: - type: Transform pos: -19.5,-19.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' + - uid: 2257 + components: + - type: Transform + pos: -50.5,-12.5 + parent: 34 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 2299 + components: + - type: Transform + pos: 6.5,18.5 + parent: 34 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 2451 components: - type: Transform pos: -33.5,-35.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 2601 components: - type: Transform @@ -57873,7 +59459,7 @@ entities: pos: -34.5,-46.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 2936 components: - type: Transform @@ -57881,7 +59467,7 @@ entities: pos: 9.5,-42.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 3881 components: - type: Transform @@ -57892,7 +59478,7 @@ entities: deviceLists: - 5244 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 4079 components: - type: Transform @@ -57903,7 +59489,7 @@ entities: deviceLists: - 2410 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 4159 components: - type: Transform @@ -57914,7 +59500,7 @@ entities: deviceLists: - 2410 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 4472 components: - type: Transform @@ -57925,7 +59511,7 @@ entities: deviceLists: - 5585 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 4957 components: - type: Transform @@ -57936,7 +59522,7 @@ entities: deviceLists: - 12258 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 5850 components: - type: Transform @@ -57944,7 +59530,7 @@ entities: pos: -40.5,1.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 5851 components: - type: Transform @@ -57952,7 +59538,7 @@ entities: pos: -40.5,8.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 5915 components: - type: Transform @@ -57960,7 +59546,7 @@ entities: pos: 4.5,-5.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 5997 components: - type: Transform @@ -57971,7 +59557,7 @@ entities: deviceLists: - 5585 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 6096 components: - type: Transform @@ -57982,7 +59568,7 @@ entities: deviceLists: - 8028 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 6113 components: - type: Transform @@ -57990,14 +59576,14 @@ entities: pos: 9.5,-5.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 6236 components: - type: Transform pos: 33.5,-0.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 6554 components: - type: Transform @@ -58005,7 +59591,7 @@ entities: pos: 27.5,-38.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 6873 components: - type: Transform @@ -58013,7 +59599,7 @@ entities: pos: 1.5,-40.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 7185 components: - type: Transform @@ -58024,7 +59610,7 @@ entities: deviceLists: - 5573 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 7667 components: - type: Transform @@ -58035,14 +59621,14 @@ entities: deviceLists: - 13430 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 7973 components: - type: Transform pos: -16.5,0.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 7981 components: - type: Transform @@ -58050,28 +59636,28 @@ entities: pos: -26.5,-1.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 7987 components: - type: Transform pos: -30.5,1.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 7988 components: - type: Transform pos: -23.5,2.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 7989 components: - type: Transform pos: -17.5,3.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 8195 components: - type: Transform @@ -58082,7 +59668,7 @@ entities: deviceLists: - 2349 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 8424 components: - type: Transform @@ -58090,7 +59676,7 @@ entities: pos: -51.5,-25.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 8817 components: - type: Transform @@ -58100,7 +59686,7 @@ entities: deviceLists: - 2525 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 8836 components: - type: Transform @@ -58111,7 +59697,7 @@ entities: deviceLists: - 6342 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 8920 components: - type: Transform @@ -58122,7 +59708,7 @@ entities: deviceLists: - 2525 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 8936 components: - type: Transform @@ -58130,7 +59716,7 @@ entities: pos: 37.5,1.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 8993 components: - type: Transform @@ -58138,7 +59724,7 @@ entities: pos: -0.5,-32.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9010 components: - type: Transform @@ -58146,7 +59732,7 @@ entities: pos: 0.5,-28.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9372 components: - type: Transform @@ -58154,7 +59740,7 @@ entities: pos: -43.5,-33.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9373 components: - type: Transform @@ -58162,7 +59748,7 @@ entities: pos: -44.5,-31.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9374 components: - type: Transform @@ -58170,7 +59756,7 @@ entities: pos: -40.5,-31.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9414 components: - type: Transform @@ -58180,15 +59766,7 @@ entities: deviceLists: - 13443 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9445 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -29.5,-18.5 - parent: 34 - - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9456 components: - type: Transform @@ -58196,14 +59774,14 @@ entities: pos: -23.5,-26.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9460 components: - type: Transform pos: -22.5,-18.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9496 components: - type: Transform @@ -58211,7 +59789,7 @@ entities: pos: -8.5,-25.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9510 components: - type: Transform @@ -58219,14 +59797,14 @@ entities: pos: -16.5,-10.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9522 components: - type: Transform pos: -9.5,-8.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9534 components: - type: Transform @@ -58234,7 +59812,7 @@ entities: pos: -5.5,-6.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9545 components: - type: Transform @@ -58242,7 +59820,7 @@ entities: pos: 0.5,-9.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9546 components: - type: Transform @@ -58250,7 +59828,7 @@ entities: pos: 8.5,-7.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9562 components: - type: Transform @@ -58258,7 +59836,7 @@ entities: pos: 0.5,-18.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9571 components: - type: Transform @@ -58266,21 +59844,21 @@ entities: pos: -3.5,-20.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9590 components: - type: Transform pos: 4.5,-22.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9593 components: - type: Transform pos: 6.5,-20.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9598 components: - type: Transform @@ -58291,7 +59869,7 @@ entities: deviceLists: - 2525 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9599 components: - type: Transform @@ -58302,14 +59880,14 @@ entities: deviceLists: - 3874 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9610 components: - type: Transform pos: 5.5,-35.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9613 components: - type: Transform @@ -58319,7 +59897,7 @@ entities: deviceLists: - 13430 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9615 components: - type: Transform @@ -58330,7 +59908,7 @@ entities: deviceLists: - 10602 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9620 components: - type: Transform @@ -58341,7 +59919,7 @@ entities: deviceLists: - 5208 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9637 components: - type: Transform @@ -58352,7 +59930,7 @@ entities: deviceLists: - 2525 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9638 components: - type: Transform @@ -58363,7 +59941,7 @@ entities: deviceLists: - 5208 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9659 components: - type: Transform @@ -58371,7 +59949,7 @@ entities: pos: -7.5,-47.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9660 components: - type: Transform @@ -58379,7 +59957,7 @@ entities: pos: -8.5,-43.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9686 components: - type: Transform @@ -58387,7 +59965,7 @@ entities: pos: 0.5,-46.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9687 components: - type: Transform @@ -58402,54 +59980,36 @@ entities: pos: 3.5,0.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9764 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -30.5,-11.5 - parent: 34 - - type: AtmosPipeColor - color: '#F84000FF' - - uid: 9765 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -33.5,-9.5 - parent: 34 - - type: AtmosPipeColor - color: '#F84000FF' - - uid: 9766 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -35.5,-4.5 - parent: 34 - - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9777 components: - type: Transform pos: -36.5,2.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9799 components: - type: Transform rot: 1.5707963267948966 rad pos: -39.5,-3.5 parent: 34 + - type: DeviceNetwork + deviceLists: + - 2350 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9800 components: - type: Transform rot: 3.141592653589793 rad pos: -41.5,-3.5 parent: 34 + - type: DeviceNetwork + deviceLists: + - 2275 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9805 components: - type: Transform @@ -58457,51 +60017,48 @@ entities: pos: -54.5,-0.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9822 components: - type: Transform pos: -44.5,2.5 parent: 34 + - type: DeviceNetwork + deviceLists: + - 2275 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9823 - components: - - type: Transform - pos: -48.5,1.5 - parent: 34 - - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9824 components: - type: Transform rot: 3.141592653589793 rad pos: -46.5,-4.5 parent: 34 + - type: DeviceNetwork + deviceLists: + - 2275 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9825 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -49.5,-3.5 - parent: 34 - - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9844 components: - type: Transform pos: -46.5,-6.5 parent: 34 + - type: DeviceNetwork + deviceLists: + - 2275 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9845 components: - type: Transform pos: -51.5,-6.5 parent: 34 + - type: DeviceNetwork + deviceLists: + - 2275 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9875 components: - type: Transform @@ -58509,7 +60066,7 @@ entities: pos: 11.5,1.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9886 components: - type: Transform @@ -58517,21 +60074,21 @@ entities: pos: 10.5,7.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9887 components: - type: Transform pos: 10.5,11.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9892 components: - type: Transform pos: 17.5,6.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9894 components: - type: Transform @@ -58539,7 +60096,7 @@ entities: pos: 16.5,9.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9902 components: - type: Transform @@ -58547,7 +60104,7 @@ entities: pos: 12.5,10.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9904 components: - type: Transform @@ -58558,7 +60115,7 @@ entities: deviceLists: - 3295 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9925 components: - type: Transform @@ -58566,14 +60123,14 @@ entities: pos: 11.5,-12.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 10055 components: - type: Transform pos: 11.5,-21.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 10094 components: - type: Transform @@ -58581,7 +60138,7 @@ entities: pos: 25.5,-40.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 10098 components: - type: Transform @@ -58589,14 +60146,14 @@ entities: pos: 29.5,-44.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 10218 components: - type: Transform pos: 28.5,-22.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 10466 components: - type: Transform @@ -58604,7 +60161,7 @@ entities: pos: -3.5,-35.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 10672 components: - type: Transform @@ -58612,25 +60169,39 @@ entities: pos: -39.5,-20.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 11250 + color: '#FF1212FF' + - uid: 10946 components: - type: Transform - pos: -39.5,-25.5 + rot: 1.5707963267948966 rad + pos: -35.5,-8.5 parent: 34 - type: DeviceNetwork deviceLists: - - 13443 + - 12332 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 11274 + color: '#FF1212FF' + - uid: 10953 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -34.5,-17.5 + rot: 1.5707963267948966 rad + pos: -29.5,-6.5 + parent: 34 + - type: DeviceNetwork + deviceLists: + - 12332 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 11250 + components: + - type: Transform + pos: -39.5,-25.5 parent: 34 + - type: DeviceNetwork + deviceLists: + - 13443 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 11321 components: - type: Transform @@ -58638,7 +60209,7 @@ entities: pos: 19.5,-39.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 11355 components: - type: Transform @@ -58649,7 +60220,7 @@ entities: deviceLists: - 13432 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 11356 components: - type: Transform @@ -58661,7 +60232,7 @@ entities: - 13432 - 13418 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 11527 components: - type: Transform @@ -58669,7 +60240,7 @@ entities: pos: -44.5,-27.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 11575 components: - type: Transform @@ -58677,14 +60248,14 @@ entities: pos: -15.5,-34.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 11830 components: - type: Transform pos: 9.5,14.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 11902 components: - type: Transform @@ -58692,7 +60263,7 @@ entities: pos: -2.5,13.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 11905 components: - type: Transform @@ -58700,14 +60271,14 @@ entities: pos: -19.5,-23.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 11986 components: - type: Transform pos: -1.5,3.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 12015 components: - type: Transform @@ -58715,7 +60286,7 @@ entities: pos: -8.5,-1.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 12141 components: - type: Transform @@ -58725,7 +60296,7 @@ entities: deviceLists: - 7684 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 12168 components: - type: Transform @@ -58736,7 +60307,7 @@ entities: deviceLists: - 7684 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 12173 components: - type: Transform @@ -58747,7 +60318,7 @@ entities: deviceLists: - 7684 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 12177 components: - type: Transform @@ -58758,7 +60329,7 @@ entities: deviceLists: - 7683 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 12186 components: - type: Transform @@ -58768,7 +60339,7 @@ entities: deviceLists: - 10291 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 12187 components: - type: Transform @@ -58779,7 +60350,7 @@ entities: deviceLists: - 13672 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 12204 components: - type: Transform @@ -58787,7 +60358,7 @@ entities: pos: -56.5,-11.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 12219 components: - type: Transform @@ -58795,7 +60366,7 @@ entities: pos: -25.5,-29.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 12226 components: - type: Transform @@ -58803,7 +60374,7 @@ entities: pos: -29.5,-31.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 12358 components: - type: Transform @@ -58811,7 +60382,7 @@ entities: pos: -16.5,-38.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 12396 components: - type: Transform @@ -58822,7 +60393,7 @@ entities: deviceLists: - 2410 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 12401 components: - type: Transform @@ -58833,7 +60404,7 @@ entities: deviceLists: - 2410 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 12402 components: - type: Transform @@ -58844,7 +60415,7 @@ entities: deviceLists: - 13672 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 12421 components: - type: Transform @@ -58852,7 +60423,7 @@ entities: pos: 7.5,-41.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 12431 components: - type: Transform @@ -58863,7 +60434,7 @@ entities: deviceLists: - 13672 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 12477 components: - type: Transform @@ -58874,7 +60445,7 @@ entities: deviceLists: - 8028 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 12844 components: - type: Transform @@ -58885,7 +60456,7 @@ entities: - 10611 - 9601 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 12879 components: - type: Transform @@ -58893,7 +60464,7 @@ entities: pos: -5.5,8.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 12889 components: - type: Transform @@ -58901,7 +60472,7 @@ entities: pos: -13.5,-40.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 12931 components: - type: Transform @@ -58909,15 +60480,7 @@ entities: pos: -9.5,-34.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13106 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,15.5 - parent: 34 - - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13127 components: - type: Transform @@ -58925,7 +60488,7 @@ entities: pos: 43.5,-15.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13294 components: - type: Transform @@ -58933,7 +60496,7 @@ entities: pos: -9.5,4.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13449 components: - type: Transform @@ -58944,7 +60507,7 @@ entities: deviceLists: - 13671 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13450 components: - type: Transform @@ -58955,7 +60518,7 @@ entities: deviceLists: - 13671 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13453 components: - type: Transform @@ -58966,7 +60529,7 @@ entities: deviceLists: - 13672 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13498 components: - type: Transform @@ -58977,7 +60540,7 @@ entities: deviceLists: - 6342 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13499 components: - type: Transform @@ -58987,22 +60550,80 @@ entities: deviceLists: - 6342 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14073 + color: '#FF1212FF' + - uid: 14128 components: - type: Transform - pos: -50.5,-12.5 + rot: 1.5707963267948966 rad + pos: 40.5,-35.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14128 + color: '#FF1212FF' + - uid: 14377 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,12.5 + parent: 34 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14575 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,11.5 + parent: 34 + - type: DeviceNetwork + deviceLists: + - 14538 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14578 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,11.5 + parent: 34 + - type: DeviceNetwork + deviceLists: + - 14538 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14589 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,14.5 + parent: 34 + - type: DeviceNetwork + deviceLists: + - 14538 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14638 + components: + - type: Transform + pos: 31.5,17.5 + parent: 34 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14639 components: - type: Transform rot: 1.5707963267948966 rad - pos: 40.5,-35.5 + pos: 26.5,9.5 parent: 34 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' + - uid: 14770 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,-13.5 + parent: 34 + - type: DeviceNetwork + deviceLists: + - 10569 - proto: GasVolumePump entities: - uid: 63 @@ -59028,18 +60649,6 @@ entities: parent: 34 - type: GasVolumePump transferRate: 100 - - uid: 1516 - components: - - type: MetaData - name: throttle pump - - type: Transform - rot: 3.141592653589793 rad - pos: -54.5,-31.5 - parent: 34 - - type: GasVolumePump - transferRate: 1 - - type: AtmosPipeColor - color: '#FF0000FF' - uid: 1565 components: - type: Transform @@ -59058,16 +60667,6 @@ entities: transferRate: 15 - type: AtmosPipeColor color: '#444444FF' - - uid: 8595 - components: - - type: MetaData - name: throttle pump - - type: Transform - rot: 1.5707963267948966 rad - pos: -56.5,-28.5 - parent: 34 - - type: GasVolumePump - transferRate: 3 - uid: 11487 components: - type: Transform @@ -59129,16 +60728,6 @@ entities: - type: Transform pos: -45.5,-49.5 parent: 34 - - uid: 14355 - components: - - type: Transform - pos: -46.5,-52.5 - parent: 34 - - uid: 14356 - components: - - type: Transform - pos: -47.5,-52.5 - parent: 34 - proto: Gauze entities: - uid: 1371 @@ -59165,6 +60754,13 @@ entities: - type: Transform pos: 62.5,-26.5 parent: 34 +- proto: Girder + entities: + - uid: 14741 + components: + - type: Transform + pos: -65.5,-15.5 + parent: 34 - proto: GlassBoxLaserFilled entities: - uid: 11737 @@ -59174,10 +60770,18 @@ entities: parent: 34 - proto: GlimmerProber entities: - - uid: 37 + - uid: 2102 components: - type: Transform - pos: -33.5,-8.5 + pos: -48.5,-6.5 + parent: 34 +- proto: GrapeSeeds + entities: + - uid: 13506 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -44.225925,7.184178 parent: 34 - proto: GravityGenerator entities: @@ -59198,16 +60802,6 @@ entities: - type: Transform pos: -16.5,5.5 parent: 34 - - uid: 36 - components: - - type: Transform - pos: -32.5,-4.5 - parent: 34 - - uid: 39 - components: - - type: Transform - pos: -32.5,-3.5 - parent: 34 - uid: 52 components: - type: Transform @@ -59408,55 +61002,11 @@ entities: - type: Transform pos: -2.5,-19.5 parent: 34 - - uid: 458 - components: - - type: Transform - pos: -29.5,-2.5 - parent: 34 - - uid: 459 - components: - - type: Transform - pos: -30.5,-2.5 - parent: 34 - - uid: 463 - components: - - type: Transform - pos: -27.5,-8.5 - parent: 34 - - uid: 491 - components: - - type: Transform - pos: -27.5,-7.5 - parent: 34 - - uid: 502 - components: - - type: Transform - pos: -28.5,-3.5 - parent: 34 - - uid: 503 - components: - - type: Transform - pos: -28.5,-4.5 - parent: 34 - - uid: 504 - components: - - type: Transform - pos: -28.5,-5.5 - parent: 34 - - uid: 506 - components: - - type: Transform - pos: -25.5,-9.5 - parent: 34 - - uid: 534 - components: - - type: Transform - pos: -36.5,-16.5 - parent: 34 - - uid: 539 + - uid: 528 components: - type: Transform - pos: -28.5,-20.5 + rot: 1.5707963267948966 rad + pos: -30.5,-20.5 parent: 34 - uid: 543 components: @@ -59473,41 +61023,6 @@ entities: - type: Transform pos: -29.5,-20.5 parent: 34 - - uid: 569 - components: - - type: Transform - pos: -32.5,-20.5 - parent: 34 - - uid: 570 - components: - - type: Transform - pos: -35.5,-20.5 - parent: 34 - - uid: 571 - components: - - type: Transform - pos: -33.5,-20.5 - parent: 34 - - uid: 575 - components: - - type: Transform - pos: -36.5,-18.5 - parent: 34 - - uid: 576 - components: - - type: Transform - pos: -36.5,-17.5 - parent: 34 - - uid: 597 - components: - - type: Transform - pos: -32.5,-9.5 - parent: 34 - - uid: 598 - components: - - type: Transform - pos: -32.5,-11.5 - parent: 34 - uid: 631 components: - type: Transform @@ -59568,11 +61083,6 @@ entities: - type: Transform pos: -6.5,-32.5 parent: 34 - - uid: 672 - components: - - type: Transform - pos: 27.5,13.5 - parent: 34 - uid: 700 components: - type: Transform @@ -59598,6 +61108,17 @@ entities: - type: Transform pos: -11.5,-4.5 parent: 34 + - uid: 949 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -47.5,-10.5 + parent: 34 + - uid: 958 + components: + - type: Transform + pos: -27.5,-2.5 + parent: 34 - uid: 982 components: - type: Transform @@ -59879,10 +61400,11 @@ entities: - type: Transform pos: 15.5,-6.5 parent: 34 - - uid: 1861 + - uid: 1863 components: - type: Transform - pos: -46.5,-56.5 + rot: 1.5707963267948966 rad + pos: 21.5,17.5 parent: 34 - uid: 1871 components: @@ -59934,6 +61456,12 @@ entities: - type: Transform pos: -29.5,0.5 parent: 34 + - uid: 2025 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,17.5 + parent: 34 - uid: 2034 components: - type: Transform @@ -59954,20 +61482,31 @@ entities: - type: Transform pos: -40.5,-6.5 parent: 34 - - uid: 2095 + - uid: 2049 components: - type: Transform - pos: -61.5,-16.5 + rot: 3.141592653589793 rad + pos: -49.5,-2.5 parent: 34 - - uid: 2100 + - uid: 2051 components: - type: Transform - pos: -46.5,-2.5 + pos: -47.5,-3.5 parent: 34 - - uid: 2101 + - uid: 2061 components: - type: Transform - pos: -45.5,-2.5 + pos: 28.5,17.5 + parent: 34 + - uid: 2066 + components: + - type: Transform + pos: -45.5,0.5 + parent: 34 + - uid: 2095 + components: + - type: Transform + pos: -61.5,-16.5 parent: 34 - uid: 2137 components: @@ -59979,30 +61518,57 @@ entities: - type: Transform pos: -60.5,-17.5 parent: 34 - - uid: 2175 + - uid: 2177 components: - type: Transform - pos: -43.5,-8.5 + pos: -41.5,-2.5 parent: 34 - - uid: 2177 + - uid: 2193 components: - type: Transform - pos: -41.5,-2.5 + pos: -40.5,-9.5 + parent: 34 + - uid: 2194 + components: + - type: Transform + pos: -40.5,-12.5 + parent: 34 + - uid: 2195 + components: + - type: Transform + pos: -43.5,-1.5 + parent: 34 + - uid: 2227 + components: + - type: Transform + pos: -47.5,-4.5 + parent: 34 + - uid: 2250 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,-46.5 + parent: 34 + - uid: 2251 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,-46.5 parent: 34 - uid: 2284 components: - type: Transform pos: 44.5,-17.5 parent: 34 - - uid: 2289 + - uid: 2287 components: - type: Transform - pos: -34.5,-24.5 + pos: 25.5,17.5 parent: 34 - - uid: 2291 + - uid: 2289 components: - type: Transform - pos: -35.5,-24.5 + pos: -34.5,-24.5 parent: 34 - uid: 2305 components: @@ -60064,6 +61630,11 @@ entities: - type: Transform pos: -3.5,-30.5 parent: 34 + - uid: 2759 + components: + - type: Transform + pos: 29.5,17.5 + parent: 34 - uid: 2817 components: - type: Transform @@ -60134,6 +61705,17 @@ entities: - type: Transform pos: 7.5,-25.5 parent: 34 + - uid: 3356 + components: + - type: Transform + pos: 27.5,17.5 + parent: 34 + - uid: 3363 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,17.5 + parent: 34 - uid: 3386 components: - type: Transform @@ -60299,11 +61881,6 @@ entities: - type: Transform pos: 45.5,10.5 parent: 34 - - uid: 3987 - components: - - type: Transform - pos: 22.5,-44.5 - parent: 34 - uid: 4001 components: - type: Transform @@ -60484,11 +62061,6 @@ entities: - type: Transform pos: 39.5,-36.5 parent: 34 - - uid: 4333 - components: - - type: Transform - pos: 21.5,-44.5 - parent: 34 - uid: 4335 components: - type: Transform @@ -60519,11 +62091,6 @@ entities: - type: Transform pos: 44.5,12.5 parent: 34 - - uid: 4493 - components: - - type: Transform - pos: 20.5,-44.5 - parent: 34 - uid: 4502 components: - type: Transform @@ -60584,6 +62151,11 @@ entities: - type: Transform pos: 37.5,7.5 parent: 34 + - uid: 4630 + components: + - type: Transform + pos: 33.5,19.5 + parent: 34 - uid: 4637 components: - type: Transform @@ -60629,25 +62201,20 @@ entities: - type: Transform pos: 35.5,-15.5 parent: 34 - - uid: 4937 - components: - - type: Transform - pos: 18.5,12.5 - parent: 34 - - uid: 4938 + - uid: 4963 components: - type: Transform - pos: 18.5,11.5 + pos: -48.5,11.5 parent: 34 - - uid: 4962 + - uid: 4964 components: - type: Transform - pos: 31.5,9.5 + pos: -46.5,11.5 parent: 34 - - uid: 4963 + - uid: 4986 components: - type: Transform - pos: 32.5,9.5 + pos: 26.5,17.5 parent: 34 - uid: 5000 components: @@ -60674,10 +62241,15 @@ entities: - type: Transform pos: 51.5,-21.5 parent: 34 + - uid: 5059 + components: + - type: Transform + pos: -47.5,11.5 + parent: 34 - uid: 5061 components: - type: Transform - pos: -44.5,6.5 + pos: -44.5,11.5 parent: 34 - uid: 5145 components: @@ -60946,6 +62518,11 @@ entities: - type: Transform pos: -30.5,16.5 parent: 34 + - uid: 5631 + components: + - type: Transform + pos: -45.5,11.5 + parent: 34 - uid: 5730 components: - type: Transform @@ -60966,20 +62543,16 @@ entities: - type: Transform pos: -20.5,6.5 parent: 34 - - uid: 5843 - components: - - type: Transform - pos: -7.5,16.5 - parent: 34 - - uid: 5863 + - uid: 5810 components: - type: Transform - pos: -45.5,6.5 + rot: 3.141592653589793 rad + pos: 20.5,-46.5 parent: 34 - - uid: 5864 + - uid: 5843 components: - type: Transform - pos: -46.5,6.5 + pos: -7.5,16.5 parent: 34 - uid: 5916 components: @@ -60991,6 +62564,11 @@ entities: - type: Transform pos: -34.5,0.5 parent: 34 + - uid: 5935 + components: + - type: Transform + pos: -44.5,0.5 + parent: 34 - uid: 6023 components: - type: Transform @@ -61011,6 +62589,12 @@ entities: - type: Transform pos: -60.5,-27.5 parent: 34 + - uid: 6165 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,-20.5 + parent: 34 - uid: 6178 components: - type: Transform @@ -61031,16 +62615,6 @@ entities: - type: Transform pos: 14.5,12.5 parent: 34 - - uid: 6200 - components: - - type: Transform - pos: 15.5,15.5 - parent: 34 - - uid: 6201 - components: - - type: Transform - pos: 15.5,14.5 - parent: 34 - uid: 6215 components: - type: Transform @@ -61051,6 +62625,12 @@ entities: - type: Transform pos: -58.5,-5.5 parent: 34 + - uid: 6225 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,-24.5 + parent: 34 - uid: 6228 components: - type: Transform @@ -61738,26 +63318,6 @@ entities: - type: Transform pos: 50.5,-14.5 parent: 34 - - uid: 6506 - components: - - type: Transform - pos: 36.5,11.5 - parent: 34 - - uid: 6508 - components: - - type: Transform - pos: 37.5,12.5 - parent: 34 - - uid: 6509 - components: - - type: Transform - pos: 38.5,12.5 - parent: 34 - - uid: 6510 - components: - - type: Transform - pos: 39.5,12.5 - parent: 34 - uid: 6511 components: - type: Transform @@ -61778,11 +63338,6 @@ entities: - type: Transform pos: 40.5,9.5 parent: 34 - - uid: 6516 - components: - - type: Transform - pos: 31.5,17.5 - parent: 34 - uid: 6517 components: - type: Transform @@ -61793,65 +63348,21 @@ entities: - type: Transform pos: 46.5,12.5 parent: 34 - - uid: 6519 - components: - - type: Transform - pos: 32.5,17.5 - parent: 34 - uid: 6520 components: - type: Transform pos: 48.5,11.5 parent: 34 - - uid: 6521 - components: - - type: Transform - pos: 32.5,16.5 - parent: 34 - - uid: 6522 - components: - - type: Transform - pos: 21.5,17.5 - parent: 34 - - uid: 6523 - components: - - type: Transform - pos: 22.5,17.5 - parent: 34 - - uid: 6526 - components: - - type: Transform - pos: 25.5,17.5 - parent: 34 - uid: 6527 components: - type: Transform - pos: 26.5,17.5 - parent: 34 - - uid: 6528 - components: - - type: Transform - pos: 23.5,17.5 - parent: 34 - - uid: 6529 - components: - - type: Transform - pos: 24.5,17.5 - parent: 34 - - uid: 6530 - components: - - type: Transform - pos: 28.5,17.5 - parent: 34 - - uid: 6531 - components: - - type: Transform - pos: 29.5,17.5 + rot: 3.141592653589793 rad + pos: 15.5,15.5 parent: 34 - - uid: 6532 + - uid: 6535 components: - type: Transform - pos: 27.5,17.5 + pos: 20.5,20.5 parent: 34 - uid: 6536 components: @@ -61868,6 +63379,11 @@ entities: - type: Transform pos: 24.5,-15.5 parent: 34 + - uid: 6601 + components: + - type: Transform + pos: -47.5,1.5 + parent: 34 - uid: 6678 components: - type: Transform @@ -61888,6 +63404,11 @@ entities: - type: Transform pos: 51.5,-3.5 parent: 34 + - uid: 6709 + components: + - type: Transform + pos: 36.5,12.5 + parent: 34 - uid: 6934 components: - type: Transform @@ -61898,16 +63419,41 @@ entities: - type: Transform pos: 18.5,17.5 parent: 34 + - uid: 7232 + components: + - type: Transform + pos: -36.5,-19.5 + parent: 34 - uid: 7235 components: - type: Transform pos: 9.5,-52.5 parent: 34 + - uid: 7396 + components: + - type: Transform + pos: -36.5,-18.5 + parent: 34 - uid: 7408 components: - type: Transform pos: -11.5,-48.5 parent: 34 + - uid: 7637 + components: + - type: Transform + pos: 18.5,20.5 + parent: 34 + - uid: 7639 + components: + - type: Transform + pos: 50.5,-46.5 + parent: 34 + - uid: 7642 + components: + - type: Transform + pos: 52.5,-46.5 + parent: 34 - uid: 7806 components: - type: Transform @@ -61943,6 +63489,16 @@ entities: - type: Transform pos: 40.5,11.5 parent: 34 + - uid: 8260 + components: + - type: Transform + pos: -33.5,-20.5 + parent: 34 + - uid: 8261 + components: + - type: Transform + pos: -32.5,-20.5 + parent: 34 - uid: 8288 components: - type: Transform @@ -61988,6 +63544,11 @@ entities: - type: Transform pos: -5.5,-55.5 parent: 34 + - uid: 9756 + components: + - type: Transform + pos: -28.5,-2.5 + parent: 34 - uid: 9856 components: - type: Transform @@ -62021,11 +63582,21 @@ entities: rot: 3.141592653589793 rad pos: -49.5,-11.5 parent: 34 + - uid: 10358 + components: + - type: Transform + pos: 36.5,11.5 + parent: 34 - uid: 10458 components: - type: Transform pos: -41.5,-19.5 parent: 34 + - uid: 10481 + components: + - type: Transform + pos: 49.5,-46.5 + parent: 34 - uid: 10489 components: - type: Transform @@ -62061,15 +63632,10 @@ entities: - type: Transform pos: 11.5,-49.5 parent: 34 - - uid: 10621 - components: - - type: Transform - pos: 26.5,13.5 - parent: 34 - - uid: 10624 + - uid: 10820 components: - type: Transform - pos: 25.5,13.5 + pos: 51.5,-46.5 parent: 34 - uid: 10891 components: @@ -62102,11 +63668,6 @@ entities: rot: 3.141592653589793 rad pos: 20.5,-38.5 parent: 34 - - uid: 11199 - components: - - type: Transform - pos: 21.5,13.5 - parent: 34 - uid: 11208 components: - type: Transform @@ -62628,81 +64189,16 @@ entities: - type: Transform pos: 46.5,-15.5 parent: 34 - - uid: 13078 - components: - - type: Transform - pos: 20.5,16.5 - parent: 34 - - uid: 13079 - components: - - type: Transform - pos: 20.5,15.5 - parent: 34 - - uid: 13080 - components: - - type: Transform - pos: 20.5,14.5 - parent: 34 - uid: 13086 components: - type: Transform pos: 17.5,20.5 parent: 34 - - uid: 13093 - components: - - type: Transform - pos: 19.5,19.5 - parent: 34 - - uid: 13095 - components: - - type: Transform - pos: 19.5,17.5 - parent: 34 - uid: 13098 components: - type: Transform pos: 16.5,17.5 parent: 34 - - uid: 13111 - components: - - type: Transform - pos: 21.5,19.5 - parent: 34 - - uid: 13136 - components: - - type: Transform - pos: 22.5,18.5 - parent: 34 - - uid: 13149 - components: - - type: Transform - pos: 16.5,20.5 - parent: 34 - - uid: 13208 - components: - - type: Transform - pos: 53.5,-45.5 - parent: 34 - - uid: 13217 - components: - - type: Transform - pos: 52.5,-45.5 - parent: 34 - - uid: 13218 - components: - - type: Transform - pos: 50.5,-45.5 - parent: 34 - - uid: 13221 - components: - - type: Transform - pos: 53.5,-42.5 - parent: 34 - - uid: 13224 - components: - - type: Transform - pos: 51.5,-45.5 - parent: 34 - uid: 13317 components: - type: Transform @@ -62907,10 +64403,15 @@ entities: - type: Transform pos: -49.5,-56.5 parent: 34 + - uid: 13848 + components: + - type: Transform + pos: 35.5,16.5 + parent: 34 - uid: 13850 components: - type: Transform - pos: 49.5,-45.5 + pos: 35.5,18.5 parent: 34 - uid: 13854 components: @@ -63059,6 +64560,11 @@ entities: - type: Transform pos: -10.5,1.5 parent: 34 + - uid: 14122 + components: + - type: Transform + pos: 35.5,17.5 + parent: 34 - uid: 14207 components: - type: Transform @@ -63089,6 +64595,12 @@ entities: - type: Transform pos: 71.5,-23.5 parent: 34 + - uid: 14250 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,-20.5 + parent: 34 - uid: 14304 components: - type: Transform @@ -63149,45 +64661,100 @@ entities: - type: Transform pos: 73.5,-17.5 parent: 34 - - uid: 14338 + - uid: 14401 components: - type: Transform - pos: -45.5,-56.5 + pos: 31.5,19.5 parent: 34 - - uid: 14339 + - uid: 14402 components: - type: Transform - pos: -44.5,-56.5 + pos: 32.5,19.5 parent: 34 - - uid: 14340 + - uid: 14404 components: - type: Transform - pos: -43.5,-56.5 + pos: 34.5,19.5 parent: 34 - - uid: 14341 + - uid: 14405 components: - type: Transform - pos: -42.5,-56.5 + pos: 27.5,20.5 parent: 34 - - uid: 14342 + - uid: 14406 components: - type: Transform - pos: -41.5,-56.5 + pos: 24.5,20.5 parent: 34 - - uid: 14343 + - uid: 14407 components: - type: Transform - pos: -39.5,-55.5 + pos: 21.5,20.5 parent: 34 - - uid: 14344 + - uid: 14412 components: - type: Transform - pos: -39.5,-54.5 + pos: 39.5,20.5 parent: 34 - - uid: 14345 + - uid: 14415 + components: + - type: Transform + pos: 38.5,21.5 + parent: 34 + - uid: 14416 + components: + - type: Transform + pos: 39.5,18.5 + parent: 34 + - uid: 14417 + components: + - type: Transform + pos: 39.5,17.5 + parent: 34 + - uid: 14418 + components: + - type: Transform + pos: 39.5,16.5 + parent: 34 + - uid: 14423 + components: + - type: Transform + pos: 39.5,14.5 + parent: 34 + - uid: 14490 components: - type: Transform - pos: -39.5,-53.5 + pos: 29.5,22.5 + parent: 34 + - uid: 14491 + components: + - type: Transform + pos: 31.5,22.5 + parent: 34 + - uid: 14729 + components: + - type: Transform + pos: 76.5,-28.5 + parent: 34 + - uid: 14730 + components: + - type: Transform + pos: 75.5,-17.5 + parent: 34 + - uid: 14731 + components: + - type: Transform + pos: 76.5,-18.5 + parent: 34 + - uid: 14732 + components: + - type: Transform + pos: 75.5,-29.5 + parent: 34 + - uid: 14739 + components: + - type: Transform + pos: -64.5,-30.5 parent: 34 - proto: GrilleBroken entities: @@ -63308,6 +64875,21 @@ entities: rot: 1.5707963267948966 rad pos: -47.5,-57.5 parent: 34 + - uid: 14424 + components: + - type: Transform + pos: 43.5,13.5 + parent: 34 + - uid: 14425 + components: + - type: Transform + pos: 44.5,13.5 + parent: 34 + - uid: 14426 + components: + - type: Transform + pos: 45.5,13.5 + parent: 34 - proto: GrilleSpawner entities: - uid: 12497 @@ -63325,6 +64907,21 @@ entities: - type: Transform pos: 63.5,-33.5 parent: 34 + - uid: 13407 + components: + - type: Transform + pos: 26.5,20.5 + parent: 34 + - uid: 13411 + components: + - type: Transform + pos: 23.5,20.5 + parent: 34 + - uid: 13847 + components: + - type: Transform + pos: 22.5,20.5 + parent: 34 - uid: 14195 components: - type: Transform @@ -63380,10 +64977,45 @@ entities: - type: Transform pos: 72.5,-17.5 parent: 34 - - uid: 14346 + - uid: 14413 + components: + - type: Transform + pos: 41.5,14.5 + parent: 34 + - uid: 14414 + components: + - type: Transform + pos: 40.5,14.5 + parent: 34 + - uid: 14421 + components: + - type: Transform + pos: 36.5,22.5 + parent: 34 + - uid: 14487 + components: + - type: Transform + pos: 34.5,22.5 + parent: 34 + - uid: 14488 components: - type: Transform - pos: -40.5,-56.5 + pos: 33.5,22.5 + parent: 34 + - uid: 14737 + components: + - type: Transform + pos: -65.5,-28.5 + parent: 34 + - uid: 14738 + components: + - type: Transform + pos: -65.5,-29.5 + parent: 34 + - uid: 14742 + components: + - type: Transform + pos: -65.5,-16.5 parent: 34 - proto: GunSafe entities: @@ -63502,6 +65134,28 @@ entities: - type: Transform pos: -19.647133,-40.21763 parent: 34 +- proto: HandheldStationMap + entities: + - uid: 962 + components: + - type: Transform + pos: 27.536736,16.634586 + parent: 34 + - uid: 4493 + components: + - type: Transform + pos: 26.567986,16.478336 + parent: 34 + - uid: 4520 + components: + - type: Transform + pos: 26.849236,16.650211 + parent: 34 + - uid: 6206 + components: + - type: Transform + pos: 27.30236,16.462711 + parent: 34 - proto: HatSpawner entities: - uid: 9016 @@ -63514,6 +65168,18 @@ entities: - type: Transform pos: -14.5,-15.5 parent: 34 +- proto: HeadSkeleton + entities: + - uid: 9804 + components: + - type: Transform + pos: -51.73147,-3.2952795 + parent: 34 + - uid: 14481 + components: + - type: Transform + pos: 26.04872,7.231669 + parent: 34 - proto: HeatExchanger entities: - uid: 1517 @@ -63627,15 +65293,12 @@ entities: - type: Transform pos: -58.5,-21.5 parent: 34 - - uid: 14357 - components: - - type: Transform - pos: -46.5,-53.5 - parent: 34 - - uid: 14358 +- proto: HelicopterInstrument + entities: + - uid: 2121 components: - type: Transform - pos: -47.5,-53.5 + pos: -49.3329,2.5085588 parent: 34 - proto: HighSecCommandLocked entities: @@ -63700,6 +65363,28 @@ entities: - type: Transform pos: 1.5,-37.5 parent: 34 +- proto: hydroponicsSoil + entities: + - uid: 13138 + components: + - type: Transform + pos: -46.5,10.5 + parent: 34 + - uid: 13139 + components: + - type: Transform + pos: -45.5,10.5 + parent: 34 + - uid: 13140 + components: + - type: Transform + pos: -44.5,10.5 + parent: 34 + - uid: 13141 + components: + - type: Transform + pos: -47.5,10.5 + parent: 34 - proto: HydroponicsToolClippers entities: - uid: 4711 @@ -63707,6 +65392,12 @@ entities: - type: Transform pos: 37.63338,6.2854657 parent: 34 + - uid: 13762 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -47.74155,8.684177 + parent: 34 - proto: HydroponicsToolMiniHoe entities: - uid: 4712 @@ -63722,69 +65413,75 @@ entities: - type: Transform pos: 37.742756,6.5356393 parent: 34 + - uid: 13759 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -45.038425,9.918552 + parent: 34 - proto: hydroponicsTray entities: - - uid: 865 + - uid: 3317 components: - type: Transform - pos: -18.5,-3.5 + pos: -19.5,-8.5 parent: 34 - - uid: 866 + - uid: 3319 components: - type: Transform - pos: -17.5,-3.5 + pos: -21.5,-6.5 parent: 34 - - uid: 867 + - uid: 3320 components: - type: Transform - pos: -17.5,-4.5 + pos: -20.5,-3.5 parent: 34 - - uid: 868 + - uid: 3321 components: - type: Transform - pos: -18.5,-4.5 + pos: -20.5,-4.5 parent: 34 - - uid: 4708 + - uid: 3322 components: - type: Transform - pos: 37.5,3.5 + pos: -20.5,-7.5 parent: 34 - - uid: 10900 + - uid: 3327 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 37.5,4.5 + pos: -17.5,-3.5 parent: 34 - - uid: 12288 + - uid: 4708 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 37.5,5.5 + pos: 37.5,3.5 parent: 34 - - uid: 12332 + - uid: 4969 components: - type: Transform - pos: -19.5,-3.5 + pos: -21.5,-8.5 parent: 34 - - uid: 12333 + - uid: 4970 components: - type: Transform - pos: -19.5,-4.5 + pos: -20.5,-8.5 parent: 34 - - uid: 12334 + - uid: 4971 components: - type: Transform - pos: -19.5,-5.5 + pos: -21.5,-7.5 parent: 34 - - uid: 12335 + - uid: 10900 components: - type: Transform - pos: -18.5,-5.5 + rot: 1.5707963267948966 rad + pos: 37.5,4.5 parent: 34 - - uid: 12336 + - uid: 12288 components: - type: Transform - pos: -17.5,-5.5 + rot: 1.5707963267948966 rad + pos: 37.5,5.5 parent: 34 - proto: Igniter entities: @@ -63793,9 +65490,6 @@ entities: - type: Transform pos: -55.819836,-37.60099 parent: 34 - - type: DeviceLinkSink - links: - - 8430 - proto: IngotGold entities: - uid: 11679 @@ -63803,13 +65497,15 @@ entities: - type: Transform pos: 37.393456,-35.166496 parent: 34 - - uid: 11693 +- proto: IngotGold1 + entities: + - uid: 9253 components: - type: Transform - pos: -35.610165,-4.992127 + pos: -50.324715,-14.452337 parent: 34 - type: Stack - count: 15 + count: 10 - proto: IngotSilver entities: - uid: 11681 @@ -63858,12 +65554,6 @@ entities: rot: 1.5707963267948966 rad pos: -5.5,14.5 parent: 34 - - uid: 12122 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -44.5,-6.5 - parent: 34 - uid: 12138 components: - type: Transform @@ -63932,18 +65622,6 @@ entities: parent: 34 - proto: IntercomScience entities: - - uid: 600 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -32.5,-8.5 - parent: 34 - - uid: 12120 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -33.5,-13.5 - parent: 34 - uid: 12121 components: - type: Transform @@ -64030,9 +65708,6 @@ entities: rot: 3.141592653589793 rad pos: -12.5,-22.5 parent: 34 - - type: DeviceLinkSink - links: - - 1922 - uid: 10492 components: - type: Transform @@ -64047,8 +65722,6 @@ entities: parent: 34 - type: DeviceLinkSink invokeCounter: 1 - links: - - 11428 - uid: 11133 components: - type: Transform @@ -64057,8 +65730,6 @@ entities: parent: 34 - type: DeviceLinkSink invokeCounter: 1 - links: - - 13442 - uid: 11134 components: - type: Transform @@ -64067,16 +65738,6 @@ entities: parent: 34 - type: DeviceLinkSink invokeCounter: 1 - links: - - 11513 - - uid: 12371 - components: - - type: Transform - pos: -30.5,-21.5 - parent: 34 - - type: DeviceLinkSink - links: - - 10413 - uid: 13679 components: - type: Transform @@ -64085,8 +65746,12 @@ entities: parent: 34 - type: DeviceLinkSink invokeCounter: 3 - links: - - 13678 + - uid: 14771 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -39.5,-11.5 + parent: 34 - proto: JetpackMini entities: - uid: 2485 @@ -64151,17 +65816,6 @@ entities: rot: 1.5707963267948966 rad pos: 32.564697,-9.447044 parent: 34 -- proto: KatanaDulled - entities: - - uid: 14149 - components: - - type: MetaData - desc: 'A name is etched into this cheap, dulled plasteel blade: "Lars." Who could it belong to?' - name: lars' katana - - type: Transform - rot: -1.5707963267948966 rad - pos: -50.617535,10.455185 - parent: 34 - proto: KitchenDeepFryer entities: - uid: 829 @@ -64213,11 +65867,6 @@ entities: parent: 34 - proto: KitchenReagentGrinder entities: - - uid: 877 - components: - - type: Transform - pos: -20.5,-3.5 - parent: 34 - uid: 2927 components: - type: Transform @@ -64228,15 +65877,20 @@ entities: - type: Transform pos: 38.5,6.5 parent: 34 + - uid: 9201 + components: + - type: Transform + pos: -17.5,-8.5 + parent: 34 - uid: 9302 components: - type: Transform pos: -9.5,-3.5 parent: 34 - - uid: 11700 + - uid: 11491 components: - type: Transform - pos: -33.5,-17.5 + pos: -43.5,-5.5 parent: 34 - proto: KitchenSpike entities: @@ -64245,12 +65899,12 @@ entities: - type: Transform pos: -12.5,-3.5 parent: 34 -- proto: Lamp +- proto: KoboldCubeBox entities: - - uid: 2229 + - uid: 3366 components: - type: Transform - pos: -45.557014,-4.0842085 + pos: -49.709957,2.7257032 parent: 34 - proto: LampBanana entities: @@ -64261,6 +65915,12 @@ entities: parent: 34 - proto: LampGold entities: + - uid: 10567 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -30.832159,-6.1734247 + parent: 34 - uid: 13500 components: - type: Transform @@ -64301,12 +65961,12 @@ entities: - type: Transform pos: 39.508366,-19.129358 parent: 34 -- proto: LargeBeaker +- proto: Lantern entities: - - uid: 1280 + - uid: 14551 components: - type: Transform - pos: -20.379763,-4.4422 + pos: 35.425385,12.4203 parent: 34 - proto: LightHeadBorg entities: @@ -64374,10 +66034,10 @@ entities: parent: 34 - proto: LockerBotanistFilled entities: - - uid: 871 + - uid: 372 components: - type: Transform - pos: -18.5,-8.5 + pos: -16.5,-4.5 parent: 34 - proto: LockerBrigmedicFilled entities: @@ -64549,13 +66209,6 @@ entities: - type: Transform pos: -10.5,-41.5 parent: 34 -- proto: LockerFreezerBase - entities: - - uid: 9126 - components: - - type: Transform - pos: 54.5,-43.5 - parent: 34 - proto: LockerFreezerVaultFilled entities: - uid: 5016 @@ -64634,10 +66287,10 @@ entities: parent: 34 - proto: LockerResearchDirectorFilledHardsuit entities: - - uid: 4346 + - uid: 2123 components: - type: Transform - pos: -35.5,-3.5 + pos: -48.5,-13.5 parent: 34 - proto: LockerSalvageSpecialistFilledHardsuit entities: @@ -64663,15 +66316,15 @@ entities: parent: 34 - proto: LockerScienceFilled entities: - - uid: 583 + - uid: 2602 components: - type: Transform - pos: -35.5,-8.5 + pos: -51.5,-8.5 parent: 34 - - uid: 594 + - uid: 13156 components: - type: Transform - pos: -35.5,-7.5 + pos: -51.5,-7.5 parent: 34 - proto: LockerSecurityFilled entities: @@ -64731,7 +66384,7 @@ entities: - type: Transform pos: -18.5,-14.5 parent: 34 -- proto: LogicGate +- proto: LogicGateOr entities: - uid: 13832 components: @@ -64741,9 +66394,6 @@ entities: parent: 34 - type: DeviceLinkSink invokeCounter: 2 - links: - - 11768 - - 11682 - type: DeviceLinkSource linkedPorts: 1802: @@ -64762,9 +66412,6 @@ entities: parent: 34 - type: DeviceLinkSink invokeCounter: 2 - links: - - 1802 - - 11911 - type: DeviceLinkSource linkedPorts: 11768: @@ -64774,14 +66421,38 @@ entities: - type: Physics canCollide: False bodyType: Static +- proto: LootSpawnerCableCoil + entities: + - uid: 14486 + components: + - type: Transform + pos: 27.5,7.5 + parent: 34 +- proto: LunchboxEpistemics + entities: + - uid: 2254 + components: + - type: Transform + pos: -49.343746,2.8232799 + parent: 34 - proto: LuxuryPen entities: + - uid: 1352 + components: + - type: Transform + pos: -33.626,-17.535936 + parent: 34 - uid: 6981 components: - type: Transform rot: 1.5707963267948966 rad pos: 26.798237,-38.541 parent: 34 + - uid: 9849 + components: + - type: Transform + pos: -35.781048,-7.689617 + parent: 34 - uid: 14080 components: - type: Transform @@ -64823,14 +66494,11 @@ entities: parent: 34 - proto: MachineArtifactAnalyzer entities: - - uid: 49 + - uid: 2226 components: - type: Transform - pos: -25.5,-5.5 + pos: -49.5,-3.5 parent: 34 - - type: DeviceLinkSink - links: - - 404 - proto: MachineCentrifuge entities: - uid: 3919 @@ -64852,6 +66520,11 @@ entities: - type: Transform pos: -26.5,4.5 parent: 34 + - uid: 2252 + components: + - type: Transform + pos: 7.5,-42.5 + parent: 34 - proto: MachineFrameDestroyed entities: - uid: 6044 @@ -64859,11 +66532,21 @@ entities: - type: Transform pos: 44.5,-43.5 parent: 34 + - uid: 13143 + components: + - type: Transform + pos: -50.5,10.5 + parent: 34 - uid: 14290 components: - type: Transform pos: 70.5,-20.5 parent: 34 + - uid: 14443 + components: + - type: Transform + pos: 34.5,15.5 + parent: 34 - proto: MailTeleporter entities: - uid: 1901 @@ -64888,11 +66571,6 @@ entities: - type: Transform pos: -6.5,-50.5 parent: 34 - - uid: 4886 - components: - - type: Transform - pos: -47.5,7.5 - parent: 34 - uid: 6126 components: - type: Transform @@ -64908,15 +66586,10 @@ entities: - type: Transform pos: -22.5,-32.5 parent: 34 - - uid: 10269 - components: - - type: Transform - pos: -23.5,-8.5 - parent: 34 - - uid: 10270 + - uid: 9126 components: - type: Transform - pos: -23.5,-9.5 + pos: -42.5,3.5 parent: 34 - uid: 10272 components: @@ -64948,11 +66621,6 @@ entities: - type: Transform pos: -56.5,4.5 parent: 34 - - uid: 10280 - components: - - type: Transform - pos: -42.5,5.5 - parent: 34 - uid: 10540 components: - type: Transform @@ -64963,25 +66631,15 @@ entities: - type: Transform pos: 7.5,-15.5 parent: 34 - - uid: 10897 - components: - - type: Transform - pos: 21.5,-43.5 - parent: 34 - - uid: 10898 - components: - - type: Transform - pos: 20.5,-43.5 - parent: 34 - - uid: 11287 + - uid: 11664 components: - type: Transform - pos: 27.5,10.5 + pos: -40.5,5.5 parent: 34 - - uid: 11664 + - uid: 11677 components: - type: Transform - pos: -40.5,5.5 + pos: -24.5,-11.5 parent: 34 - uid: 12898 components: @@ -64993,16 +66651,6 @@ entities: - type: Transform pos: -55.5,-17.5 parent: 34 - - uid: 13505 - components: - - type: Transform - pos: 22.5,14.5 - parent: 34 - - uid: 13506 - components: - - type: Transform - pos: 30.5,10.5 - parent: 34 - uid: 13507 components: - type: Transform @@ -65028,6 +66676,11 @@ entities: - type: Transform pos: 66.5,-28.5 parent: 34 + - uid: 14484 + components: + - type: Transform + pos: 28.5,9.5 + parent: 34 - proto: MaintenancePlantSpawner entities: - uid: 4287 @@ -65045,6 +66698,16 @@ entities: - type: Transform pos: -19.5,-31.5 parent: 34 + - uid: 11675 + components: + - type: Transform + pos: -24.5,-6.5 + parent: 34 + - uid: 11676 + components: + - type: Transform + pos: -24.5,-8.5 + parent: 34 - uid: 12765 components: - type: Transform @@ -65070,6 +66733,16 @@ entities: - type: Transform pos: -54.5,-8.5 parent: 34 + - uid: 14452 + components: + - type: Transform + pos: 31.5,11.5 + parent: 34 + - uid: 14485 + components: + - type: Transform + pos: 23.5,9.5 + parent: 34 - proto: MaintenanceToolSpawner entities: - uid: 4339 @@ -65098,7 +66771,15 @@ entities: pos: -42.5,10.5 parent: 34 - type: RandomSpawner + prototypes: [] rareChance: 0.1 + rarePrototypes: [] + gameRules: [] + - uid: 11700 + components: + - type: Transform + pos: -25.5,-11.5 + parent: 34 - uid: 12902 components: - type: Transform @@ -65109,6 +66790,16 @@ entities: - type: Transform pos: -46.5,-22.5 parent: 34 + - uid: 14369 + components: + - type: Transform + pos: -42.5,2.5 + parent: 34 + - uid: 14399 + components: + - type: Transform + pos: 33.5,9.5 + parent: 34 - proto: MaintenanceWeaponSpawner entities: - uid: 2615 @@ -65141,16 +66832,6 @@ entities: - type: Transform pos: 26.5,-42.5 parent: 34 - - uid: 11288 - components: - - type: Transform - pos: 26.5,10.5 - parent: 34 - - uid: 11289 - components: - - type: Transform - pos: 25.5,12.5 - parent: 34 - uid: 12892 components: - type: Transform @@ -65210,13 +66891,15 @@ entities: - type: Transform pos: -18.67057,-16.331293 parent: 34 -- proto: MaterialDiamond1 +- proto: MaterialCloth1 entities: - - uid: 11689 + - uid: 14141 components: - type: Transform - pos: 37.34658,-33.291496 + pos: 22.288776,-44.686623 parent: 34 +- proto: MaterialDiamond1 + entities: - uid: 11184 components: - type: Transform @@ -65229,18 +66912,6 @@ entities: - type: Transform pos: -18.35807,-16.56062 parent: 34 -- proto: MaterialReclaimer - entities: - - uid: 4433 - components: - - type: Transform - pos: -39.5,10.5 - parent: 34 - - uid: 8092 - components: - - type: Transform - pos: 6.5,-19.5 - parent: 34 - proto: MaterialWoodPlank1 entities: - uid: 7808 @@ -65293,14 +66964,14 @@ entities: - type: Transform pos: 11.5,-29.5 parent: 34 - - uid: 12439 +- proto: MedicalScannerMachineCircuitboard + entities: + - uid: 5056 components: - type: Transform - pos: 7.5,-42.5 + rot: 3.141592653589793 rad + pos: 8.178106,-42.805206 parent: 34 - - type: DeviceLinkSink - links: - - 12440 - proto: MedicalTechFab entities: - uid: 8094 @@ -65397,16 +67068,6 @@ entities: - type: Transform pos: 19.61118,1.5157549 parent: 34 -- proto: MetempsychoticMachine - entities: - - uid: 4263 - components: - - type: Transform - pos: 7.5,-39.5 - parent: 34 - - type: DeviceLinkSink - links: - - 12440 - proto: MicrophoneInstrument entities: - uid: 4684 @@ -65440,12 +67101,6 @@ entities: parent: 34 - proto: Mirror entities: - - uid: 2215 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -48.5,-4.5 - parent: 34 - uid: 4597 components: - type: Transform @@ -65458,6 +67113,12 @@ entities: rot: 1.5707963267948966 rad pos: 9.5,-39.5 parent: 34 + - uid: 14644 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 55.5,-45.5 + parent: 34 - proto: MMI entities: - uid: 6547 @@ -65576,11 +67237,6 @@ entities: parent: 34 - proto: Multitool entities: - - uid: 7423 - components: - - type: Transform - pos: -28.788094,-8.180353 - parent: 34 - uid: 12442 components: - type: Transform @@ -65617,6 +67273,16 @@ entities: - type: Transform pos: -38.5,-29.5 parent: 34 + - uid: 7818 + components: + - type: Transform + pos: -52.5,-33.5 + parent: 34 + - uid: 12021 + components: + - type: Transform + pos: -45.5,2.5 + parent: 34 - uid: 12979 components: - type: Transform @@ -65654,6 +67320,12 @@ entities: - type: Transform pos: -12.5,-10.5 parent: 34 + - uid: 10444 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -34.5,-6.5 + parent: 34 - proto: NTFlag entities: - uid: 7621 @@ -65695,10 +67367,10 @@ entities: parent: 34 - proto: Oracle entities: - - uid: 592 + - uid: 566 components: - type: Transform - pos: -25.5,-13.5 + pos: -26.5,-13.5 parent: 34 - proto: OreBox entities: @@ -65730,30 +67402,20 @@ entities: parent: 34 - proto: OxygenCanister entities: - - uid: 1547 - components: - - type: Transform - pos: -52.5,-32.5 - parent: 34 - uid: 1798 components: - type: Transform pos: -37.5,-29.5 parent: 34 - - uid: 6544 - components: - - type: Transform - pos: -20.5,-39.5 - parent: 34 - - uid: 10358 + - uid: 2268 components: - type: Transform - pos: 29.5,8.5 + pos: -44.5,1.5 parent: 34 - - uid: 10359 + - uid: 6544 components: - type: Transform - pos: -23.5,-4.5 + pos: -20.5,-39.5 parent: 34 - uid: 12324 components: @@ -65775,6 +67437,11 @@ entities: - type: Transform pos: 58.5,-41.5 parent: 34 + - uid: 14743 + components: + - type: Transform + pos: -50.5,-24.5 + parent: 34 - proto: PaintingBlunt entities: - uid: 2407 @@ -65782,6 +67449,11 @@ entities: - type: Transform pos: 10.5,12.5 parent: 34 + - uid: 14388 + components: + - type: Transform + pos: 35.5,14.5 + parent: 34 - proto: PaintingSkeletonCigarette entities: - uid: 7096 @@ -65843,21 +67515,6 @@ entities: - type: Transform pos: -32.142803,3.720985 parent: 34 - - uid: 2254 - components: - - type: Transform - pos: -51.69855,-6.4908032 - parent: 34 - - uid: 2255 - components: - - type: Transform - pos: -51.688133,-6.3657165 - parent: 34 - - uid: 2643 - components: - - type: Transform - pos: -28.336557,-8.620605 - parent: 34 - uid: 2684 components: - type: Transform @@ -65909,6 +67566,11 @@ entities: - type: Transform pos: -22.578794,5.5414977 parent: 34 + - uid: 7129 + components: + - type: Transform + pos: -50.31404,2.649231 + parent: 34 - uid: 7395 components: - type: Transform @@ -65955,10 +67617,10 @@ entities: - type: Transform pos: 10.746451,-32.010906 parent: 34 - - uid: 9981 + - uid: 10898 components: - type: Transform - pos: -28.445932,-8.44873 + pos: -50.03279,2.586731 parent: 34 - uid: 11338 components: @@ -65971,26 +67633,6 @@ entities: rot: -1.5707963267948966 rad pos: 30.2323,-44.872406 parent: 34 - - uid: 11533 - components: - - type: Transform - pos: -28.305307,-8.276855 - parent: 34 - - uid: 11675 - components: - - type: Transform - pos: -35.2688,-5.0857 - parent: 34 - - uid: 11676 - components: - - type: Transform - pos: -35.310463,-5.169091 - parent: 34 - - uid: 11677 - components: - - type: Transform - pos: -35.30005,-5.3150253 - parent: 34 - uid: 12127 components: - type: Transform @@ -66064,8 +67706,20 @@ entities: Once you have safe oxygen it can be either used directly in distribution or injected into the oxygen reserve. Please note that this voids the reserve's warranty and NanoTrasen is not responsible for any atmospheric disasters including, but not limited to: the crew's skin melting off, lethal overpressurization, complete atmospheric shutdown or sudden death. +- proto: PaperBin + entities: + - uid: 14444 + components: + - type: Transform + pos: 32.5,18.5 + parent: 34 - proto: PaperBin10 entities: + - uid: 3355 + components: + - type: Transform + pos: -33.5,-17.5 + parent: 34 - uid: 14081 components: - type: Transform @@ -66085,40 +67739,70 @@ entities: rot: -1.5707963267948966 rad pos: 35.5,-12.5 parent: 34 - - uid: 14054 + - uid: 10359 components: - type: Transform - rot: 3.141592653589793 rad - pos: -50.5,-14.5 + pos: -28.5,-6.5 parent: 34 - proto: PaperBin5 entities: + - uid: 2261 + components: + - type: Transform + pos: 16.5,11.5 + parent: 34 - uid: 3717 components: - type: Transform pos: 30.5,3.5 parent: 34 -- proto: PaperDoor +- proto: PaperCNCSheet entities: - - uid: 131 + - uid: 11163 components: - type: Transform - pos: -1.5,2.5 + rot: -1.5707963267948966 rad + pos: -28.689224,-3.339095 parent: 34 - - uid: 2213 + - uid: 11197 components: - type: Transform - pos: -46.5,-8.5 + rot: -1.5707963267948966 rad + pos: -28.689224,-4.32347 parent: 34 - - uid: 5858 + - uid: 11198 components: - type: Transform - pos: -45.5,0.5 + pos: -28.5486,-4.54222 parent: 34 - - uid: 5859 + - uid: 11199 components: - type: Transform - pos: -49.5,0.5 + pos: -27.6111,-4.54222 + parent: 34 + - uid: 11201 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.32985,-4.339095 + parent: 34 + - uid: 11202 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.376724,-3.401595 + parent: 34 +- proto: PaperDoor + entities: + - uid: 131 + components: + - type: Transform + pos: -1.5,2.5 + parent: 34 + - uid: 2871 + components: + - type: Transform + pos: 22.5,13.5 parent: 34 - uid: 10455 components: @@ -66135,18 +67819,88 @@ entities: parent: 34 - proto: PaperOffice entities: + - uid: 2092 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -50.675346,-14.427469 + parent: 34 + - uid: 2183 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -50.933773,-14.422432 + parent: 34 + - uid: 2249 + components: + - type: Transform + pos: -50.264378,2.4556508 + parent: 34 + - type: Paper + stampState: paper_stamp-centcom + stampedBy: + - stampedColor: '#006600FF' + stampedName: stamp-component-stamped-name-centcom + - stampedColor: '#2F4F4FFF' + stampedName: Darius Adelaide + content: >+ + [color=#009100]█▀ █▀ [head=2]Official Central Command Note[/head] + + █▄ █▄[/color] + + [color=red]Concerning Shoukou's Xenoarch Setup[/color] + + Just so you [italic]idiots[/italic] know what you're doing with the setup here for the artifact chamber: + + - The pump pointing into the chamber, right under the chair where your analysis console probably is, injects air into the chamber from the air distribution pipes. + + - The pump next to it pointing the opposite direction is connected to the waste distribution pipes. It helps take air waste out when you use it, through the passive vent. + + - The final pump, connected to that connector, is simple - just hook up a canister and press it and it puts the air into the canister in the chamber. + + + Do note that the first pump will be handy after you space the chamber using the blast doors, and that those blast doors also can help you empty things like plasma from the chamber if you flood it to activate an artifact. + + The engineers who built the blast door setup have worked hard to make it idiotproof, so that you don't die to the spacing opening those causes. + + It's not the most [italic]efficient setup,[/italic] but it works for what's in our budget. + + + I hope you, the scientist reading this, makes this lab explode with interesting xenoarchaeological findings, and that you pave the way for a better future with the research you do. + + Thanks for working as part of Nanotrasen! + + [color=indigo]- Darius Adelaide, Central Command Epistemics Branch R.D.[/color] + - uid: 4706 components: - type: Transform rot: 1.5707963267948966 rad pos: 34.36472,-0.4253521 parent: 34 + - uid: 7126 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -50.511898,-14.688057 + parent: 34 - uid: 7488 components: - type: Transform rot: 3.141592653589793 rad pos: 26.876362,-38.369125 parent: 34 + - uid: 10446 + components: + - type: Transform + pos: -28.906046,-6.330242 + parent: 34 + - uid: 10447 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.968546,-6.533367 + parent: 34 - uid: 14020 components: - type: Transform @@ -66169,6 +67923,13 @@ entities: rot: 3.141592653589793 rad pos: 27.570103,-30.434013 parent: 34 +- proto: PaperScrap + entities: + - uid: 14448 + components: + - type: Transform + pos: 34.52626,18.519022 + parent: 34 - proto: PartRodMetal entities: - uid: 13909 @@ -66187,12 +67948,32 @@ entities: count: 3 - proto: Pen entities: + - uid: 2165 + components: + - type: Transform + pos: 16.194117,11.358646 + parent: 34 - uid: 2619 components: - type: Transform rot: 3.141592653589793 rad pos: 9.829333,7.8510137 parent: 34 + - uid: 10422 + components: + - type: Transform + pos: -29.363409,-6.423992 + parent: 34 + - uid: 10436 + components: + - type: Transform + pos: -29.285284,-6.361492 + parent: 34 + - uid: 10440 + components: + - type: Transform + pos: -29.441534,-6.502117 + parent: 34 - proto: PersonalAI entities: - uid: 14293 @@ -66215,17 +67996,24 @@ entities: - type: Transform pos: 37.5,-34.5 parent: 34 +- proto: PlantBGoneSpray + entities: + - uid: 9443 + components: + - type: Transform + pos: -16.804901,-8.361814 + parent: 34 - proto: PlasmaCanister entities: - - uid: 1542 + - uid: 12323 components: - type: Transform - pos: -52.5,-30.5 + pos: -52.5,-32.5 parent: 34 - - uid: 1616 + - uid: 13794 components: - type: Transform - pos: -52.5,-33.5 + pos: -57.5,-31.5 parent: 34 - proto: PlasticFlapsAirtightClear entities: @@ -66283,6 +68071,11 @@ entities: parent: 34 - proto: PlushieLizard entities: + - uid: 7143 + components: + - type: Transform + pos: -43.40073,-6.911436 + parent: 34 - uid: 11626 components: - type: Transform @@ -66350,10 +68143,10 @@ entities: parent: 34 - proto: PlushieSharkBlue entities: - - uid: 2234 + - uid: 6200 components: - type: Transform - pos: -45.917328,-7.050636 + pos: 23.413282,11.611837 parent: 34 - uid: 11187 components: @@ -66362,10 +68155,10 @@ entities: parent: 34 - proto: PlushieSharkPink entities: - - uid: 2235 + - uid: 6525 components: - type: Transform - pos: -47.459995,-7.309145 + pos: 21.507032,11.596212 parent: 34 - uid: 11188 components: @@ -66374,11 +68167,6 @@ entities: parent: 34 - proto: PlushieSlime entities: - - uid: 2199 - components: - - type: Transform - pos: -41.952106,-5.241523 - parent: 34 - uid: 11191 components: - type: Transform @@ -66391,11 +68179,6 @@ entities: parent: 34 - proto: PlushieSnake entities: - - uid: 2200 - components: - - type: Transform - pos: -42.830803,-6.005159 - parent: 34 - uid: 11190 components: - type: Transform @@ -66495,19 +68278,17 @@ entities: rot: -1.5707963267948966 rad pos: 40.5,-42.5 parent: 34 -- proto: PosterContrabandAtmosiaDeclarationIndependence - entities: - - uid: 1520 + - uid: 14472 components: - type: Transform - pos: -46.5,-32.5 + pos: 30.5,10.5 parent: 34 -- proto: PosterContrabandBeachStarYamamoto +- proto: PosterContrabandAtmosiaDeclarationIndependence entities: - - uid: 3370 + - uid: 1520 components: - type: Transform - pos: -48.5,-6.5 + pos: -46.5,-32.5 parent: 34 - proto: PosterContrabandEAT entities: @@ -66518,6 +68299,13 @@ entities: - type: Transform pos: -13.5,-10.5 parent: 34 +- proto: PosterContrabandFreeTonto + entities: + - uid: 11285 + components: + - type: Transform + pos: -25.5,-5.5 + parent: 34 - proto: PosterContrabandFunPolice entities: - uid: 13495 @@ -66555,10 +68343,10 @@ entities: parent: 34 - proto: PosterContrabandRobustSoftdrinks entities: - - uid: 2164 + - uid: 11283 components: - type: Transform - pos: -36.5,-7.5 + pos: -36.5,-5.5 parent: 34 - proto: PosterLegit12Gauge entities: @@ -66580,6 +68368,12 @@ entities: rot: -1.5707963267948966 rad pos: -10.5,-44.5 parent: 34 + - uid: 14647 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 53.5,-42.5 + parent: 34 - proto: PosterLegitCarbonDioxide entities: - uid: 3298 @@ -66615,6 +68409,13 @@ entities: - type: Transform pos: -28.5,0.5 parent: 34 +- proto: PosterLegitJustAWeekAway + entities: + - uid: 14715 + components: + - type: Transform + pos: -36.5,-16.5 + parent: 34 - proto: PosterLegitMedicate entities: - uid: 1946 @@ -66634,6 +68435,12 @@ entities: - type: Transform pos: -20.5,-20.5 parent: 34 + - uid: 11049 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -29.5,-2.5 + parent: 34 - uid: 12846 components: - type: Transform @@ -66652,12 +68459,10 @@ entities: rot: 1.5707963267948966 rad pos: 24.5,-34.5 parent: 34 -- proto: PosterLegitNoERP - entities: - - uid: 2231 + - uid: 14642 components: - type: Transform - pos: -46.5,-5.5 + pos: 30.5,12.5 parent: 34 - proto: PosterLegitNTTGC entities: @@ -66695,14 +68500,6 @@ entities: - type: Transform pos: -24.5,-40.5 parent: 34 -- proto: PosterLegitSafetyMothBoH - entities: - - uid: 11585 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -34.5,-6.5 - parent: 34 - proto: PosterLegitSafetyMothFires entities: - uid: 12847 @@ -66711,6 +68508,20 @@ entities: rot: 3.141592653589793 rad pos: -13.5,-35.5 parent: 34 +- proto: PosterLegitSafetyMothGlimmer + entities: + - uid: 5857 + components: + - type: Transform + pos: -50.5,-5.5 + parent: 34 +- proto: PosterLegitScience + entities: + - uid: 2070 + components: + - type: Transform + pos: -44.5,-8.5 + parent: 34 - proto: PosterLegitSecWatch entities: - uid: 6682 @@ -66720,6 +68531,11 @@ entities: parent: 34 - proto: PosterLegitShoukou entities: + - uid: 11284 + components: + - type: Transform + pos: -28.5,-9.5 + parent: 34 - uid: 11943 components: - type: Transform @@ -66735,13 +68551,6 @@ entities: - type: Transform pos: 7.5,19.5 parent: 34 -- proto: PosterLegitUeNo - entities: - - uid: 5861 - components: - - type: Transform - pos: -47.5,0.5 - parent: 34 - proto: PosterMapShoukou entities: - uid: 5862 @@ -66754,6 +68563,11 @@ entities: - type: Transform pos: 11.5,19.5 parent: 34 + - uid: 14531 + components: + - type: Transform + pos: 30.5,14.5 + parent: 34 - proto: PottedPlant10 entities: - uid: 2597 @@ -66806,11 +68620,6 @@ entities: - type: Transform pos: -5.5,-2.5 parent: 34 - - uid: 10297 - components: - - type: Transform - pos: -51.5,-9.5 - parent: 34 - uid: 11831 components: - type: Transform @@ -66887,6 +68696,11 @@ entities: parent: 34 - proto: PottedPlantRandom entities: + - uid: 224 + components: + - type: Transform + pos: -44.5,-1.5 + parent: 34 - uid: 790 components: - type: Transform @@ -66897,30 +68711,10 @@ entities: - type: Transform pos: -5.5,-19.5 parent: 34 - - uid: 2191 - components: - - type: Transform - pos: -41.5,-3.5 - parent: 34 - - uid: 2532 - components: - - type: Transform - pos: -35.5,-14.5 - parent: 34 - - uid: 2533 - components: - - type: Transform - pos: -29.5,-13.5 - parent: 34 - - uid: 2534 - components: - - type: Transform - pos: -24.5,-13.5 - parent: 34 - - uid: 2552 + - uid: 2507 components: - type: Transform - pos: -31.5,-19.5 + pos: -41.5,-8.5 parent: 34 - uid: 3375 components: @@ -66947,6 +68741,11 @@ entities: - type: Transform pos: -15.5,-12.5 parent: 34 + - uid: 6088 + components: + - type: Transform + pos: -44.5,-9.5 + parent: 34 - uid: 7025 components: - type: Transform @@ -67072,11 +68871,6 @@ entities: - type: Transform pos: 42.5,-37.5 parent: 34 - - uid: 13220 - components: - - type: Transform - pos: 54.5,-44.5 - parent: 34 - uid: 13554 components: - type: Transform @@ -67097,6 +68891,11 @@ entities: - type: Transform pos: 59.5,-49.5 parent: 34 + - uid: 14716 + components: + - type: Transform + pos: -44.5,7.5 + parent: 34 - proto: PottedPlantRandomPlastic entities: - uid: 1767 @@ -67119,11 +68918,6 @@ entities: - type: Transform pos: 49.5,1.5 parent: 34 - - uid: 10296 - components: - - type: Transform - pos: -51.5,-1.5 - parent: 34 - uid: 10414 components: - type: Transform @@ -67139,6 +68933,16 @@ entities: - type: Transform pos: -37.5,-8.5 parent: 34 + - uid: 13150 + components: + - type: Transform + pos: 22.5,16.5 + parent: 34 + - uid: 13151 + components: + - type: Transform + pos: 17.5,16.5 + parent: 34 - uid: 14166 components: - type: Transform @@ -67149,6 +68953,18 @@ entities: - type: Transform pos: 60.5,-41.5 parent: 34 + - uid: 14717 + components: + - type: Transform + pos: -45.5,9.5 + parent: 34 +- proto: PottedPlantRD + entities: + - uid: 9270 + components: + - type: Transform + pos: -49.5,-12.5 + parent: 34 - proto: PowerCellMedium entities: - uid: 13957 @@ -67158,15 +68974,16 @@ entities: parent: 34 - proto: PowerCellRecharger entities: - - uid: 1367 + - uid: 1375 components: - type: Transform - pos: -31.5,-11.5 + pos: -42.5,10.5 parent: 34 - - uid: 1375 + - uid: 2068 components: - type: Transform - pos: -42.5,10.5 + rot: 3.141592653589793 rad + pos: -51.5,-1.5 parent: 34 - uid: 3499 components: @@ -67174,6 +68991,12 @@ entities: rot: 1.5707963267948966 rad pos: 17.5,-20.5 parent: 34 + - uid: 4937 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,16.5 + parent: 34 - uid: 7426 components: - type: Transform @@ -67243,11 +69066,6 @@ entities: parent: 34 - type: ApcPowerReceiver powerLoad: 0 - - uid: 86 - components: - - type: Transform - pos: -47.5,-0.5 - parent: 34 - uid: 89 components: - type: Transform @@ -67266,6 +69084,11 @@ entities: rot: -1.5707963267948966 rad pos: -3.5,-28.5 parent: 34 + - uid: 238 + components: + - type: Transform + pos: -42.5,-0.5 + parent: 34 - uid: 252 components: - type: Transform @@ -67273,12 +69096,6 @@ entities: parent: 34 - type: ApcPowerReceiver powerLoad: 0 - - uid: 364 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -20.5,-6.5 - parent: 34 - uid: 460 components: - type: Transform @@ -67420,6 +69237,12 @@ entities: parent: 34 - type: ApcPowerReceiver powerLoad: 0 + - uid: 2118 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -51.5,-1.5 + parent: 34 - uid: 2129 components: - type: Transform @@ -67434,12 +69257,6 @@ entities: parent: 34 - type: ApcPowerReceiver powerLoad: 0 - - uid: 2135 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -29.5,-15.5 - parent: 34 - uid: 2138 components: - type: Transform @@ -67498,62 +69315,17 @@ entities: parent: 34 - type: ApcPowerReceiver powerLoad: 0 - - uid: 2165 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -37.5,-10.5 - parent: 34 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 2166 - components: - - type: Transform - pos: -44.5,-9.5 - parent: 34 - - type: ApcPowerReceiver - powerLoad: 0 - uid: 2167 components: - type: Transform pos: 11.5,18.5 parent: 34 - - uid: 2202 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -43.5,-6.5 - parent: 34 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 2210 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -39.5,-5.5 - parent: 34 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 2211 - components: - - type: Transform - pos: -50.5,-9.5 - parent: 34 - - type: ApcPowerReceiver - powerLoad: 0 - uid: 2237 components: - type: Transform rot: 3.141592653589793 rad pos: -36.5,1.5 parent: 34 - - uid: 2287 - components: - - type: Transform - pos: -34.5,-3.5 - parent: 34 - - type: ApcPowerReceiver - powerLoad: 0 - uid: 2317 components: - type: Transform @@ -67615,50 +69387,17 @@ entities: rot: -1.5707963267948966 rad pos: 5.5,6.5 parent: 34 - - uid: 3319 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -35.5,-9.5 - parent: 34 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 3320 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -25.5,-11.5 - parent: 34 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 3322 + - uid: 3337 components: - type: Transform rot: 1.5707963267948966 rad - pos: -31.5,-6.5 - parent: 34 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 3335 - components: - - type: Transform - pos: -32.5,-17.5 - parent: 34 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 3336 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -34.5,-14.5 + pos: 7.5,6.5 parent: 34 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 3337 + - uid: 3370 components: - type: Transform rot: 1.5707963267948966 rad - pos: 7.5,6.5 + pos: -39.5,-2.5 parent: 34 - uid: 3579 components: @@ -67768,6 +69507,12 @@ entities: rot: 3.141592653589793 rad pos: 22.5,-39.5 parent: 34 + - uid: 5058 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -48.5,-10.5 + parent: 34 - uid: 5246 components: - type: Transform @@ -67797,6 +69542,12 @@ entities: parent: 34 - type: ApcPowerReceiver powerLoad: 0 + - uid: 5808 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -45.5,-3.5 + parent: 34 - uid: 5938 components: - type: Transform @@ -67956,6 +69707,24 @@ entities: rot: -1.5707963267948966 rad pos: 27.5,-17.5 parent: 34 + - uid: 9801 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -43.5,-4.5 + parent: 34 + - uid: 9803 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -45.5,-7.5 + parent: 34 + - uid: 9823 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -51.5,-7.5 + parent: 34 - uid: 9932 components: - type: Transform @@ -68058,6 +69827,18 @@ entities: - type: Transform pos: -0.5,-26.5 parent: 34 + - uid: 11270 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,-8.5 + parent: 34 + - uid: 11273 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,-1.5 + parent: 34 - uid: 11371 components: - type: Transform @@ -68108,6 +69889,17 @@ entities: parent: 34 - type: ApcPowerReceiver powerLoad: 0 + - uid: 11804 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,-7.5 + parent: 34 + - uid: 11900 + components: + - type: Transform + pos: -16.5,-3.5 + parent: 34 - uid: 12104 components: - type: Transform @@ -68183,17 +69975,29 @@ entities: rot: 1.5707963267948966 rad pos: -9.5,10.5 parent: 34 - - uid: 13117 + - uid: 13087 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,12.5 + parent: 34 + - uid: 13088 components: - type: Transform rot: 1.5707963267948966 rad - pos: 43.5,-15.5 + pos: 25.5,15.5 parent: 34 - - uid: 13141 + - uid: 13089 components: - type: Transform rot: 3.141592653589793 rad - pos: 17.5,14.5 + pos: 20.5,14.5 + parent: 34 + - uid: 13117 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 43.5,-15.5 parent: 34 - uid: 13239 components: @@ -68252,10 +70056,27 @@ entities: rot: 3.141592653589793 rad pos: 56.5,-40.5 parent: 34 - - uid: 14359 + - uid: 14751 + components: + - type: Transform + pos: -32.5,-13.5 + parent: 34 + - uid: 14752 + components: + - type: Transform + pos: -33.5,-17.5 + parent: 34 + - uid: 14754 components: - type: Transform - pos: -46.5,-51.5 + rot: -1.5707963267948966 rad + pos: -37.5,-9.5 + parent: 34 + - uid: 14755 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -30.5,-15.5 parent: 34 - proto: PoweredlightBlue entities: @@ -68327,6 +70148,12 @@ entities: parent: 34 - type: ApcPowerReceiver powerLoad: 0 + - uid: 14533 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,18.5 + parent: 34 - proto: PoweredLightColoredBlack entities: - uid: 4258 @@ -68482,52 +70309,11 @@ entities: rot: -1.5707963267948966 rad pos: 11.5,-40.5 parent: 34 - - uid: 1010 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -44.5,1.5 - parent: 34 - - uid: 1863 - components: - - type: Transform - pos: 19.5,12.5 - parent: 34 - uid: 2163 components: - type: Transform pos: -1.5,-17.5 parent: 34 - - uid: 2168 - components: - - type: Transform - pos: -46.5,-6.5 - parent: 34 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 2169 - components: - - type: Transform - pos: -50.5,-6.5 - parent: 34 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 2170 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -46.5,-4.5 - parent: 34 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 2171 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -50.5,-4.5 - parent: 34 - - type: ApcPowerReceiver - powerLoad: 0 - uid: 2328 components: - type: Transform @@ -68541,29 +70327,6 @@ entities: parent: 34 - type: ApcPowerReceiver powerLoad: 0 - - uid: 3313 - components: - - type: Transform - pos: -26.5,-3.5 - parent: 34 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 3321 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -25.5,-7.5 - parent: 34 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 3362 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -32.5,-15.5 - parent: 34 - - type: ApcPowerReceiver - powerLoad: 0 - uid: 4126 components: - type: Transform @@ -68717,20 +70480,47 @@ entities: - type: Transform pos: -29.5,-42.5 parent: 34 + - uid: 9627 + components: + - type: Transform + pos: -46.5,2.5 + parent: 34 - uid: 10114 components: - type: Transform rot: -1.5707963267948966 rad pos: 14.5,-45.5 parent: 34 - - uid: 11275 + - uid: 10248 components: - type: Transform rot: 3.141592653589793 rad - pos: 27.5,10.5 + pos: -51.5,-4.5 + parent: 34 + - uid: 11055 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -49.5,-4.5 + parent: 34 + - uid: 11269 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,-7.5 + parent: 34 + - uid: 11271 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -34.5,-5.5 + parent: 34 + - uid: 11272 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,-4.5 parent: 34 - - type: ApcPowerReceiver - powerLoad: 0 - uid: 11296 components: - type: Transform @@ -68774,6 +70564,18 @@ entities: rot: -1.5707963267948966 rad pos: 48.5,-12.5 parent: 34 + - uid: 13080 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,11.5 + parent: 34 + - uid: 13082 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,11.5 + parent: 34 - uid: 13152 components: - type: Transform @@ -68810,6 +70612,18 @@ entities: rot: 1.5707963267948966 rad pos: 17.5,-37.5 parent: 34 + - uid: 14695 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -50.5,10.5 + parent: 34 + - uid: 14753 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,-15.5 + parent: 34 - proto: PoweredSmallLightEmpty entities: - uid: 3312 @@ -68835,14 +70649,67 @@ entities: parent: 34 - type: ApcPowerReceiver powerLoad: 0 + - uid: 14534 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,15.5 + parent: 34 + - uid: 14535 + components: + - type: Transform + pos: 35.5,13.5 + parent: 34 + - uid: 14693 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.5,10.5 + parent: 34 + - uid: 14694 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.5,7.5 + parent: 34 - proto: PoweredSmallLightMaintenance entities: + - uid: 5046 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-44.5 + parent: 34 + - uid: 7552 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 67.5,-23.5 + parent: 34 - uid: 7712 components: - type: Transform rot: 1.5707963267948966 rad pos: 40.5,-9.5 parent: 34 + - uid: 9273 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,8.5 + parent: 34 + - uid: 11701 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,-5.5 + parent: 34 + - uid: 11702 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,-11.5 + parent: 34 - uid: 13831 components: - type: Transform @@ -68854,17 +70721,17 @@ entities: rot: 1.5707963267948966 rad pos: -61.5,-25.5 parent: 34 - - uid: 14122 + - uid: 14454 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,7.5 + rot: 1.5707963267948966 rad + pos: 31.5,12.5 parent: 34 - - uid: 14250 + - uid: 14455 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 67.5,-23.5 + rot: 3.141592653589793 rad + pos: 27.5,7.5 parent: 34 - proto: PoweredSmallLightMaintenanceRed entities: @@ -68943,11 +70810,6 @@ entities: rot: 3.141592653589793 rad pos: -45.5,4.5 parent: 34 - - uid: 10661 - components: - - type: Transform - pos: 25.5,8.5 - parent: 34 - uid: 10673 components: - type: Transform @@ -68966,12 +70828,6 @@ entities: rot: 1.5707963267948966 rad pos: -22.5,-17.5 parent: 34 - - uid: 11137 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,-4.5 - parent: 34 - uid: 11138 components: - type: Transform @@ -68996,10 +70852,10 @@ entities: parent: 34 - proto: Protolathe entities: - - uid: 11301 + - uid: 2171 components: - type: Transform - pos: -35.5,-17.5 + pos: -41.5,-3.5 parent: 34 - proto: PsychBed entities: @@ -69035,11 +70891,6 @@ entities: - type: Transform pos: -12.5,-4.5 parent: 34 - - uid: 915 - components: - - type: Transform - pos: -35.5,-10.5 - parent: 34 - uid: 1028 components: - type: Transform @@ -69189,6 +71040,26 @@ entities: - type: Transform pos: -54.5,12.5 parent: 34 + - uid: 11209 + components: + - type: Transform + pos: -23.5,-11.5 + parent: 34 + - uid: 11427 + components: + - type: Transform + pos: -51.5,-9.5 + parent: 34 + - uid: 11533 + components: + - type: Transform + pos: -24.5,-11.5 + parent: 34 + - uid: 11585 + components: + - type: Transform + pos: -25.5,-11.5 + parent: 34 - uid: 11631 components: - type: Transform @@ -69246,6 +71117,31 @@ entities: - type: Transform pos: -19.5,-40.5 parent: 34 + - uid: 14367 + components: + - type: Transform + pos: -42.5,2.5 + parent: 34 + - uid: 14368 + components: + - type: Transform + pos: -42.5,3.5 + parent: 34 + - uid: 14398 + components: + - type: Transform + pos: 33.5,9.5 + parent: 34 + - uid: 14482 + components: + - type: Transform + pos: 28.5,9.5 + parent: 34 + - uid: 14483 + components: + - type: Transform + pos: 27.5,7.5 + parent: 34 - proto: RadioHandheld entities: - uid: 4599 @@ -69338,11 +71234,11 @@ entities: rot: 3.141592653589793 rad pos: -7.5,-14.5 parent: 34 - - uid: 2302 + - uid: 614 components: - type: Transform rot: 3.141592653589793 rad - pos: -29.5,-19.5 + pos: -30.5,-19.5 parent: 34 - uid: 2303 components: @@ -69606,17 +71502,17 @@ entities: - type: Transform pos: -6.5,-18.5 parent: 34 - - uid: 837 + - uid: 541 components: - type: Transform rot: 1.5707963267948966 rad - pos: -12.5,-9.5 + pos: -29.5,-19.5 parent: 34 - - uid: 2300 + - uid: 837 components: - type: Transform rot: 1.5707963267948966 rad - pos: -28.5,-19.5 + pos: -12.5,-9.5 parent: 34 - uid: 2301 components: @@ -69653,77 +71549,6 @@ entities: rot: 3.141592653589793 rad pos: -1.5,-1.5 parent: 34 -- proto: RailingCornerSmall - entities: - - uid: 14136 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 58.5,-24.5 - parent: 34 - - uid: 14137 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 56.5,-24.5 - parent: 34 - - uid: 14138 - components: - - type: Transform - pos: 56.5,-22.5 - parent: 34 - - uid: 14139 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 58.5,-22.5 - parent: 34 - - uid: 14140 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 58.5,-21.5 - parent: 34 - - uid: 14141 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 59.5,-21.5 - parent: 34 - - uid: 14142 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 56.5,-21.5 - parent: 34 - - uid: 14143 - components: - - type: Transform - pos: 56.5,-25.5 - parent: 34 - - uid: 14144 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 58.5,-25.5 - parent: 34 - - uid: 14145 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 55.5,-21.5 - parent: 34 - - uid: 14146 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 55.5,-25.5 - parent: 34 - - uid: 14147 - components: - - type: Transform - pos: 59.5,-25.5 - parent: 34 - proto: RandomArcade entities: - uid: 5026 @@ -69748,10 +71573,10 @@ entities: parent: 34 - proto: RandomArtifactSpawner entities: - - uid: 957 + - uid: 2196 components: - type: Transform - pos: -25.5,-4.5 + pos: -48.5,-4.5 parent: 34 - proto: RandomBoards entities: @@ -69770,6 +71595,13 @@ entities: - type: Transform pos: 8.5,-20.5 parent: 34 +- proto: RandomBook + entities: + - uid: 14460 + components: + - type: Transform + pos: 33.437737,18.616049 + parent: 34 - proto: RandomDrinkBottle entities: - uid: 6089 @@ -69941,26 +71773,11 @@ entities: - type: Transform pos: -17.5,-15.5 parent: 34 - - uid: 2196 - components: - - type: Transform - pos: -44.5,-4.5 - parent: 34 - - uid: 3364 - components: - - type: Transform - pos: -33.5,-14.5 - parent: 34 - uid: 3596 components: - type: Transform pos: -12.5,-6.5 parent: 34 - - uid: 5860 - components: - - type: Transform - pos: -47.5,2.5 - parent: 34 - uid: 7400 components: - type: Transform @@ -69976,6 +71793,11 @@ entities: - type: Transform pos: -47.5,-11.5 parent: 34 + - uid: 10565 + components: + - type: Transform + pos: -32.5,-6.5 + parent: 34 - uid: 10957 components: - type: Transform @@ -70016,6 +71838,11 @@ entities: - type: Transform pos: 3.5,-51.5 parent: 34 + - uid: 13109 + components: + - type: Transform + pos: -33.5,-16.5 + parent: 34 - uid: 13232 components: - type: Transform @@ -70053,21 +71880,11 @@ entities: parent: 34 - proto: RandomPosterAny entities: - - uid: 2198 - components: - - type: Transform - pos: -44.5,-7.5 - parent: 34 - uid: 2267 components: - type: Transform pos: -52.5,-6.5 parent: 34 - - uid: 2268 - components: - - type: Transform - pos: -48.5,-3.5 - parent: 34 - uid: 3410 components: - type: Transform @@ -70089,6 +71906,11 @@ entities: - type: Transform pos: -46.5,-28.5 parent: 34 + - uid: 9817 + components: + - type: Transform + pos: -51.5,3.5 + parent: 34 - uid: 10958 components: - type: Transform @@ -70139,11 +71961,26 @@ entities: - type: Transform pos: -55.5,2.5 parent: 34 + - uid: 13129 + components: + - type: Transform + pos: -35.5,-9.5 + parent: 34 - uid: 14044 components: - type: Transform pos: 47.5,-5.5 parent: 34 + - uid: 14640 + components: + - type: Transform + pos: 22.5,10.5 + parent: 34 + - uid: 14641 + components: + - type: Transform + pos: 17.5,10.5 + parent: 34 - proto: RandomPosterContraband entities: - uid: 10847 @@ -70152,52 +71989,52 @@ entities: rot: 3.141592653589793 rad pos: -15.5,-31.5 parent: 34 - - uid: 11364 + - uid: 11366 components: - type: Transform - pos: -24.5,-6.5 + pos: -57.5,3.5 parent: 34 - - uid: 11365 + - uid: 11367 components: - type: Transform - pos: -52.5,3.5 + pos: -57.5,8.5 parent: 34 - - uid: 11366 + - uid: 14366 components: - type: Transform - pos: -57.5,3.5 + pos: -43.5,3.5 parent: 34 - - uid: 11367 + - uid: 14458 components: - type: Transform - pos: -57.5,8.5 + pos: 33.5,13.5 parent: 34 -- proto: RandomPosterLegit - entities: - - uid: 775 + - uid: 14656 components: - type: Transform - pos: -17.5,-12.5 + pos: 35.5,9.5 parent: 34 - - uid: 2072 +- proto: RandomPosterLegit + entities: + - uid: 86 components: - type: Transform - pos: -40.5,-14.5 + pos: -44.5,-6.5 parent: 34 - - uid: 2115 + - uid: 775 components: - type: Transform - pos: -42.5,0.5 + pos: -17.5,-12.5 parent: 34 - - uid: 2197 + - uid: 2072 components: - type: Transform - pos: -40.5,-5.5 + pos: -40.5,-14.5 parent: 34 - - uid: 2269 + - uid: 2120 components: - type: Transform - pos: -50.5,-8.5 + pos: -47.5,2.5 parent: 34 - uid: 2677 components: @@ -70224,11 +72061,6 @@ entities: - type: Transform pos: 28.5,-11.5 parent: 34 - - uid: 7151 - components: - - type: Transform - pos: -36.5,-12.5 - parent: 34 - uid: 8628 components: - type: Transform @@ -70239,15 +72071,15 @@ entities: - type: Transform pos: -45.5,-23.5 parent: 34 - - uid: 10300 + - uid: 9816 components: - type: Transform - pos: -12.5,-2.5 + pos: -47.5,0.5 parent: 34 - - uid: 10953 + - uid: 10300 components: - type: Transform - pos: -28.5,-2.5 + pos: -12.5,-2.5 parent: 34 - uid: 10955 components: @@ -70309,11 +72141,21 @@ entities: - type: Transform pos: 11.5,-39.5 parent: 34 + - uid: 11053 + components: + - type: Transform + pos: -47.5,-7.5 + parent: 34 - uid: 11142 components: - type: Transform pos: -12.5,4.5 parent: 34 + - uid: 11282 + components: + - type: Transform + pos: -25.5,-3.5 + parent: 34 - uid: 11359 components: - type: Transform @@ -70355,6 +72197,11 @@ entities: - type: Transform pos: 48.5,-42.5 parent: 34 + - uid: 14703 + components: + - type: Transform + pos: 20.5,13.5 + parent: 34 - proto: RandomSnacks entities: - uid: 4037 @@ -70362,11 +72209,6 @@ entities: - type: Transform pos: -8.5,-48.5 parent: 34 - - uid: 11216 - components: - - type: Transform - pos: 22.5,11.5 - parent: 34 - proto: RandomSoap entities: - uid: 9630 @@ -70386,6 +72228,23 @@ entities: - type: Transform pos: -5.5,-45.5 parent: 34 + - uid: 5048 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,-45.5 + parent: 34 + - uid: 9254 + components: + - type: Transform + pos: 34.5,12.5 + parent: 34 + - uid: 9810 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -48.5,0.5 + parent: 34 - uid: 10237 components: - type: Transform @@ -70416,11 +72275,6 @@ entities: - type: Transform pos: -9.5,-1.5 parent: 34 - - uid: 10243 - components: - - type: Transform - pos: -23.5,-7.5 - parent: 34 - uid: 10244 components: - type: Transform @@ -70446,11 +72300,6 @@ entities: - type: Transform pos: -47.5,4.5 parent: 34 - - uid: 10292 - components: - - type: Transform - pos: -44.5,-10.5 - parent: 34 - uid: 10867 components: - type: Transform @@ -70466,11 +72315,6 @@ entities: - type: Transform pos: 27.5,-40.5 parent: 34 - - uid: 10876 - components: - - type: Transform - pos: 22.5,-43.5 - parent: 34 - uid: 10877 components: - type: Transform @@ -70501,41 +72345,6 @@ entities: - type: Transform pos: -54.5,-10.5 parent: 34 - - uid: 11217 - components: - - type: Transform - pos: 19.5,12.5 - parent: 34 - - uid: 11218 - components: - - type: Transform - pos: 20.5,11.5 - parent: 34 - - uid: 11280 - components: - - type: Transform - pos: 25.5,10.5 - parent: 34 - - uid: 11281 - components: - - type: Transform - pos: 28.5,12.5 - parent: 34 - - uid: 11282 - components: - - type: Transform - pos: 27.5,12.5 - parent: 34 - - uid: 11283 - components: - - type: Transform - pos: 28.5,10.5 - parent: 34 - - uid: 11284 - components: - - type: Transform - pos: 24.5,12.5 - parent: 34 - uid: 11653 components: - type: Transform @@ -70591,13 +72400,18 @@ entities: - type: Transform pos: 17.5,-7.5 parent: 34 - - uid: 14153 + - uid: 14370 components: - type: Transform - pos: 31.5,8.5 + pos: -44.5,4.5 parent: 34 - proto: RandomSpawner100 entities: + - uid: 10280 + components: + - type: Transform + pos: 31.5,9.5 + parent: 34 - uid: 12243 components: - type: Transform @@ -70609,6 +72423,31 @@ entities: - type: Transform pos: 42.5,10.5 parent: 34 + - uid: 14149 + components: + - type: Transform + pos: -44.5,9.5 + parent: 34 + - uid: 14337 + components: + - type: Transform + pos: -49.5,10.5 + parent: 34 + - uid: 14338 + components: + - type: Transform + pos: -45.5,7.5 + parent: 34 + - uid: 14339 + components: + - type: Transform + pos: -48.5,9.5 + parent: 34 + - uid: 14456 + components: + - type: Transform + pos: 25.5,9.5 + parent: 34 - proto: RandomVending entities: - uid: 3956 @@ -70641,6 +72480,11 @@ entities: - type: Transform pos: -36.5,-25.5 parent: 34 + - uid: 14657 + components: + - type: Transform + pos: -37.5,-4.5 + parent: 34 - proto: RandomVendingDrinks entities: - uid: 10952 @@ -70648,8 +72492,18 @@ entities: - type: Transform pos: 4.5,16.5 parent: 34 + - uid: 14165 + components: + - type: Transform + pos: 60.5,-39.5 + parent: 34 - proto: RandomVendingSnacks entities: + - uid: 4959 + components: + - type: Transform + pos: -37.5,-7.5 + parent: 34 - uid: 6202 components: - type: Transform @@ -70674,9 +72528,6 @@ entities: - type: Transform pos: -38.5,7.5 parent: 34 - - type: DeviceLinkSink - links: - - 11254 - proto: ReinforcedGirder entities: - uid: 165 @@ -70749,21 +72600,31 @@ entities: - type: Transform pos: 42.5,12.5 parent: 34 - - uid: 6513 + - uid: 6710 components: - type: Transform - pos: 37.5,11.5 + pos: 28.5,20.5 parent: 34 - - uid: 6535 + - uid: 6730 components: - type: Transform - pos: 30.5,17.5 + pos: 19.5,20.5 parent: 34 - uid: 7991 components: - type: Transform pos: 54.5,-0.5 parent: 34 + - uid: 10387 + components: + - type: Transform + pos: 25.5,20.5 + parent: 34 + - uid: 10411 + components: + - type: Transform + pos: 38.5,20.5 + parent: 34 - uid: 11837 components: - type: Transform @@ -70774,6 +72635,11 @@ entities: - type: Transform pos: -10.5,16.5 parent: 34 + - uid: 12103 + components: + - type: Transform + pos: -47.5,-55.5 + parent: 34 - uid: 12621 components: - type: Transform @@ -70794,15 +72660,11 @@ entities: - type: Transform pos: -62.5,-5.5 parent: 34 - - uid: 13150 - components: - - type: Transform - pos: 18.5,20.5 - parent: 34 - - uid: 13160 + - uid: 13210 components: - type: Transform - pos: 20.5,19.5 + rot: 1.5707963267948966 rad + pos: -63.5,7.5 parent: 34 - uid: 13339 components: @@ -70833,11 +72695,6 @@ entities: rot: 1.5707963267948966 rad pos: 55.5,-50.5 parent: 34 - - uid: 13834 - components: - - type: Transform - pos: -47.5,-56.5 - parent: 34 - uid: 13855 components: - type: Transform @@ -70901,10 +72758,76 @@ entities: - type: Transform pos: 74.5,-27.5 parent: 34 - - uid: 14347 + - uid: 14419 + components: + - type: Transform + pos: 39.5,15.5 + parent: 34 + - uid: 14420 + components: + - type: Transform + pos: 39.5,19.5 + parent: 34 + - uid: 14422 + components: + - type: Transform + pos: 42.5,14.5 + parent: 34 + - uid: 14489 + components: + - type: Transform + pos: 32.5,22.5 + parent: 34 + - uid: 14492 + components: + - type: Transform + pos: 30.5,22.5 + parent: 34 + - uid: 14493 + components: + - type: Transform + pos: 35.5,22.5 + parent: 34 + - uid: 14696 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -53.5,16.5 + parent: 34 + - uid: 14727 + components: + - type: Transform + pos: 76.5,-29.5 + parent: 34 + - uid: 14728 + components: + - type: Transform + pos: 76.5,-17.5 + parent: 34 + - uid: 14733 components: - type: Transform - pos: -39.5,-56.5 + pos: 74.5,-29.5 + parent: 34 + - uid: 14734 + components: + - type: Transform + pos: 76.5,-27.5 + parent: 34 + - uid: 14735 + components: + - type: Transform + pos: 76.5,-19.5 + parent: 34 + - uid: 14736 + components: + - type: Transform + pos: 74.5,-17.5 + parent: 34 + - uid: 14740 + components: + - type: Transform + pos: -65.5,-30.5 parent: 34 - proto: ReinforcedPlasmaWindow entities: @@ -71035,11 +72958,6 @@ entities: - type: Transform pos: -15.5,5.5 parent: 34 - - uid: 229 - components: - - type: Transform - pos: 18.5,12.5 - parent: 34 - uid: 264 components: - type: Transform @@ -71050,46 +72968,6 @@ entities: - type: Transform pos: -0.5,-2.5 parent: 34 - - uid: 496 - components: - - type: Transform - pos: -27.5,-8.5 - parent: 34 - - uid: 497 - components: - - type: Transform - pos: -27.5,-7.5 - parent: 34 - - uid: 514 - components: - - type: Transform - pos: -28.5,-5.5 - parent: 34 - - uid: 515 - components: - - type: Transform - pos: -28.5,-4.5 - parent: 34 - - uid: 516 - components: - - type: Transform - pos: -28.5,-3.5 - parent: 34 - - uid: 572 - components: - - type: Transform - pos: -32.5,-20.5 - parent: 34 - - uid: 614 - components: - - type: Transform - pos: -33.5,-20.5 - parent: 34 - - uid: 615 - components: - - type: Transform - pos: -35.5,-20.5 - parent: 34 - uid: 657 components: - type: Transform @@ -71175,11 +73053,6 @@ entities: - type: Transform pos: 16.5,-15.5 parent: 34 - - uid: 916 - components: - - type: Transform - pos: -25.5,-9.5 - parent: 34 - uid: 997 components: - type: Transform @@ -71190,6 +73063,11 @@ entities: - type: Transform pos: 15.5,-6.5 parent: 34 + - uid: 1041 + components: + - type: Transform + pos: 25.5,17.5 + parent: 34 - uid: 1042 components: - type: Transform @@ -71400,10 +73278,32 @@ entities: - type: Transform pos: -32.5,4.5 parent: 34 - - uid: 2078 + - uid: 2047 components: - type: Transform - pos: -35.5,-24.5 + rot: 3.141592653589793 rad + pos: -49.5,-2.5 + parent: 34 + - uid: 2073 + components: + - type: Transform + pos: 29.5,17.5 + parent: 34 + - uid: 2179 + components: + - type: Transform + pos: -43.5,-1.5 + parent: 34 + - uid: 2244 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,-46.5 + parent: 34 + - uid: 2269 + components: + - type: Transform + pos: -47.5,-4.5 parent: 34 - uid: 2288 components: @@ -71430,6 +73330,16 @@ entities: - type: Transform pos: 46.5,-10.5 parent: 34 + - uid: 2589 + components: + - type: Transform + pos: -44.5,11.5 + parent: 34 + - uid: 2590 + components: + - type: Transform + pos: -45.5,11.5 + parent: 34 - uid: 2694 components: - type: Transform @@ -71447,6 +73357,11 @@ entities: - type: Transform pos: 11.5,-30.5 parent: 34 + - uid: 3106 + components: + - type: Transform + pos: -47.5,11.5 + parent: 34 - uid: 3189 components: - type: Transform @@ -71475,32 +73390,40 @@ entities: - uid: 3304 components: - type: Transform - pos: 18.5,11.5 + rot: 1.5707963267948966 rad + pos: 22.5,17.5 parent: 34 - - uid: 3332 + - uid: 3353 components: - type: Transform - pos: -36.5,-16.5 + pos: 26.5,17.5 parent: 34 - - uid: 3333 + - uid: 3357 components: - type: Transform - pos: -36.5,-17.5 + pos: 27.5,17.5 parent: 34 - - uid: 3334 + - uid: 3358 components: - type: Transform - pos: -36.5,-18.5 + pos: 28.5,17.5 parent: 34 - - uid: 3347 + - uid: 3361 components: - type: Transform - pos: -29.5,-2.5 + rot: 1.5707963267948966 rad + pos: 21.5,17.5 parent: 34 - - uid: 3348 + - uid: 3362 components: - type: Transform - pos: -30.5,-2.5 + rot: 1.5707963267948966 rad + pos: 23.5,17.5 + parent: 34 + - uid: 3365 + components: + - type: Transform + pos: -46.5,11.5 parent: 34 - uid: 3532 components: @@ -71637,6 +73560,11 @@ entities: - type: Transform pos: -11.5,-48.5 parent: 34 + - uid: 3987 + components: + - type: Transform + pos: -40.5,-9.5 + parent: 34 - uid: 4058 components: - type: Transform @@ -71827,6 +73755,11 @@ entities: - type: Transform pos: 51.5,-1.5 parent: 34 + - uid: 4690 + components: + - type: Transform + pos: 36.5,11.5 + parent: 34 - uid: 4691 components: - type: Transform @@ -71978,21 +73911,6 @@ entities: - type: Transform pos: 5.5,-55.5 parent: 34 - - uid: 5276 - components: - - type: Transform - pos: 21.5,-44.5 - parent: 34 - - uid: 5277 - components: - - type: Transform - pos: 20.5,-44.5 - parent: 34 - - uid: 5279 - components: - - type: Transform - pos: 22.5,-44.5 - parent: 34 - uid: 5404 components: - type: Transform @@ -72043,11 +73961,6 @@ entities: - type: Transform pos: 30.5,-42.5 parent: 34 - - uid: 5511 - components: - - type: Transform - pos: 53.5,-45.5 - parent: 34 - uid: 5515 components: - type: Transform @@ -72138,53 +74051,38 @@ entities: - type: Transform pos: 31.5,-46.5 parent: 34 - - uid: 5918 + - uid: 5844 components: - type: Transform - pos: -34.5,0.5 + rot: 3.141592653589793 rad + pos: 20.5,-46.5 parent: 34 - - uid: 5919 + - uid: 5846 components: - type: Transform - pos: -35.5,0.5 + rot: 3.141592653589793 rad + pos: 22.5,-46.5 parent: 34 - - uid: 5927 + - uid: 5918 components: - type: Transform - pos: -44.5,6.5 + pos: -34.5,0.5 parent: 34 - - uid: 5928 + - uid: 5919 components: - type: Transform - pos: -57.5,0.5 + pos: -35.5,0.5 parent: 34 - - uid: 5935 + - uid: 5928 components: - type: Transform - rot: 3.141592653589793 rad - pos: -49.5,-11.5 + pos: -57.5,0.5 parent: 34 - uid: 5946 components: - type: Transform pos: -57.5,-0.5 parent: 34 - - uid: 6088 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -48.5,-11.5 - parent: 34 - - uid: 6206 - components: - - type: Transform - pos: 15.5,15.5 - parent: 34 - - uid: 6207 - components: - - type: Transform - pos: 15.5,14.5 - parent: 34 - uid: 6230 components: - type: Transform @@ -72230,16 +74128,6 @@ entities: - type: Transform pos: 26.5,-15.5 parent: 34 - - uid: 7380 - components: - - type: Transform - pos: 32.5,9.5 - parent: 34 - - uid: 7381 - components: - - type: Transform - pos: 31.5,9.5 - parent: 34 - uid: 7492 components: - type: Transform @@ -72260,6 +74148,11 @@ entities: - type: Transform pos: -56.5,-21.5 parent: 34 + - uid: 7640 + components: + - type: Transform + pos: 49.5,-46.5 + parent: 34 - uid: 7760 components: - type: Transform @@ -72315,6 +74208,12 @@ entities: - type: Transform pos: 46.5,-0.5 parent: 34 + - uid: 9755 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,-24.5 + parent: 34 - uid: 10252 components: - type: Transform @@ -72330,20 +74229,20 @@ entities: - type: Transform pos: -4.5,15.5 parent: 34 - - uid: 10490 + - uid: 10486 components: - type: Transform - pos: 46.5,-1.5 + pos: 50.5,-46.5 parent: 34 - - uid: 10628 + - uid: 10490 components: - type: Transform - pos: -45.5,6.5 + pos: 46.5,-1.5 parent: 34 - - uid: 10629 + - uid: 10818 components: - type: Transform - pos: -46.5,6.5 + pos: 51.5,-46.5 parent: 34 - uid: 10824 components: @@ -72365,26 +74264,6 @@ entities: - type: Transform pos: -6.5,-52.5 parent: 34 - - uid: 11207 - components: - - type: Transform - pos: 21.5,13.5 - parent: 34 - - uid: 11264 - components: - - type: Transform - pos: 27.5,13.5 - parent: 34 - - uid: 11265 - components: - - type: Transform - pos: 26.5,13.5 - parent: 34 - - uid: 11266 - components: - - type: Transform - pos: 25.5,13.5 - parent: 34 - uid: 11295 components: - type: Transform @@ -72630,11 +74509,6 @@ entities: - type: Transform pos: 43.5,-17.5 parent: 34 - - uid: 13077 - components: - - type: Transform - pos: 19.5,17.5 - parent: 34 - uid: 13083 components: - type: Transform @@ -72645,45 +74519,25 @@ entities: - type: Transform pos: 16.5,17.5 parent: 34 - - uid: 13087 - components: - - type: Transform - pos: 20.5,16.5 - parent: 34 - - uid: 13088 - components: - - type: Transform - pos: 20.5,15.5 - parent: 34 - - uid: 13089 - components: - - type: Transform - pos: 20.5,14.5 - parent: 34 - uid: 13091 components: - type: Transform pos: 17.5,17.5 parent: 34 - - uid: 13209 - components: - - type: Transform - pos: 50.5,-45.5 - parent: 34 - - uid: 13210 + - uid: 13137 components: - type: Transform - pos: 51.5,-45.5 + pos: -48.5,11.5 parent: 34 - uid: 13215 components: - type: Transform pos: -41.5,-18.5 parent: 34 - - uid: 13219 + - uid: 13217 components: - type: Transform - pos: 49.5,-45.5 + pos: 36.5,12.5 parent: 34 - uid: 13225 components: @@ -72695,11 +74549,6 @@ entities: - type: Transform pos: 71.5,-23.5 parent: 34 - - uid: 13393 - components: - - type: Transform - pos: 52.5,-45.5 - parent: 34 - uid: 13413 components: - type: Transform @@ -72812,6 +74661,11 @@ entities: - type: Transform pos: 59.5,-50.5 parent: 34 + - uid: 14071 + components: + - type: Transform + pos: -47.5,-3.5 + parent: 34 - uid: 14074 components: - type: Transform @@ -72824,19 +74678,59 @@ entities: rot: 3.141592653589793 rad pos: 20.5,-38.5 parent: 34 + - uid: 14409 + components: + - type: Transform + pos: 52.5,-46.5 + parent: 34 + - uid: 14428 + components: + - type: Transform + pos: 34.5,19.5 + parent: 34 + - uid: 14436 + components: + - type: Transform + pos: 33.5,19.5 + parent: 34 + - uid: 14437 + components: + - type: Transform + pos: 35.5,16.5 + parent: 34 + - uid: 14438 + components: + - type: Transform + pos: 35.5,18.5 + parent: 34 + - uid: 14439 + components: + - type: Transform + pos: 35.5,17.5 + parent: 34 + - uid: 14440 + components: + - type: Transform + pos: 32.5,19.5 + parent: 34 + - uid: 14441 + components: + - type: Transform + pos: 31.5,19.5 + parent: 34 - proto: ResearchAndDevelopmentServer entities: - - uid: 581 + - uid: 2097 components: - type: Transform - pos: -33.5,-7.5 + pos: -48.5,-14.5 parent: 34 - proto: ReverseEngineeringMachine entities: - - uid: 4520 + - uid: 7140 components: - type: Transform - pos: -35.5,-19.5 + pos: -43.5,-8.5 parent: 34 - proto: RiotShield entities: @@ -72870,6 +74764,13 @@ entities: rot: -1.5707963267948966 rad pos: -11.5,-11.5 parent: 34 +- proto: RobustHarvestChemistryBottle + entities: + - uid: 486 + components: + - type: Transform + pos: -16.341764,-8.252501 + parent: 34 - proto: RollerBed entities: - uid: 13673 @@ -72913,11 +74814,6 @@ entities: - type: Transform pos: -7.5,-33.5 parent: 34 - - uid: 930 - components: - - type: Transform - pos: -31.5,-6.5 - parent: 34 - uid: 13828 components: - type: Transform @@ -72950,6 +74846,43 @@ entities: - type: Transform pos: -42.5,-31.5 parent: 34 +- proto: ScrapBucket + entities: + - uid: 14451 + components: + - type: Transform + pos: 31.541887,11.440897 + parent: 34 +- proto: ScrapCamera + entities: + - uid: 14473 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.408846,17.57983 + parent: 34 +- proto: ScrapCloset + entities: + - uid: 14480 + components: + - type: Transform + pos: 33.60652,15.458921 + parent: 34 +- proto: ScrapFaxMachine + entities: + - uid: 14450 + components: + - type: Transform + pos: 34.510635,17.331522 + parent: 34 +- proto: ScrapPAI + entities: + - uid: 14449 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.541885,16.409647 + parent: 34 - proto: Screen entities: - uid: 4693 @@ -72991,11 +74924,6 @@ entities: - type: Transform pos: -15.5,-19.5 parent: 34 - - uid: 13072 - components: - - type: Transform - pos: -36.5,-9.5 - parent: 34 - uid: 13073 components: - type: Transform @@ -73033,13 +74961,6 @@ entities: - type: Transform pos: 33.5,-6.5 parent: 34 -- proto: SeedExtractor - entities: - - uid: 390 - components: - - type: Transform - pos: -20.5,-8.5 - parent: 34 - proto: ShardGlass entities: - uid: 12772 @@ -73114,13 +75035,6 @@ entities: parent: 34 - proto: SheetGlass entities: - - uid: 1942 - components: - - type: Transform - parent: 2529 - - type: Physics - canCollide: False - - type: InsideEntityStorage - uid: 2319 components: - type: Transform @@ -73148,6 +75062,26 @@ entities: - type: Transform pos: -46.328968,-19.41563 parent: 34 +- proto: SheetGlass1 + entities: + - uid: 5050 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.428106,-39.523956 + parent: 34 + - uid: 5051 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.396856,-39.35208 + parent: 34 + - uid: 5055 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.568731,-39.69583 + parent: 34 - proto: SheetPaper entities: - uid: 11945 @@ -73197,13 +75131,6 @@ entities: count: 10 - proto: SheetPlastic entities: - - uid: 2061 - components: - - type: Transform - parent: 2529 - - type: Physics - canCollide: False - - type: InsideEntityStorage - uid: 2320 components: - type: Transform @@ -73243,13 +75170,6 @@ entities: - type: Transform pos: -42.975796,-37.535988 parent: 34 - - uid: 2073 - components: - - type: Transform - parent: 2529 - - type: Physics - canCollide: False - - type: InsideEntityStorage - uid: 2318 components: - type: Transform @@ -73308,6 +75228,34 @@ entities: - type: Transform pos: -28.644379,-30.493353 parent: 34 +- proto: ShelfMetal + entities: + - uid: 14749 + components: + - type: Transform + pos: -50.5,3.5 + parent: 34 +- proto: ShelfRWood + entities: + - uid: 14748 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,-30.5 + parent: 34 +- proto: ShelfWood + entities: + - uid: 14747 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -35.5,-6.5 + parent: 34 + - uid: 14750 + components: + - type: Transform + pos: -18.5,-32.5 + parent: 34 - proto: Shinai entities: - uid: 147 @@ -73346,130 +75294,88 @@ entities: - type: Transform pos: -11.5,-10.5 parent: 34 - - type: DeviceLinkSink - links: - - 246 - uid: 844 components: - type: Transform pos: -10.5,-10.5 parent: 34 - - type: DeviceLinkSink - links: - - 246 - uid: 845 components: - type: Transform pos: -9.5,-10.5 parent: 34 - - type: DeviceLinkSink - links: - - 246 - uid: 846 components: - type: Transform pos: -8.5,-10.5 parent: 34 - - type: DeviceLinkSink - links: - - 246 + - uid: 2172 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -40.5,-12.5 + parent: 34 - uid: 3622 components: - type: Transform pos: 32.5,-12.5 parent: 34 - - type: DeviceLinkSink - links: - - 4633 - uid: 3623 components: - type: Transform pos: 32.5,-13.5 parent: 34 - - type: DeviceLinkSink - links: - - 4633 - uid: 3658 components: - type: Transform pos: 15.5,-3.5 parent: 34 - - type: DeviceLinkSink - links: - - 3492 - uid: 3690 components: - type: Transform pos: 15.5,-4.5 parent: 34 - - type: DeviceLinkSink - links: - - 3492 - uid: 3711 components: - type: Transform pos: 15.5,-10.5 parent: 34 - - type: DeviceLinkSink - links: - - 3523 - uid: 4077 components: - type: Transform pos: 15.5,-6.5 parent: 34 - - type: DeviceLinkSink - links: - - 3631 - uid: 4157 components: - type: Transform pos: 15.5,-7.5 parent: 34 - - type: DeviceLinkSink - links: - - 3631 - uid: 4415 components: - type: Transform pos: 34.5,-1.5 parent: 34 - - type: DeviceLinkSink - links: - - 2543 - uid: 4511 components: - type: Transform pos: 15.5,-9.5 parent: 34 - - type: DeviceLinkSink - links: - - 3523 - uid: 4709 components: - type: Transform pos: 35.5,-1.5 parent: 34 - - type: DeviceLinkSink - links: - - 2543 - uid: 4934 components: - type: Transform rot: 1.5707963267948966 rad pos: 11.5,6.5 parent: 34 - - type: DeviceLinkSink - links: - - 2159 - uid: 4958 components: - type: Transform pos: 32.5,-14.5 parent: 34 - - type: DeviceLinkSink - links: - - 4633 - uid: 5006 components: - type: Transform @@ -73478,16 +75384,11 @@ entities: parent: 34 - type: DeviceLinkSink invokeCounter: 1 - links: - - 9989 - uid: 5268 components: - type: Transform pos: 35.5,-15.5 parent: 34 - - type: DeviceLinkSink - links: - - 4633 - uid: 5312 components: - type: Transform @@ -73495,16 +75396,11 @@ entities: parent: 34 - type: DeviceLinkSink invokeCounter: 1 - links: - - 12938 - uid: 5352 components: - type: Transform pos: 33.5,-15.5 parent: 34 - - type: DeviceLinkSink - links: - - 4633 - uid: 5541 components: - type: Transform @@ -73512,8 +75408,6 @@ entities: parent: 34 - type: DeviceLinkSink invokeCounter: 1 - links: - - 12938 - uid: 6093 components: - type: Transform @@ -73521,104 +75415,69 @@ entities: parent: 34 - type: DeviceLinkSink invokeCounter: 2 - links: - - 12938 - uid: 7097 components: - type: Transform pos: -35.5,0.5 parent: 34 - - type: DeviceLinkSink - links: - - 2278 - uid: 7098 components: - type: Transform pos: -34.5,0.5 parent: 34 - - type: DeviceLinkSink - links: - - 2278 - uid: 12328 components: - type: Transform pos: -15.5,-39.5 parent: 34 - - type: DeviceLinkSink - links: - - 7459 - uid: 12351 components: - type: Transform rot: 1.5707963267948966 rad pos: -14.5,-38.5 parent: 34 - - type: DeviceLinkSink - links: - - 7459 - uid: 12540 components: - type: Transform rot: 1.5707963267948966 rad pos: -40.5,-13.5 parent: 34 - - type: DeviceLinkSink - links: - - 12999 - uid: 12542 components: - type: Transform rot: 3.141592653589793 rad pos: -44.5,-11.5 parent: 34 - - type: DeviceLinkSink - links: - - 12999 - uid: 12716 components: - type: Transform rot: 3.141592653589793 rad pos: -45.5,-11.5 parent: 34 - - type: DeviceLinkSink - links: - - 12999 - uid: 12738 components: - type: Transform rot: 3.141592653589793 rad pos: -46.5,-11.5 parent: 34 - - type: DeviceLinkSink - links: - - 12999 - uid: 12758 components: - type: Transform rot: 1.5707963267948966 rad pos: -41.5,-18.5 parent: 34 - - type: DeviceLinkSink - links: - - 10439 - uid: 12900 components: - type: Transform rot: 1.5707963267948966 rad pos: 11.5,8.5 parent: 34 - - type: DeviceLinkSink - links: - - 2159 - uid: 12901 components: - type: Transform rot: 1.5707963267948966 rad pos: 11.5,7.5 parent: 34 - - type: DeviceLinkSink - links: - - 2159 - uid: 12903 components: - type: Transform @@ -73626,8 +75485,6 @@ entities: parent: 34 - type: DeviceLinkSink invokeCounter: 1 - links: - - 2159 - uid: 12904 components: - type: Transform @@ -73635,8 +75492,6 @@ entities: parent: 34 - type: DeviceLinkSink invokeCounter: 1 - links: - - 2159 - uid: 12905 components: - type: Transform @@ -73644,59 +75499,39 @@ entities: parent: 34 - type: DeviceLinkSink invokeCounter: 1 - links: - - 2159 - uid: 12946 components: - type: Transform pos: -16.5,-39.5 parent: 34 - - type: DeviceLinkSink - links: - - 7459 - uid: 12947 components: - type: Transform pos: -17.5,-39.5 parent: 34 - - type: DeviceLinkSink - links: - - 7459 - uid: 12948 components: - type: Transform pos: -18.5,-39.5 parent: 34 - - type: DeviceLinkSink - links: - - 7459 - uid: 12951 components: - type: Transform rot: 3.141592653589793 rad pos: -18.5,-36.5 parent: 34 - - type: DeviceLinkSink - links: - - 7459 - uid: 12952 components: - type: Transform rot: 3.141592653589793 rad pos: -17.5,-36.5 parent: 34 - - type: DeviceLinkSink - links: - - 7459 - uid: 12971 components: - type: Transform rot: 1.5707963267948966 rad pos: -41.5,-19.5 parent: 34 - - type: DeviceLinkSink - links: - - 10439 - uid: 13544 components: - type: Transform @@ -73705,36 +75540,18 @@ entities: parent: 34 - type: DeviceLinkSink invokeCounter: 1 - links: - - 9989 - uid: 13659 components: - type: Transform pos: 34.5,-15.5 parent: 34 - - type: DeviceLinkSink - links: - - 4633 - uid: 14291 components: - type: Transform rot: 3.141592653589793 rad pos: 71.5,-23.5 parent: 34 - - type: DeviceLinkSink - links: - - 14269 -- proto: ShuttersWindowOpen - entities: - - uid: 1287 - components: - - type: Transform - pos: -26.5,-9.5 - parent: 34 - - type: DeviceLinkSink - links: - - 1163 -- proto: shuttle_manipulator +- proto: ShuttleManipulator entities: - uid: 13019 components: @@ -73743,6 +75560,12 @@ entities: parent: 34 - proto: SignAi entities: + - uid: 9275 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 51.5,-22.5 + parent: 34 - uid: 13308 components: - type: Transform @@ -73781,6 +75604,28 @@ entities: - Pressed: Open - proto: SignalButtonDirectional entities: + - uid: 2058 + components: + - type: MetaData + name: blast door button + - type: Transform + rot: 3.141592653589793 rad + pos: -47.5,-2.5 + parent: 34 + - type: DeviceLinkSource + linkedPorts: + 2232: + - Pressed: Open + - Pressed: Close + - Pressed: Toggle + 2211: + - Pressed: Open + - Pressed: Close + - Pressed: Toggle + 2204: + - Pressed: Close + - Pressed: Open + - Pressed: Toggle - uid: 2543 components: - type: Transform @@ -73797,6 +75642,23 @@ entities: - Pressed: Toggle - Pressed: Close - Pressed: Open + - uid: 5854 + components: + - type: MetaData + name: safety button + - type: Transform + pos: -51.5,-2.5 + parent: 34 + - type: DeviceLinkSource + linkedPorts: + 2232: + - Pressed: Open + - Pressed: Close + - Pressed: Toggle + 2211: + - Pressed: Open + - Pressed: Close + - Pressed: Toggle - uid: 7459 components: - type: Transform @@ -73856,6 +75718,30 @@ entities: - Pressed: Toggle - Pressed: Close - Pressed: Open + - uid: 14772 + components: + - type: MetaData + name: janitorial light button + - type: Transform + rot: 1.5707963267948966 rad + pos: -47.5,-6.5 + parent: 34 + - type: DeviceLinkSource + linkedPorts: + 14771: + - Pressed: Toggle + - Pressed: On + - Pressed: Off +- proto: SignalControlledValve + entities: + - uid: 2204 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -49.5,-0.5 + parent: 34 + - type: AtmosPipeColor + color: '#0335FCFF' - proto: SignalSwitch entities: - uid: 246 @@ -73919,19 +75805,6 @@ entities: 12699: - On: Forward - Off: Off - - uid: 1163 - components: - - type: Transform - pos: -25.5,-6.5 - parent: 34 - - type: DeviceLinkSource - linkedPorts: - 836: - - On: Open - - Off: Close - 1287: - - On: Close - - Off: Open - uid: 13678 components: - type: MetaData @@ -74092,19 +75965,6 @@ entities: - On: Toggle - Off: Toggle - Status: Toggle - - uid: 10413 - components: - - type: MetaData - name: Janitorial service lights - - type: Transform - rot: -1.5707963267948966 rad - pos: -30.5,-19.5 - parent: 34 - - type: DeviceLinkSource - linkedPorts: - 12371: - - On: On - - Off: Off - uid: 10439 components: - type: Transform @@ -74195,10 +76055,10 @@ entities: - Status: Toggle - proto: SignAnomaly entities: - - uid: 963 + - uid: 2256 components: - type: Transform - pos: -28.5,-6.5 + pos: -43.5,-1.5 parent: 34 - proto: SignAnomaly2 entities: @@ -74241,6 +76101,13 @@ entities: - type: Transform pos: -36.5,-29.5 parent: 34 +- proto: SignCans + entities: + - uid: 2234 + components: + - type: Transform + pos: -44.5,0.5 + parent: 34 - proto: SignCargo entities: - uid: 1892 @@ -74255,10 +76122,17 @@ entities: parent: 34 - proto: SignChapel entities: - - uid: 1992 + - uid: 10402 components: - type: Transform - pos: -23.5,-20.5 + rot: 1.5707963267948966 rad + pos: -26.5,-20.5 + parent: 34 + - uid: 14756 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,-20.5 parent: 34 - proto: SignChem entities: @@ -74293,13 +76167,12 @@ entities: rot: 1.5707963267948966 rad pos: 34.5,3.5 parent: 34 -- proto: SignCourt +- proto: SignCryo entities: - - uid: 13463 + - uid: 3364 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,-25.5 + pos: 24.5,15.5 parent: 34 - proto: SignCryogenicsMed entities: @@ -74308,10 +76181,10 @@ entities: - type: Transform pos: 2.5,-38.5 parent: 34 - - uid: 11318 + - uid: 3335 components: - type: Transform - pos: 15.5,17.5 + pos: 24.5,17.5 parent: 34 - uid: 13068 components: @@ -74381,6 +76254,11 @@ entities: rot: -1.5707963267948966 rad pos: -8.493627,-23.698729 parent: 34 + - uid: 14757 + components: + - type: Transform + pos: -40.48834,-11.737377 + parent: 34 - proto: SignDirectionalCryo entities: - uid: 12486 @@ -74391,23 +76269,17 @@ entities: parent: 34 - proto: SignDirectionalDorms entities: - - uid: 10387 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -7.518838,-23.716486 - parent: 34 - - uid: 10402 + - uid: 14712 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -5.4955645,1.703541 + rot: 1.5707963267948966 rad + pos: -26.495703,-2.7166195 parent: 34 - - uid: 10411 + - uid: 14713 components: - type: Transform - rot: 3.141592653589793 rad - pos: -36.482975,-20.252234 + rot: 1.5707963267948966 rad + pos: 15.529531,13.775507 parent: 34 - proto: SignDirectionalEng entities: @@ -74559,6 +76431,20 @@ entities: rot: 3.141592653589793 rad pos: 20.512169,-40.291626 parent: 34 +- proto: SignDirectionalLibrary + entities: + - uid: 10741 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.4704285,1.716758 + parent: 34 + - uid: 14758 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -40.497227,-11.213415 + parent: 34 - proto: SignDirectionalMed entities: - uid: 153 @@ -74623,6 +76509,18 @@ entities: rot: -1.5707963267948966 rad pos: -5.4643145,1.2813723 parent: 34 + - uid: 10821 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.4942465,-23.724592 + parent: 34 + - uid: 10822 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -36.507908,-20.26401 + parent: 34 - uid: 13008 components: - type: Transform @@ -74654,6 +76552,11 @@ entities: rot: 1.5707963267948966 rad pos: -36.501534,-2.2698255 parent: 34 + - uid: 14714 + components: + - type: Transform + pos: 15.513906,13.541132 + parent: 34 - proto: SignDirectionalSolar entities: - uid: 10391 @@ -74694,11 +76597,6 @@ entities: - type: Transform pos: 39.5,2.5 parent: 34 - - uid: 4707 - components: - - type: Transform - pos: -50.5,-2.5 - parent: 34 - proto: SignDisposalSpace entities: - uid: 11306 @@ -74727,18 +76625,6 @@ entities: rot: -1.5707963267948966 rad pos: 66.5,-25.5 parent: 34 - - uid: 14390 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -65.5,-25.5 - parent: 34 - - uid: 14391 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -65.5,-18.5 - parent: 34 - proto: SignEngineering entities: - uid: 2324 @@ -74799,15 +76685,13 @@ entities: - type: Transform pos: -15.5,-20.5 parent: 34 -- proto: SignHydro2 +- proto: SignHydro1 entities: - uid: 1273 components: - type: Transform pos: -14.5,-9.5 parent: 34 -- proto: SignHydro3 - entities: - uid: 10372 components: - type: Transform @@ -74844,11 +76728,24 @@ entities: rot: -1.5707963267948966 rad pos: 11.5,7.5 parent: 34 + - uid: 13463 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,-25.5 + parent: 34 - uid: 14190 components: - type: Transform pos: -10.5,1.5 parent: 34 +- proto: SignLibrary + entities: + - uid: 2761 + components: + - type: Transform + pos: -32.5,-2.5 + parent: 34 - proto: SignMail entities: - uid: 1895 @@ -74871,6 +76768,13 @@ entities: rot: -1.5707963267948966 rad pos: 10.5,-39.5 parent: 34 +- proto: SignNews + entities: + - uid: 8275 + components: + - type: Transform + pos: -34.5,-20.5 + parent: 34 - proto: SignNosmoking entities: - uid: 4377 @@ -74934,6 +76838,14 @@ entities: rot: 1.5707963267948966 rad pos: 46.5,-10.5 parent: 34 +- proto: SignRND + entities: + - uid: 953 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -47.5,-10.5 + parent: 34 - proto: SignRobo entities: - uid: 2567 @@ -74943,10 +76855,10 @@ entities: parent: 34 - proto: SignScience entities: - - uid: 599 + - uid: 2071 components: - type: Transform - pos: -30.5,-20.5 + pos: -40.5,-9.5 parent: 34 - proto: SignSec entities: @@ -75070,6 +76982,12 @@ entities: parent: 34 - proto: Sink entities: + - uid: 13148 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 54.5,-45.5 + parent: 34 - uid: 14172 components: - type: Transform @@ -75077,12 +76995,6 @@ entities: parent: 34 - proto: SinkStemlessWater entities: - - uid: 2216 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -49.5,-4.5 - parent: 34 - uid: 3531 components: - type: Transform @@ -75213,17 +77125,16 @@ entities: - type: Transform pos: -8.5,-40.5 parent: 34 - - uid: 11212 + - uid: 13146 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,12.5 + rot: 3.141592653589793 rad + pos: 49.5,-45.5 parent: 34 - - uid: 13411 + - uid: 13221 components: - type: Transform - rot: 3.141592653589793 rad - pos: 49.5,-44.5 + pos: 34.5,13.5 parent: 34 - proto: SolarAssembly entities: @@ -75570,10 +77481,10 @@ entities: parent: 34 - proto: SophicScribe entities: - - uid: 388 + - uid: 564 components: - type: Transform - pos: -27.5,-13.5 + pos: -28.5,-13.5 parent: 34 - proto: SpaceCash entities: @@ -75597,11 +77508,6 @@ entities: - type: Transform pos: -15.512994,-32.474026 parent: 34 - - uid: 13223 - components: - - type: Transform - pos: 53.56571,-44.59211 - parent: 34 - proto: SpaceCash10 entities: - uid: 5892 @@ -75635,27 +77541,39 @@ entities: - type: Transform pos: -50.773323,12.33099 parent: 34 -- proto: SpareIdCabinetFilled +- proto: SpaceCash1000 entities: - - uid: 11614 + - uid: 13149 components: - type: Transform - rot: 3.141592653589793 rad - pos: 40.5,-36.5 + pos: 52.513775,-45.15728 parent: 34 -- proto: SpawnMobAlexander +- proto: SpacemenFigureSpawner entities: - - uid: 2548 + - uid: 11203 components: - type: Transform - pos: -35.5,-16.5 + pos: -28.5,-3.5 + parent: 34 + - uid: 11204 + components: + - type: Transform + pos: -27.5,-3.5 + parent: 34 +- proto: SpareIdCabinetFilled + entities: + - uid: 11614 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,-36.5 parent: 34 - proto: SpawnMobArcticFoxSiobhan entities: - - uid: 13827 + - uid: 2926 components: - type: Transform - pos: -31.5,-8.5 + pos: -41.5,-9.5 parent: 34 - proto: SpawnMobBandito entities: @@ -75671,15 +77589,15 @@ entities: parent: 34 - proto: SpawnMobCatGeneric entities: - - uid: 10818 + - uid: 4967 components: - type: Transform - pos: -39.5,-4.5 + pos: 20.5,14.5 parent: 34 - - uid: 10822 + - uid: 12335 components: - type: Transform - pos: -39.5,-6.5 + pos: 17.5,11.5 parent: 34 - proto: SpawnMobCatRuntime entities: @@ -75729,13 +77647,6 @@ entities: - type: Transform pos: 40.5,-29.5 parent: 34 -- proto: SpawnMobJusticePet - entities: - - uid: 14337 - components: - - type: Transform - pos: 28.5,-37.5 - parent: 34 - proto: SpawnMobMcGriff entities: - uid: 4622 @@ -75775,6 +77686,13 @@ entities: - type: Transform pos: 27.5,-5.5 parent: 34 +- proto: SpawnMobSlothPaperwork + entities: + - uid: 10564 + components: + - type: Transform + pos: -31.5,-7.5 + parent: 34 - proto: SpawnMobSmile entities: - uid: 1846 @@ -75831,17 +77749,17 @@ entities: parent: 34 - proto: SpawnPointBotanist entities: - - uid: 228 + - uid: 382 components: - type: Transform pos: -19.5,-6.5 parent: 34 - - uid: 10421 + - uid: 2290 components: - type: Transform - pos: -18.5,-7.5 + pos: -20.5,-6.5 parent: 34 - - uid: 10422 + - uid: 4983 components: - type: Transform pos: -19.5,-7.5 @@ -75890,7 +77808,12 @@ entities: parent: 34 - proto: SpawnPointChaplain entities: - - uid: 10436 + - uid: 508 + components: + - type: Transform + pos: -33.5,-14.5 + parent: 34 + - uid: 574 components: - type: Transform pos: -27.5,-14.5 @@ -76050,13 +77973,20 @@ entities: - type: Transform pos: 10.5,8.5 parent: 34 -- proto: SpawnPointLocationMidRoundAntag +- proto: SpawnPointLibrarian entities: - - uid: 1072 + - uid: 13099 components: - type: Transform - pos: -41.5,-9.5 + pos: -34.5,-7.5 + parent: 34 + - uid: 13100 + components: + - type: Transform + pos: -29.5,-7.5 parent: 34 +- proto: SpawnPointLocationMidRoundAntag + entities: - uid: 4038 components: - type: Transform @@ -76067,16 +77997,6 @@ entities: - type: Transform pos: 24.5,8.5 parent: 34 - - uid: 10834 - components: - - type: Transform - pos: -23.5,-5.5 - parent: 34 - - uid: 10836 - components: - - type: Transform - pos: -28.5,-14.5 - parent: 34 - uid: 11239 components: - type: Transform @@ -76102,6 +78022,11 @@ entities: - type: Transform pos: 14.5,-42.5 parent: 34 + - uid: 14371 + components: + - type: Transform + pos: -46.5,8.5 + parent: 34 - proto: SpawnPointMartialArtist entities: - uid: 11940 @@ -76218,21 +78143,6 @@ entities: parent: 34 - proto: SpawnPointPassenger entities: - - uid: 1051 - components: - - type: Transform - pos: -44.5,1.5 - parent: 34 - - uid: 1057 - components: - - type: Transform - pos: -50.5,-7.5 - parent: 34 - - uid: 1064 - components: - - type: Transform - pos: -46.5,-3.5 - parent: 34 - uid: 10369 components: - type: Transform @@ -76268,46 +78178,6 @@ entities: - type: Transform pos: -14.5,-18.5 parent: 34 - - uid: 10478 - components: - - type: Transform - pos: -25.5,-17.5 - parent: 34 - - uid: 10480 - components: - - type: Transform - pos: -24.5,-17.5 - parent: 34 - - uid: 10481 - components: - - type: Transform - pos: -38.5,-4.5 - parent: 34 - - uid: 10482 - components: - - type: Transform - pos: -42.5,-4.5 - parent: 34 - - uid: 10483 - components: - - type: Transform - pos: -42.5,-6.5 - parent: 34 - - uid: 10484 - components: - - type: Transform - pos: -42.5,-5.5 - parent: 34 - - uid: 10485 - components: - - type: Transform - pos: -39.5,-2.5 - parent: 34 - - uid: 10486 - components: - - type: Transform - pos: -39.5,-8.5 - parent: 34 - uid: 10487 components: - type: Transform @@ -76368,35 +78238,55 @@ entities: - type: Transform pos: -11.5,-17.5 parent: 34 - - uid: 11053 + - uid: 11906 components: - type: Transform - pos: -50.5,1.5 + pos: 18.5,12.5 parent: 34 - - uid: 11054 + - uid: 13077 components: - type: Transform - pos: -45.5,-7.5 + pos: -35.5,-5.5 parent: 34 - - uid: 11055 + - uid: 14014 components: - type: Transform - pos: -47.5,-7.5 + pos: 3.5,-11.5 parent: 34 - - uid: 12897 + - uid: 14015 components: - type: Transform - pos: -51.5,-4.5 + pos: 1.5,-12.5 parent: 34 - - uid: 14014 + - uid: 14662 components: - type: Transform - pos: 3.5,-11.5 + pos: -33.5,-5.5 parent: 34 - - uid: 14015 + - uid: 14674 components: - type: Transform - pos: 1.5,-12.5 + pos: -24.5,-17.5 + parent: 34 + - uid: 14675 + components: + - type: Transform + pos: -25.5,-17.5 + parent: 34 + - uid: 14681 + components: + - type: Transform + pos: 22.5,12.5 + parent: 34 + - uid: 14682 + components: + - type: Transform + pos: 10.5,15.5 + parent: 34 + - uid: 14683 + components: + - type: Transform + pos: 8.5,15.5 parent: 34 - proto: SpawnPointPrisoner entities: @@ -76454,32 +78344,42 @@ entities: parent: 34 - proto: SpawnPointReporter entities: - - uid: 14069 + - uid: 13102 components: - type: Transform - pos: -49.5,-13.5 + pos: -34.5,-18.5 + parent: 34 + - uid: 13103 + components: + - type: Transform + pos: -35.5,-18.5 parent: 34 - proto: SpawnPointResearchAssistant entities: - - uid: 10220 + - uid: 14665 components: - type: Transform - pos: -28.5,-9.5 + pos: -50.5,-9.5 parent: 34 - - uid: 11349 + - uid: 14666 components: - type: Transform - pos: -29.5,-17.5 + pos: -49.5,-9.5 parent: 34 - - uid: 11350 + - uid: 14667 components: - type: Transform - pos: -28.5,-17.5 + pos: -41.5,-5.5 parent: 34 - - uid: 11424 + - uid: 14668 components: - type: Transform - pos: -28.5,-7.5 + pos: -29.5,-17.5 + parent: 34 + - uid: 14669 + components: + - type: Transform + pos: -30.5,-17.5 parent: 34 - proto: SpawnPointResearchDirector entities: @@ -76513,45 +78413,55 @@ entities: parent: 34 - proto: SpawnPointScientist entities: - - uid: 10440 + - uid: 14663 components: - type: Transform - pos: -25.5,-15.5 + pos: -50.5,-8.5 parent: 34 - - uid: 10441 + - uid: 14664 components: - type: Transform - pos: -24.5,-15.5 + pos: -50.5,-7.5 parent: 34 - - uid: 10442 + - uid: 14670 components: - type: Transform - pos: -28.5,-15.5 + pos: -29.5,-16.5 parent: 34 - - uid: 10443 + - uid: 14671 components: - type: Transform - pos: -29.5,-15.5 + pos: -30.5,-16.5 parent: 34 - - uid: 10444 + - uid: 14672 + components: + - type: Transform + pos: -25.5,-16.5 + parent: 34 + - uid: 14673 components: - type: Transform pos: -24.5,-16.5 parent: 34 - - uid: 10445 + - uid: 14676 components: - type: Transform - pos: -25.5,-16.5 + pos: -29.5,-15.5 parent: 34 - - uid: 10446 + - uid: 14677 components: - type: Transform - pos: -28.5,-16.5 + pos: -30.5,-15.5 parent: 34 - - uid: 10447 + - uid: 14678 components: - type: Transform - pos: -29.5,-16.5 + pos: -24.5,-15.5 + parent: 34 + - uid: 14679 + components: + - type: Transform + pos: -25.5,-15.5 parent: 34 - proto: SpawnPointSecurityCadet entities: @@ -76765,11 +78675,6 @@ entities: - type: Transform pos: 1.9681275,-3.6084273 parent: 34 - - uid: 11107 - components: - - type: Transform - pos: -50.3787,-3.3120065 - parent: 34 - proto: StasisBed entities: - uid: 3629 @@ -76795,6 +78700,39 @@ entities: - type: Transform pos: 71.5,-24.5 parent: 34 + - uid: 14372 + components: + - type: Transform + pos: -40.5,0.5 + parent: 34 + - uid: 14373 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -40.5,-21.5 + parent: 34 + - uid: 14374 + components: + - type: Transform + pos: -12.5,1.5 + parent: 34 + - uid: 14375 + components: + - type: Transform + pos: 23.5,-21.5 + parent: 34 + - uid: 14376 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,-34.5 + parent: 34 + - uid: 14532 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,15.5 + parent: 34 - proto: StationMapBroken entities: - uid: 6039 @@ -76803,19 +78741,10 @@ entities: rot: 3.141592653589793 rad pos: 44.5,-42.5 parent: 34 -- proto: SteelBench - entities: - - uid: 2737 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,18.5 - parent: 34 - - uid: 2738 + - uid: 14364 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,17.5 + pos: -50.5,8.5 parent: 34 - proto: Stool entities: @@ -76939,19 +78868,24 @@ entities: - type: Transform pos: -48.5,-40.5 parent: 34 + - uid: 12897 + components: + - type: Transform + pos: -44.5,2.5 + parent: 34 - proto: SubstationBasic entities: - uid: 2236 components: - type: MetaData - name: Dorm's substation + name: Epistemics Substation - type: Transform pos: -56.5,-3.5 parent: 34 - uid: 2762 components: - type: MetaData - name: Service/epistemic's substation + name: Service's Substation - type: Transform pos: -16.5,-14.5 parent: 34 @@ -77302,17 +79236,6 @@ entities: - SurveillanceCameraCommand nameSet: True id: Substation - - uid: 13445 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -33.5,-3.5 - parent: 34 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: MG's quarters - uid: 13690 components: - type: Transform @@ -77324,17 +79247,6 @@ entities: - SurveillanceCameraCommand nameSet: True id: CE's quarters - - uid: 13706 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,5.5 - parent: 34 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: HoS's quarters - uid: 14271 components: - type: Transform @@ -77361,6 +79273,22 @@ entities: - type: SurveillanceCamera nameSet: True id: AI Sat Power Center + - uid: 14718 + components: + - type: Transform + pos: 67.5,-26.5 + parent: 34 + - type: SurveillanceCamera + nameSet: True + id: AI Core Secondary Camera + - uid: 14723 + components: + - type: Transform + pos: -27.5,-39.5 + parent: 34 + - type: SurveillanceCamera + nameSet: True + id: Gravity Generator - proto: SurveillanceCameraEngineering entities: - uid: 1801 @@ -77517,6 +79445,11 @@ entities: id: Telecomms - proto: SurveillanceCameraGeneral entities: + - uid: 3469 + components: + - type: Transform + pos: -25.5,-1.5 + parent: 34 - uid: 4065 components: - type: Transform @@ -77551,16 +79484,6 @@ entities: - SurveillanceCameraGeneral nameSet: True id: arrivals west - - uid: 10696 - components: - - type: Transform - pos: -23.5,-1.5 - parent: 34 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: north solars - uid: 10697 components: - type: Transform @@ -77571,17 +79494,6 @@ entities: - SurveillanceCameraGeneral nameSet: True id: dorms north - - uid: 10698 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -40.5,-9.5 - parent: 34 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: dorms south - uid: 10699 components: - type: Transform @@ -77719,6 +79631,24 @@ entities: - SurveillanceCameraGeneral nameSet: True id: Court/Vault's hallway + - uid: 14660 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,14.5 + parent: 34 + - type: SurveillanceCamera + nameSet: True + id: Cryo + - uid: 14661 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,16.5 + parent: 34 + - type: SurveillanceCamera + nameSet: True + id: Dorms Hall - proto: SurveillanceCameraMedical entities: - uid: 5278 @@ -77743,17 +79673,6 @@ entities: - SurveillanceCameraMedical nameSet: True id: Psychologist's front - - uid: 6165 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,-26.5 - parent: 34 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraMedical - nameSet: True - id: Psychologist's listening room - uid: 6192 components: - type: Transform @@ -77856,60 +79775,88 @@ entities: - SurveillanceCameraScience nameSet: True id: Robotics - - uid: 10735 + - uid: 10771 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -29.5,-16.5 + rot: 1.5707963267948966 rad + pos: -29.5,2.5 parent: 34 - type: SurveillanceCamera setupAvailableNetworks: - SurveillanceCameraScience nameSet: True - id: chapel - - uid: 10736 + id: forensic mantis + - uid: 12371 components: - type: Transform - pos: -30.5,-11.5 + pos: -51.5,-14.5 parent: 34 - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraScience nameSet: True - id: interior - - uid: 10737 + id: Mystagogue's Office + - uid: 13072 components: - type: Transform - rot: 3.141592653589793 rad - pos: -27.5,-3.5 + rot: 1.5707963267948966 rad + pos: -48.5,0.5 parent: 34 - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraScience nameSet: True - id: artifact - - uid: 10738 + id: Epistemics Arti-Lab + - uid: 13076 components: - type: Transform rot: -1.5707963267948966 rad - pos: -35.5,-19.5 + pos: -43.5,-3.5 parent: 34 - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraScience nameSet: True - id: front desk - - uid: 10771 + id: Epistemics Front + - uid: 13078 components: - type: Transform rot: 1.5707963267948966 rad - pos: -29.5,2.5 + pos: -45.5,-8.5 parent: 34 - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraScience nameSet: True - id: forensic mantis + id: Epistemics Hall + - uid: 13107 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,-13.5 + parent: 34 + - type: SurveillanceCamera + nameSet: True + id: Chapel + - uid: 13706 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -38.5,4.5 + parent: 34 + - type: SurveillanceCamera + nameSet: True + id: Anomaly Lab + - uid: 14725 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -44.5,2.5 + parent: 34 + - type: SurveillanceCamera + nameSet: True + id: Gas Can Closet + - uid: 14726 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -49.5,-6.5 + parent: 34 + - type: SurveillanceCamera + nameSet: True + id: Prober - proto: SurveillanceCameraSecurity entities: - uid: 4508 @@ -77998,6 +79945,15 @@ entities: - SurveillanceCameraSecurity nameSet: True id: perma chow + - uid: 12338 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,-39.5 + parent: 34 + - type: SurveillanceCamera + nameSet: True + id: Clerk's Office - uid: 12883 components: - type: Transform @@ -78108,50 +80064,46 @@ entities: id: Prison EVA - proto: SurveillanceCameraService entities: - - uid: 10739 + - uid: 10740 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,-7.5 + rot: 1.5707963267948966 rad + pos: -7.5,-8.5 parent: 34 - type: SurveillanceCamera setupAvailableNetworks: - SurveillanceCameraService nameSet: True - id: botany - - uid: 10740 + id: kitchen + - uid: 10742 components: - type: Transform rot: 1.5707963267948966 rad - pos: -7.5,-8.5 + pos: -13.5,3.5 parent: 34 - type: SurveillanceCamera setupAvailableNetworks: - SurveillanceCameraService nameSet: True - id: kitchen - - uid: 10741 + id: storage + - uid: 11918 components: - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,-3.5 + rot: -1.5707963267948966 rad + pos: 7.5,6.5 parent: 34 - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraService nameSet: True - id: bar - - uid: 10742 + id: Lawyer Office + - uid: 12336 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,3.5 + rot: -1.5707963267948966 rad + pos: -31.5,-6.5 parent: 34 - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraService nameSet: True - id: storage + id: Library - uid: 12422 components: - type: Transform @@ -78163,14 +80115,32 @@ entities: - SurveillanceCameraService nameSet: True id: Dojo - - uid: 14067 + - uid: 13079 + components: + - type: Transform + pos: -21.5,-8.5 + parent: 34 + - type: SurveillanceCamera + nameSet: True + id: Botany + - uid: 13105 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -32.5,-17.5 + parent: 34 + - type: SurveillanceCamera + nameSet: True + id: Reporter's Office + - uid: 14129 components: - type: Transform rot: 1.5707963267948966 rad - pos: -48.5,-14.5 + pos: 5.5,-9.5 parent: 34 - type: SurveillanceCamera nameSet: True + id: bar - proto: SurveillanceCameraSupply entities: - uid: 8194 @@ -78218,31 +80188,25 @@ entities: id: Loading bay - proto: SurveillanceCameraWirelessRouterEntertainment entities: - - uid: 461 + - uid: 873 components: - type: Transform - pos: -48.5,-14.5 + pos: -34.5,-17.5 parent: 34 - proto: SurveillanceWirelessCameraMovableEntertainment entities: - - uid: 14050 + - uid: 2523 components: - type: Transform rot: 3.141592653589793 rad - pos: -48.5,-12.5 + pos: -33.5,-19.5 parent: 34 - - type: SurveillanceCamera - nameSet: True - id: NT News 1 - - uid: 14051 + - uid: 6530 components: - type: Transform rot: 3.141592653589793 rad - pos: -49.5,-12.5 + pos: -32.5,-19.5 parent: 34 - - type: SurveillanceCamera - nameSet: True - id: NT News 2 - proto: Syringe entities: - uid: 5151 @@ -78300,20 +80264,15 @@ entities: - type: Transform pos: -7.5,-5.5 parent: 34 - - uid: 863 - components: - - type: Transform - pos: -20.5,-3.5 - parent: 34 - - uid: 864 + - uid: 927 components: - type: Transform - pos: -20.5,-4.5 + pos: 28.5,16.5 parent: 34 - - uid: 908 + - uid: 1645 components: - type: Transform - pos: -35.5,-5.5 + pos: 27.5,16.5 parent: 34 - uid: 1888 components: @@ -78345,11 +80304,22 @@ entities: - type: Transform pos: -32.5,-29.5 parent: 34 + - uid: 2065 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -51.5,-1.5 + parent: 34 - uid: 2125 components: - type: Transform pos: -13.5,-24.5 parent: 34 + - uid: 2169 + components: + - type: Transform + pos: -49.5,2.5 + parent: 34 - uid: 2359 components: - type: Transform @@ -78360,6 +80330,11 @@ entities: - type: Transform pos: 10.5,-38.5 parent: 34 + - uid: 3149 + components: + - type: Transform + pos: 26.5,16.5 + parent: 34 - uid: 3541 components: - type: Transform @@ -78450,15 +80425,10 @@ entities: - type: Transform pos: 23.5,-16.5 parent: 34 - - uid: 7396 - components: - - type: Transform - pos: -35.5,-4.5 - parent: 34 - - uid: 7398 + - uid: 7122 components: - type: Transform - pos: -31.5,-11.5 + pos: -50.5,2.5 parent: 34 - uid: 7545 components: @@ -78491,11 +80461,6 @@ entities: - type: Transform pos: -42.5,9.5 parent: 34 - - uid: 11346 - components: - - type: Transform - pos: -28.5,-8.5 - parent: 34 - uid: 11595 components: - type: Transform @@ -78615,16 +80580,16 @@ entities: rot: 1.5707963267948966 rad pos: 11.5,-26.5 parent: 34 - - uid: 2025 + - uid: 2085 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -33.5,-17.5 + pos: -42.5,-19.5 parent: 34 - - uid: 2085 + - uid: 2099 components: - type: Transform - pos: -42.5,-19.5 + rot: 1.5707963267948966 rad + pos: -43.5,-5.5 parent: 34 - uid: 2281 components: @@ -78636,20 +80601,15 @@ entities: - type: Transform pos: -42.5,-17.5 parent: 34 - - uid: 2526 - components: - - type: Transform - pos: -32.5,-17.5 - parent: 34 - - uid: 2527 + - uid: 2695 components: - type: Transform - pos: -31.5,-17.5 + pos: 10.5,-26.5 parent: 34 - - uid: 2695 + - uid: 3323 components: - type: Transform - pos: 10.5,-26.5 + pos: -16.5,-8.5 parent: 34 - uid: 3693 components: @@ -78724,6 +80684,12 @@ entities: - type: Transform pos: 16.5,-6.5 parent: 34 + - uid: 5062 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -43.5,-7.5 + parent: 34 - uid: 5073 components: - type: Transform @@ -78734,11 +80700,10 @@ entities: - type: Transform pos: -1.5,-17.5 parent: 34 - - uid: 5510 + - uid: 6608 components: - type: Transform - rot: 3.141592653589793 rad - pos: 49.5,-44.5 + pos: -17.5,-8.5 parent: 34 - uid: 7049 components: @@ -78756,6 +80721,16 @@ entities: rot: -1.5707963267948966 rad pos: 6.5,-3.5 parent: 34 + - uid: 8781 + components: + - type: Transform + pos: 49.5,-45.5 + parent: 34 + - uid: 9256 + components: + - type: Transform + pos: 50.5,-45.5 + parent: 34 - uid: 10625 components: - type: Transform @@ -78766,6 +80741,12 @@ entities: - type: Transform pos: -42.5,-16.5 parent: 34 + - uid: 11462 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -43.5,-6.5 + parent: 34 - uid: 12116 components: - type: Transform @@ -78781,18 +80762,6 @@ entities: - type: Transform pos: -9.5,7.5 parent: 34 - - uid: 13197 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 53.5,-44.5 - parent: 34 - - uid: 13198 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 50.5,-44.5 - parent: 34 - uid: 13675 components: - type: Transform @@ -78878,25 +80847,39 @@ entities: rot: -1.5707963267948966 rad pos: 50.5,-42.5 parent: 34 - - uid: 11166 + - uid: 9850 components: - type: Transform - pos: -51.5,12.5 + rot: -1.5707963267948966 rad + pos: -30.5,-6.5 parent: 34 - - uid: 11167 + - uid: 10269 components: - type: Transform - pos: -51.5,13.5 + rot: -1.5707963267948966 rad + pos: -28.5,-6.5 parent: 34 - - uid: 11210 + - uid: 10270 components: - type: Transform - pos: 22.5,12.5 + rot: -1.5707963267948966 rad + pos: -29.5,-6.5 parent: 34 - - uid: 11211 + - uid: 10295 components: - type: Transform - pos: 22.5,11.5 + rot: -1.5707963267948966 rad + pos: -31.5,-6.5 + parent: 34 + - uid: 11166 + components: + - type: Transform + pos: -51.5,12.5 + parent: 34 + - uid: 11167 + components: + - type: Transform + pos: -51.5,13.5 parent: 34 - uid: 12162 components: @@ -78918,6 +80901,16 @@ entities: - type: Transform pos: 53.5,-31.5 parent: 34 + - uid: 13208 + components: + - type: Transform + pos: 34.5,13.5 + parent: 34 + - uid: 13209 + components: + - type: Transform + pos: 35.5,13.5 + parent: 34 - uid: 13849 components: - type: Transform @@ -78972,6 +80965,32 @@ entities: rot: -1.5707963267948966 rad pos: 17.5,-39.5 parent: 34 +- proto: TableFancyGreen + entities: + - uid: 10566 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,-4.5 + parent: 34 + - uid: 10568 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,-4.5 + parent: 34 + - uid: 10622 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,-3.5 + parent: 34 + - uid: 10623 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,-3.5 + parent: 34 - proto: TableFancyPurple entities: - uid: 3865 @@ -79000,6 +81019,11 @@ entities: - type: Transform pos: 14.5,-27.5 parent: 34 + - uid: 228 + components: + - type: Transform + pos: 16.5,11.5 + parent: 34 - uid: 833 components: - type: Transform @@ -79017,16 +81041,6 @@ entities: rot: 1.5707963267948966 rad pos: -52.5,-16.5 parent: 34 - - uid: 2228 - components: - - type: Transform - pos: -45.5,-4.5 - parent: 34 - - uid: 2250 - components: - - type: Transform - pos: -51.5,-6.5 - parent: 34 - uid: 2310 components: - type: Transform @@ -79087,11 +81101,6 @@ entities: - type: Transform pos: -49.5,6.5 parent: 34 - - uid: 5852 - components: - - type: Transform - pos: -50.5,2.5 - parent: 34 - uid: 7038 components: - type: Transform @@ -79220,11 +81229,6 @@ entities: - type: Transform pos: -18.5,-20.5 parent: 34 - - uid: 710 - components: - - type: Transform - pos: -34.5,-20.5 - parent: 34 - uid: 859 components: - type: Transform @@ -79352,6 +81356,11 @@ entities: - type: Transform pos: -21.5,1.5 parent: 34 + - uid: 9274 + components: + - type: Transform + pos: -40.5,-5.5 + parent: 34 - uid: 11844 components: - type: Transform @@ -79470,11 +81479,6 @@ entities: parent: 34 - proto: TableStone entities: - - uid: 2112 - components: - - type: Transform - pos: -43.5,2.5 - parent: 34 - uid: 2712 components: - type: Transform @@ -79492,11 +81496,28 @@ entities: parent: 34 - proto: TableWood entities: + - uid: 590 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,-14.5 + parent: 34 - uid: 787 components: - type: Transform pos: 8.5,-5.5 parent: 34 + - uid: 877 + components: + - type: Transform + pos: -32.5,-17.5 + parent: 34 + - uid: 952 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,-15.5 + parent: 34 - uid: 1552 components: - type: Transform @@ -79522,21 +81543,16 @@ entities: - type: Transform pos: -31.5,3.5 parent: 34 - - uid: 2185 + - uid: 2300 components: - type: Transform - pos: -43.5,-6.5 + pos: -33.5,-17.5 parent: 34 - uid: 2483 components: - type: Transform pos: -26.5,-31.5 parent: 34 - - uid: 3359 - components: - - type: Transform - pos: -32.5,-15.5 - parent: 34 - uid: 4329 components: - type: Transform @@ -79587,6 +81603,11 @@ entities: - type: Transform pos: -10.5,3.5 parent: 34 + - uid: 9847 + components: + - type: Transform + pos: -35.5,-7.5 + parent: 34 - uid: 11750 components: - type: Transform @@ -79628,6 +81649,36 @@ entities: - type: Transform pos: 34.5,-0.5 parent: 34 + - uid: 14427 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,16.5 + parent: 34 + - uid: 14429 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,17.5 + parent: 34 + - uid: 14430 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,18.5 + parent: 34 + - uid: 14434 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,18.5 + parent: 34 + - uid: 14435 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,18.5 + parent: 34 - proto: TableWoodReinforced entities: - uid: 130 @@ -79650,6 +81701,16 @@ entities: - type: Transform pos: -3.5,8.5 parent: 34 + - uid: 506 + components: + - type: Transform + pos: -25.5,-13.5 + parent: 34 + - uid: 507 + components: + - type: Transform + pos: -24.5,-13.5 + parent: 34 - uid: 601 components: - type: Transform @@ -79727,6 +81788,12 @@ entities: - type: Transform pos: -3.5,5.5 parent: 34 + - uid: 10443 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -34.5,-5.5 + parent: 34 - uid: 10532 components: - type: Transform @@ -79748,6 +81815,12 @@ entities: - type: Transform pos: -8.5,9.5 parent: 34 + - uid: 11689 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 52.5,-45.5 + parent: 34 - uid: 11785 components: - type: Transform @@ -79919,22 +81992,6 @@ entities: rot: 1.5707963267948966 rad pos: 5.5,6.5 parent: 34 - - uid: 224 - components: - - type: Transform - pos: -46.5,-6.5 - parent: 34 - - uid: 238 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -45.5,-6.5 - parent: 34 - - uid: 259 - components: - - type: Transform - pos: -47.5,-7.5 - parent: 34 - uid: 593 components: - type: Transform @@ -79964,11 +82021,20 @@ entities: rot: 1.5707963267948966 rad pos: -57.5,-10.5 parent: 34 - - uid: 2926 + - uid: 2809 components: - type: Transform - rot: 3.141592653589793 rad - pos: -46.5,-7.5 + pos: 23.5,11.5 + parent: 34 + - uid: 2843 + components: + - type: Transform + pos: 21.5,11.5 + parent: 34 + - uid: 2846 + components: + - type: Transform + pos: 21.5,12.5 parent: 34 - uid: 6109 components: @@ -79988,6 +82054,11 @@ entities: rot: -1.5707963267948966 rad pos: -58.5,-9.5 parent: 34 + - uid: 6533 + components: + - type: Transform + pos: 23.5,12.5 + parent: 34 - uid: 10418 components: - type: Transform @@ -80053,17 +82124,17 @@ entities: parent: 34 - proto: tatamisingle entities: - - uid: 253 + - uid: 3334 components: - type: Transform rot: -1.5707963267948966 rad - pos: -45.5,-7.5 + pos: 22.5,12.5 parent: 34 - - uid: 2099 + - uid: 3347 components: - type: Transform rot: -1.5707963267948966 rad - pos: -47.5,-6.5 + pos: 22.5,11.5 parent: 34 - proto: TegCenter entities: @@ -80220,6 +82291,11 @@ entities: - type: Transform pos: -15.5,-4.5 parent: 34 + - uid: 254 + components: + - type: Transform + pos: -47.5,1.5 + parent: 34 - uid: 360 components: - type: Transform @@ -80235,15 +82311,11 @@ entities: - type: Transform pos: -1.5,-21.5 parent: 34 - - uid: 602 - components: - - type: Transform - pos: -32.5,-3.5 - parent: 34 - - uid: 603 + - uid: 536 components: - type: Transform - pos: -32.5,-4.5 + rot: 1.5707963267948966 rad + pos: -47.5,-10.5 parent: 34 - uid: 1014 components: @@ -80275,15 +82347,25 @@ entities: - type: Transform pos: -29.5,0.5 parent: 34 - - uid: 2222 + - uid: 2056 components: - type: Transform - pos: -45.5,-2.5 + pos: -45.5,0.5 parent: 34 - - uid: 2223 + - uid: 2175 components: - type: Transform - pos: -46.5,-2.5 + pos: -44.5,0.5 + parent: 34 + - uid: 5852 + components: + - type: Transform + pos: -48.5,-11.5 + parent: 34 + - uid: 5853 + components: + - type: Transform + pos: -49.5,-11.5 parent: 34 - uid: 5956 components: @@ -80345,12 +82427,6 @@ entities: parent: 34 - proto: ToiletEmpty entities: - - uid: 1055 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -51.5,-4.5 - parent: 34 - uid: 9632 components: - type: Transform @@ -80363,6 +82439,19 @@ entities: rot: 1.5707963267948966 rad pos: 37.5,0.5 parent: 34 + - uid: 14342 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.5,8.5 + parent: 34 +- proto: ToiletGoldenEmpty + entities: + - uid: 10868 + components: + - type: Transform + pos: 54.5,-43.5 + parent: 34 - proto: ToolboxArtistic entities: - uid: 444 @@ -80377,6 +82466,11 @@ entities: - type: Transform pos: -21.166645,8.012135 parent: 34 + - uid: 5809 + components: + - type: Transform + pos: -43.548855,-6.4401016 + parent: 34 - uid: 13383 components: - type: Transform @@ -80384,10 +82478,10 @@ entities: parent: 34 - proto: ToolboxEmergencyFilled entities: - - uid: 620 + - uid: 3369 components: - type: Transform - pos: -35.181194,-10.616802 + pos: -51.47171,-9.563946 parent: 34 - uid: 10630 components: @@ -80429,16 +82523,6 @@ entities: parent: 34 - proto: ToolboxMechanicalFilled entities: - - uid: 82 - components: - - type: Transform - pos: -32.164547,-17.605564 - parent: 34 - - uid: 619 - components: - - type: Transform - pos: -35.69682,-10.382427 - parent: 34 - uid: 5564 components: - type: Transform @@ -80449,6 +82533,11 @@ entities: - type: Transform pos: -15.406212,4.3849206 parent: 34 + - uid: 9278 + components: + - type: Transform + pos: -51.47171,-9.235821 + parent: 34 - uid: 13359 components: - type: Transform @@ -80461,6 +82550,20 @@ entities: - type: Transform pos: 69.43781,-23.413195 parent: 34 +- proto: ToyFigurineBotanist + entities: + - uid: 2294 + components: + - type: Transform + pos: -17.041487,-8.192725 + parent: 34 +- proto: ToyFigurineChaplain + entities: + - uid: 537 + components: + - type: Transform + pos: -35.27926,-14.8256855 + parent: 34 - proto: ToyFigurineHeadOfSecurity entities: - uid: 3612 @@ -80468,6 +82571,13 @@ entities: - type: Transform pos: 29.45367,4.57589 parent: 34 +- proto: ToyFigurineLibrarian + entities: + - uid: 11207 + components: + - type: Transform + pos: -30.470474,-6.401595 + parent: 34 - proto: ToyFigurinePassenger entities: - uid: 13665 @@ -80489,6 +82599,13 @@ entities: - type: Transform pos: 36.454975,-13.376591 parent: 34 +- proto: ToyFigurineWizardFake + entities: + - uid: 11206 + components: + - type: Transform + pos: -27.64235,-4.13597 + parent: 34 - proto: ToyIan entities: - uid: 1981 @@ -80524,10 +82641,17 @@ entities: parent: 34 - proto: ToySiobhan entities: - - uid: 12239 + - uid: 13136 components: - type: Transform - pos: -28.485638,-19.517445 + pos: -29.460733,-19.744741 + parent: 34 +- proto: ToySkeleton + entities: + - uid: 11205 + components: + - type: Transform + pos: -28.407974,-4.120345 parent: 34 - proto: ToySpawner entities: @@ -80555,6 +82679,16 @@ entities: - type: Transform pos: 16.45031,-6.399351 parent: 34 +- proto: TreasureHardDiskDrive + entities: + - uid: 14130 + components: + - type: MetaData + desc: A disk drive designed for old earth technology, circa 2023. It has "Δ-V" scribbled on the side with some permanent marker. There's probably some guy named "Colin" who might want to get their paws on this. + name: Δ-V hard disk drive + - type: Transform + pos: 37.30647,-33.275654 + parent: 34 - proto: TrialTimer entities: - uid: 4591 @@ -80686,6 +82820,13 @@ entities: - Left: Forward - Right: Reverse - Middle: Off +- proto: UnfinishedMachineFrame + entities: + - uid: 2253 + components: + - type: Transform + pos: 7.5,-39.5 + parent: 34 - proto: UniformPrinter entities: - uid: 1965 @@ -80695,12 +82836,10 @@ entities: parent: 34 - proto: UnstableMutagenChemistryBottle entities: - - uid: 11382 + - uid: 485 components: - - type: MetaData - desc: Just one drop of this will cause rapid mutations in your plants. - type: Transform - pos: -20.702679,-4.431776 + pos: -16.32614,-8.502501 parent: 34 - proto: UprightPianoInstrument entities: @@ -80716,6 +82855,18 @@ entities: rot: 3.141592653589793 rad pos: 45.5,1.5 parent: 34 +- proto: Urn + entities: + - uid: 561 + components: + - type: Transform + pos: -35.71676,-15.0131855 + parent: 34 + - uid: 588 + components: + - type: Transform + pos: -35.74801,-14.5913105 + parent: 34 - proto: Vaccinator entities: - uid: 2506 @@ -80749,13 +82900,6 @@ entities: - type: Transform pos: -7.5,7.5 parent: 34 -- proto: VendingMachineBoozeUnlocked - entities: - - uid: 13847 - components: - - type: Transform - pos: 51.5,-44.5 - parent: 34 - proto: VendingMachineBoxingDrobe entities: - uid: 7575 @@ -80779,10 +82923,10 @@ entities: parent: 34 - proto: VendingMachineChapel entities: - - uid: 3317 + - uid: 534 components: - type: Transform - pos: -32.5,-13.5 + pos: -35.5,-13.5 parent: 34 - proto: VendingMachineChefDrobe entities: @@ -80834,11 +82978,6 @@ entities: - type: Transform pos: 41.5,-7.5 parent: 34 - - uid: 11462 - components: - - type: Transform - pos: -50.5,-1.5 - parent: 34 - uid: 12074 components: - type: Transform @@ -80846,10 +82985,10 @@ entities: parent: 34 - proto: VendingMachineClothing entities: - - uid: 2260 + - uid: 14555 components: - type: Transform - pos: -37.5,-4.5 + pos: 19.5,16.5 parent: 34 - proto: VendingMachineCoffee entities: @@ -80909,6 +83048,13 @@ entities: - type: Transform pos: -8.5,-24.5 parent: 34 +- proto: VendingMachineCuraDrobe + entities: + - uid: 2760 + components: + - type: Transform + pos: -35.5,-8.5 + parent: 34 - proto: VendingMachineDetDrobe entities: - uid: 10872 @@ -80968,12 +83114,17 @@ entities: - type: Transform pos: 19.5,6.5 parent: 34 + - uid: 10421 + components: + - type: Transform + pos: -32.5,-5.5 + parent: 34 - proto: VendingMachineHydrobe entities: - - uid: 372 + - uid: 3325 components: - type: Transform - pos: -19.5,-8.5 + pos: -21.5,-3.5 parent: 34 - proto: VendingMachineJaniDrobe entities: @@ -81017,10 +83168,10 @@ entities: parent: 34 - proto: VendingMachineNutri entities: - - uid: 875 + - uid: 2026 components: - type: Transform - pos: -20.5,-7.5 + pos: -21.5,-4.5 parent: 34 - proto: VendingMachinePride entities: @@ -81031,10 +83182,10 @@ entities: parent: 34 - proto: VendingMachineRepDrobe entities: - - uid: 14052 + - uid: 383 components: - type: Transform - pos: -51.5,-12.5 + pos: -34.5,-19.5 parent: 34 - proto: VendingMachineRoboDrobe entities: @@ -81059,10 +83210,10 @@ entities: parent: 34 - proto: VendingMachineSciDrobe entities: - - uid: 590 + - uid: 5856 components: - type: Transform - pos: -35.5,-9.5 + pos: -51.5,-6.5 parent: 34 - proto: VendingMachineSec entities: @@ -81080,10 +83231,10 @@ entities: parent: 34 - proto: VendingMachineSeeds entities: - - uid: 870 + - uid: 863 components: - type: Transform - pos: -20.5,-6.5 + pos: -16.5,-6.5 parent: 34 - proto: VendingMachineSeedsUnlocked entities: @@ -81094,10 +83245,10 @@ entities: parent: 34 - proto: VendingMachineSovietSoda entities: - - uid: 14165 + - uid: 14390 components: - type: Transform - pos: 60.5,-39.5 + pos: 34.5,9.5 parent: 34 - proto: VendingMachineTankDispenserEVA entities: @@ -81147,10 +83298,10 @@ entities: parent: 34 - proto: VendingMachineWinter entities: - - uid: 4450 + - uid: 13095 components: - type: Transform - pos: -37.5,-7.5 + pos: 20.5,16.5 parent: 34 - proto: VendingMachineYouTool entities: @@ -81225,50 +83376,15 @@ entities: - type: Transform pos: 5.5,2.5 parent: 34 - - uid: 2098 - components: - - type: Transform - pos: -47.5,-8.5 - parent: 34 - - uid: 2119 - components: - - type: Transform - pos: -51.5,0.5 - parent: 34 - - uid: 2121 - components: - - type: Transform - pos: -50.5,0.5 - parent: 34 - - uid: 2122 - components: - - type: Transform - pos: -48.5,0.5 - parent: 34 - - uid: 2123 - components: - - type: Transform - pos: -47.5,0.5 - parent: 34 - - uid: 2247 - components: - - type: Transform - pos: -45.5,-8.5 - parent: 34 - - uid: 5050 - components: - - type: Transform - pos: -43.5,0.5 - parent: 34 - - uid: 5809 + - uid: 2845 components: - type: Transform - pos: -46.5,0.5 + pos: 21.5,13.5 parent: 34 - - uid: 5810 + - uid: 2962 components: - type: Transform - pos: -44.5,0.5 + pos: 23.5,13.5 parent: 34 - uid: 7995 components: @@ -81592,232 +83708,12 @@ entities: - type: Transform pos: 10.5,-21.5 parent: 34 - - uid: 483 - components: - - type: Transform - pos: -24.5,-2.5 - parent: 34 - - uid: 484 - components: - - type: Transform - pos: -24.5,-3.5 - parent: 34 - - uid: 485 - components: - - type: Transform - pos: -24.5,-4.5 - parent: 34 - - uid: 486 - components: - - type: Transform - pos: -24.5,-5.5 - parent: 34 - - uid: 487 - components: - - type: Transform - pos: -24.5,-6.5 - parent: 34 - - uid: 488 - components: - - type: Transform - pos: -24.5,-7.5 - parent: 34 - - uid: 489 - components: - - type: Transform - pos: -24.5,-8.5 - parent: 34 - - uid: 490 - components: - - type: Transform - pos: -24.5,-9.5 - parent: 34 - - uid: 492 - components: - - type: Transform - pos: -25.5,-2.5 - parent: 34 - - uid: 493 - components: - - type: Transform - pos: -26.5,-2.5 - parent: 34 - - uid: 494 - components: - - type: Transform - pos: -27.5,-2.5 - parent: 34 - - uid: 495 - components: - - type: Transform - pos: -28.5,-2.5 - parent: 34 - - uid: 499 - components: - - type: Transform - pos: -32.5,-2.5 - parent: 34 - - uid: 500 - components: - - type: Transform - pos: -33.5,-2.5 - parent: 34 - - uid: 501 - components: - - type: Transform - pos: -34.5,-2.5 - parent: 34 - - uid: 509 - components: - - type: Transform - pos: -24.5,-11.5 - parent: 34 - - uid: 510 - components: - - type: Transform - pos: -24.5,-12.5 - parent: 34 - - uid: 512 - components: - - type: Transform - pos: -25.5,-12.5 - parent: 34 - - uid: 513 - components: - - type: Transform - pos: -30.5,-13.5 - parent: 34 - - uid: 519 - components: - - type: Transform - pos: -35.5,-2.5 - parent: 34 - - uid: 520 - components: - - type: Transform - pos: -36.5,-2.5 - parent: 34 - - uid: 521 - components: - - type: Transform - pos: -36.5,-3.5 - parent: 34 - - uid: 522 - components: - - type: Transform - pos: -36.5,-4.5 - parent: 34 - - uid: 523 - components: - - type: Transform - pos: -36.5,-5.5 - parent: 34 - - uid: 524 - components: - - type: Transform - pos: -36.5,-6.5 - parent: 34 - - uid: 525 - components: - - type: Transform - pos: -36.5,-7.5 - parent: 34 - - uid: 526 - components: - - type: Transform - pos: -30.5,-16.5 - parent: 34 - - uid: 527 - components: - - type: Transform - pos: -36.5,-9.5 - parent: 34 - - uid: 528 - components: - - type: Transform - pos: -36.5,-10.5 - parent: 34 - uid: 529 components: - type: Transform rot: 3.141592653589793 rad pos: 48.5,-39.5 parent: 34 - - uid: 530 - components: - - type: Transform - pos: -36.5,-12.5 - parent: 34 - - uid: 531 - components: - - type: Transform - pos: -36.5,-13.5 - parent: 34 - - uid: 532 - components: - - type: Transform - pos: -36.5,-14.5 - parent: 34 - - uid: 533 - components: - - type: Transform - pos: -36.5,-15.5 - parent: 34 - - uid: 535 - components: - - type: Transform - pos: -30.5,-17.5 - parent: 34 - - uid: 536 - components: - - type: Transform - pos: -30.5,-15.5 - parent: 34 - - uid: 538 - components: - - type: Transform - pos: -30.5,-12.5 - parent: 34 - - uid: 554 - components: - - type: Transform - pos: -30.5,-19.5 - parent: 34 - - uid: 561 - components: - - type: Transform - pos: -26.5,-12.5 - parent: 34 - - uid: 565 - components: - - type: Transform - pos: -29.5,-12.5 - parent: 34 - - uid: 566 - components: - - type: Transform - pos: -27.5,-12.5 - parent: 34 - - uid: 567 - components: - - type: Transform - pos: -30.5,-20.5 - parent: 34 - - uid: 568 - components: - - type: Transform - pos: -31.5,-20.5 - parent: 34 - - uid: 573 - components: - - type: Transform - pos: -36.5,-20.5 - parent: 34 - - uid: 574 - components: - - type: Transform - pos: -36.5,-19.5 - parent: 34 - uid: 579 components: - type: Transform @@ -81828,26 +83724,11 @@ entities: - type: Transform pos: -20.5,-12.5 parent: 34 - - uid: 588 - components: - - type: Transform - pos: -32.5,-6.5 - parent: 34 - - uid: 596 - components: - - type: Transform - pos: -36.5,-8.5 - parent: 34 - uid: 605 components: - type: Transform pos: 0.5,-38.5 parent: 34 - - uid: 608 - components: - - type: Transform - pos: -33.5,-6.5 - parent: 34 - uid: 621 components: - type: Transform @@ -82118,11 +83999,6 @@ entities: - type: Transform pos: -2.5,-27.5 parent: 34 - - uid: 917 - components: - - type: Transform - pos: -41.5,-11.5 - parent: 34 - uid: 965 components: - type: Transform @@ -82953,6 +84829,18 @@ entities: - type: Transform pos: -28.5,2.5 parent: 34 + - uid: 2052 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -47.5,-2.5 + parent: 34 + - uid: 2053 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -51.5,-2.5 + parent: 34 - uid: 2063 components: - type: Transform @@ -82973,6 +84861,16 @@ entities: - type: Transform pos: -41.5,-20.5 parent: 34 + - uid: 2101 + components: + - type: Transform + pos: -47.5,-6.5 + parent: 34 + - uid: 2122 + components: + - type: Transform + pos: -47.5,3.5 + parent: 34 - uid: 2145 components: - type: Transform @@ -82988,11 +84886,50 @@ entities: - type: Transform pos: 17.5,-2.5 parent: 34 + - uid: 2170 + components: + - type: Transform + pos: -43.5,2.5 + parent: 34 + - uid: 2182 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -52.5,-1.5 + parent: 34 + - uid: 2185 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -50.5,-5.5 + parent: 34 - uid: 2218 components: - type: Transform pos: 41.5,-5.5 parent: 34 + - uid: 2230 + components: + - type: Transform + pos: -47.5,-5.5 + parent: 34 + - uid: 2243 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,-46.5 + parent: 34 + - uid: 2266 + components: + - type: Transform + pos: -43.5,1.5 + parent: 34 + - uid: 2274 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -50.5,-2.5 + parent: 34 - uid: 2280 components: - type: Transform @@ -83114,11 +85051,6 @@ entities: - type: Transform pos: 43.5,-38.5 parent: 34 - - uid: 2516 - components: - - type: Transform - pos: 16.5,13.5 - parent: 34 - uid: 2517 components: - type: Transform @@ -83134,6 +85066,12 @@ entities: - type: Transform pos: 49.5,-9.5 parent: 34 + - uid: 2533 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,19.5 + parent: 34 - uid: 2565 components: - type: Transform @@ -83174,21 +85112,6 @@ entities: - type: Transform pos: -58.5,-6.5 parent: 34 - - uid: 2588 - components: - - type: Transform - pos: -49.5,8.5 - parent: 34 - - uid: 2589 - components: - - type: Transform - pos: -48.5,6.5 - parent: 34 - - uid: 2590 - components: - - type: Transform - pos: -47.5,6.5 - parent: 34 - uid: 2609 components: - type: Transform @@ -83204,16 +85127,6 @@ entities: - type: Transform pos: 42.5,-14.5 parent: 34 - - uid: 2616 - components: - - type: Transform - pos: 17.5,13.5 - parent: 34 - - uid: 2628 - components: - - type: Transform - pos: 20.5,13.5 - parent: 34 - uid: 2631 components: - type: Transform @@ -83244,6 +85157,11 @@ entities: - type: Transform pos: 12.5,-32.5 parent: 34 + - uid: 2756 + components: + - type: Transform + pos: 30.5,17.5 + parent: 34 - uid: 2814 components: - type: Transform @@ -83299,6 +85217,12 @@ entities: - type: Transform pos: 7.5,-20.5 parent: 34 + - uid: 3104 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,18.5 + parent: 34 - uid: 3210 components: - type: Transform @@ -83409,6 +85333,12 @@ entities: - type: Transform pos: 20.5,0.5 parent: 34 + - uid: 3348 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,17.5 + parent: 34 - uid: 3380 components: - type: Transform @@ -83514,26 +85444,11 @@ entities: - type: Transform pos: -57.5,3.5 parent: 34 - - uid: 3468 - components: - - type: Transform - pos: -51.5,9.5 - parent: 34 - - uid: 3469 - components: - - type: Transform - pos: -50.5,9.5 - parent: 34 - uid: 3470 components: - type: Transform pos: -55.5,9.5 parent: 34 - - uid: 3472 - components: - - type: Transform - pos: -50.5,8.5 - parent: 34 - uid: 3477 components: - type: Transform @@ -84169,6 +86084,12 @@ entities: - type: Transform pos: 15.5,-35.5 parent: 34 + - uid: 4263 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -48.5,-5.5 + parent: 34 - uid: 4264 components: - type: Transform @@ -84599,11 +86520,6 @@ entities: - type: Transform pos: 35.5,7.5 parent: 34 - - uid: 4630 - components: - - type: Transform - pos: 34.5,7.5 - parent: 34 - uid: 4638 components: - type: Transform @@ -84760,36 +86676,6 @@ entities: - type: Transform pos: 36.5,-15.5 parent: 34 - - uid: 4959 - components: - - type: Transform - pos: 34.5,8.5 - parent: 34 - - uid: 4960 - components: - - type: Transform - pos: 34.5,9.5 - parent: 34 - - uid: 4961 - components: - - type: Transform - pos: 33.5,9.5 - parent: 34 - - uid: 4964 - components: - - type: Transform - pos: 30.5,9.5 - parent: 34 - - uid: 4965 - components: - - type: Transform - pos: 29.5,9.5 - parent: 34 - - uid: 4968 - components: - - type: Transform - pos: 24.5,13.5 - parent: 34 - uid: 4974 components: - type: Transform @@ -84815,26 +86701,6 @@ entities: - type: Transform pos: -58.5,-3.5 parent: 34 - - uid: 4985 - components: - - type: Transform - pos: 18.5,10.5 - parent: 34 - - uid: 4986 - components: - - type: Transform - pos: 17.5,10.5 - parent: 34 - - uid: 4987 - components: - - type: Transform - pos: 16.5,10.5 - parent: 34 - - uid: 4993 - components: - - type: Transform - pos: 15.5,10.5 - parent: 34 - uid: 4994 components: - type: Transform @@ -84895,11 +86761,6 @@ entities: - type: Transform pos: 47.5,-20.5 parent: 34 - - uid: 5059 - components: - - type: Transform - pos: -48.5,8.5 - parent: 34 - uid: 5060 components: - type: Transform @@ -85095,6 +86956,11 @@ entities: - type: Transform pos: 43.5,-46.5 parent: 34 + - uid: 5277 + components: + - type: Transform + pos: -49.5,3.5 + parent: 34 - uid: 5280 components: - type: Transform @@ -85256,11 +87122,6 @@ entities: - type: Transform pos: -25.5,9.5 parent: 34 - - uid: 5631 - components: - - type: Transform - pos: -43.5,7.5 - parent: 34 - uid: 5834 components: - type: Transform @@ -85306,20 +87167,17 @@ entities: - type: Transform pos: -40.5,6.5 parent: 34 - - uid: 5865 - components: - - type: Transform - pos: -43.5,6.5 - parent: 34 - - uid: 5866 + - uid: 5847 components: - type: Transform - pos: -42.5,6.5 + rot: 3.141592653589793 rad + pos: 23.5,-45.5 parent: 34 - - uid: 5868 + - uid: 5855 components: - type: Transform - pos: -48.5,7.5 + rot: -1.5707963267948966 rad + pos: -49.5,-5.5 parent: 34 - uid: 5869 components: @@ -85356,11 +87214,6 @@ entities: - type: Transform pos: 28.5,-16.5 parent: 34 - - uid: 5914 - components: - - type: Transform - pos: -43.5,8.5 - parent: 34 - uid: 5955 components: - type: Transform @@ -85429,12 +87282,7 @@ entities: - uid: 6160 components: - type: Transform - pos: 15.5,11.5 - parent: 34 - - uid: 6161 - components: - - type: Transform - pos: 15.5,12.5 + pos: -51.5,9.5 parent: 34 - uid: 6162 components: @@ -85451,11 +87299,6 @@ entities: - type: Transform pos: -5.5,13.5 parent: 34 - - uid: 6169 - components: - - type: Transform - pos: 15.5,13.5 - parent: 34 - uid: 6170 components: - type: Transform @@ -85576,6 +87419,16 @@ entities: - type: Transform pos: -16.5,-36.5 parent: 34 + - uid: 6513 + components: + - type: Transform + pos: 36.5,14.5 + parent: 34 + - uid: 6538 + components: + - type: Transform + pos: 36.5,10.5 + parent: 34 - uid: 6687 components: - type: Transform @@ -85586,6 +87439,11 @@ entities: - type: Transform pos: 12.5,-46.5 parent: 34 + - uid: 6711 + components: + - type: Transform + pos: 19.5,17.5 + parent: 34 - uid: 6715 components: - type: Transform @@ -85661,6 +87519,17 @@ entities: - type: Transform pos: 47.5,-11.5 parent: 34 + - uid: 7127 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -51.5,-5.5 + parent: 34 + - uid: 7132 + components: + - type: Transform + pos: -47.5,-7.5 + parent: 34 - uid: 7234 components: - type: Transform @@ -85686,11 +87555,6 @@ entities: - type: Transform pos: 19.5,-46.5 parent: 34 - - uid: 7466 - components: - - type: Transform - pos: -43.5,9.5 - parent: 34 - uid: 7554 components: - type: Transform @@ -85716,6 +87580,11 @@ entities: - type: Transform pos: 28.5,-21.5 parent: 34 + - uid: 7638 + components: + - type: Transform + pos: 55.5,-46.5 + parent: 34 - uid: 7673 components: - type: Transform @@ -85726,6 +87595,11 @@ entities: - type: Transform pos: 15.5,-1.5 parent: 34 + - uid: 7689 + components: + - type: Transform + pos: 54.5,-46.5 + parent: 34 - uid: 7703 components: - type: Transform @@ -85751,11 +87625,6 @@ entities: - type: Transform pos: -6.5,-55.5 parent: 34 - - uid: 7803 - components: - - type: Transform - pos: -43.5,10.5 - parent: 34 - uid: 7804 components: - type: Transform @@ -85861,6 +87730,21 @@ entities: - type: Transform pos: 1.5,-44.5 parent: 34 + - uid: 9234 + components: + - type: Transform + pos: -50.5,11.5 + parent: 34 + - uid: 9308 + components: + - type: Transform + pos: -51.5,11.5 + parent: 34 + - uid: 9355 + components: + - type: Transform + pos: -51.5,10.5 + parent: 34 - uid: 9383 components: - type: Transform @@ -85950,15 +87834,27 @@ entities: - type: Transform pos: 49.5,-13.5 parent: 34 + - uid: 10220 + components: + - type: Transform + pos: 35.5,15.5 + parent: 34 - uid: 10246 components: - type: Transform pos: -40.5,-11.5 parent: 34 - - uid: 10295 + - uid: 10297 components: - type: Transform - pos: -35.5,-6.5 + rot: -1.5707963267948966 rad + pos: -52.5,-6.5 + parent: 34 + - uid: 10375 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -52.5,-4.5 parent: 34 - uid: 10380 components: @@ -85980,6 +87876,24 @@ entities: - type: Transform pos: 16.5,-46.5 parent: 34 + - uid: 10482 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -52.5,-2.5 + parent: 34 + - uid: 10483 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -52.5,-8.5 + parent: 34 + - uid: 10484 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -52.5,-7.5 + parent: 34 - uid: 10496 components: - type: Transform @@ -86020,21 +87934,34 @@ entities: - type: Transform pos: -6.5,-51.5 parent: 34 - - uid: 10623 + - uid: 10633 components: - type: Transform - pos: 29.5,13.5 + pos: -31.5,-45.5 parent: 34 - - uid: 10633 + - uid: 10644 components: - type: Transform - pos: -31.5,-45.5 + rot: -1.5707963267948966 rad + pos: -52.5,-9.5 + parent: 34 + - uid: 10661 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 53.5,-46.5 parent: 34 - uid: 10678 components: - type: Transform pos: -48.5,-32.5 parent: 34 + - uid: 10698 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -52.5,-3.5 + parent: 34 - uid: 10745 components: - type: Transform @@ -86070,10 +87997,11 @@ entities: - type: Transform pos: -50.5,-15.5 parent: 34 - - uid: 10947 + - uid: 10876 components: - type: Transform - pos: -34.5,-6.5 + rot: -1.5707963267948966 rad + pos: -52.5,-14.5 parent: 34 - uid: 10949 components: @@ -86095,6 +88023,18 @@ entities: - type: Transform pos: -22.5,-43.5 parent: 34 + - uid: 11081 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -52.5,-5.5 + parent: 34 + - uid: 11107 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -52.5,-12.5 + parent: 34 - uid: 11110 components: - type: Transform @@ -86176,46 +88116,11 @@ entities: - type: Transform pos: -49.5,11.5 parent: 34 - - uid: 11161 - components: - - type: Transform - pos: -50.5,11.5 - parent: 34 - - uid: 11162 - components: - - type: Transform - pos: -51.5,11.5 - parent: 34 - - uid: 11163 - components: - - type: Transform - pos: -51.5,10.5 - parent: 34 - uid: 11169 components: - type: Transform pos: -54.5,14.5 parent: 34 - - uid: 11197 - components: - - type: Transform - pos: 18.5,13.5 - parent: 34 - - uid: 11198 - components: - - type: Transform - pos: 19.5,13.5 - parent: 34 - - uid: 11201 - components: - - type: Transform - pos: 22.5,13.5 - parent: 34 - - uid: 11203 - components: - - type: Transform - pos: 23.5,13.5 - parent: 34 - uid: 11220 components: - type: Transform @@ -86231,30 +88136,21 @@ entities: - type: Transform pos: 17.5,-46.5 parent: 34 - - uid: 11262 - components: - - type: Transform - pos: 28.5,13.5 - parent: 34 - - uid: 11267 - components: - - type: Transform - pos: 29.5,12.5 - parent: 34 - - uid: 11268 + - uid: 11315 components: - type: Transform - pos: 29.5,11.5 + rot: -1.5707963267948966 rad + pos: -52.5,-11.5 parent: 34 - - uid: 11269 + - uid: 11317 components: - type: Transform - pos: 29.5,10.5 + pos: -46.5,-23.5 parent: 34 - - uid: 11317 + - uid: 11365 components: - type: Transform - pos: -46.5,-23.5 + pos: -52.5,1.5 parent: 34 - uid: 11372 components: @@ -86336,6 +88232,11 @@ entities: - type: Transform pos: -62.5,-24.5 parent: 34 + - uid: 11587 + components: + - type: Transform + pos: -52.5,2.5 + parent: 34 - uid: 11588 components: - type: Transform @@ -86361,6 +88262,11 @@ entities: - type: Transform pos: -22.5,-35.5 parent: 34 + - uid: 11693 + components: + - type: Transform + pos: -52.5,3.5 + parent: 34 - uid: 11704 components: - type: Transform @@ -86446,6 +88352,11 @@ entities: - type: Transform pos: -13.5,-31.5 parent: 34 + - uid: 12020 + components: + - type: Transform + pos: -52.5,0.5 + parent: 34 - uid: 12101 components: - type: Transform @@ -86456,6 +88367,11 @@ entities: - type: Transform pos: -13.5,-29.5 parent: 34 + - uid: 12122 + components: + - type: Transform + pos: -46.5,3.5 + parent: 34 - uid: 12171 components: - type: Transform @@ -86571,6 +88487,11 @@ entities: - type: Transform pos: 24.5,-38.5 parent: 34 + - uid: 12439 + components: + - type: Transform + pos: -48.5,3.5 + parent: 34 - uid: 12441 components: - type: Transform @@ -86721,6 +88642,11 @@ entities: - type: Transform pos: 15.5,17.5 parent: 34 + - uid: 13160 + components: + - type: Transform + pos: 33.5,12.5 + parent: 34 - uid: 13196 components: - type: Transform @@ -86729,7 +88655,37 @@ entities: - uid: 13216 components: - type: Transform - pos: 54.5,-45.5 + pos: 33.5,13.5 + parent: 34 + - uid: 13218 + components: + - type: Transform + pos: 33.5,10.5 + parent: 34 + - uid: 13219 + components: + - type: Transform + pos: 34.5,10.5 + parent: 34 + - uid: 13220 + components: + - type: Transform + pos: 35.5,14.5 + parent: 34 + - uid: 13222 + components: + - type: Transform + pos: 34.5,14.5 + parent: 34 + - uid: 13223 + components: + - type: Transform + pos: 33.5,14.5 + parent: 34 + - uid: 13224 + components: + - type: Transform + pos: 35.5,10.5 parent: 34 - uid: 13237 components: @@ -86904,6 +88860,11 @@ entities: - type: Transform pos: 56.5,-38.5 parent: 34 + - uid: 13393 + components: + - type: Transform + pos: 35.5,9.5 + parent: 34 - uid: 13396 components: - type: Transform @@ -86944,6 +88905,11 @@ entities: rot: 1.5707963267948966 rad pos: 65.5,-27.5 parent: 34 + - uid: 13779 + components: + - type: Transform + pos: -50.5,3.5 + parent: 34 - uid: 13853 components: - type: Transform @@ -86994,6 +88960,46 @@ entities: - type: Transform pos: 61.5,-50.5 parent: 34 + - uid: 14050 + components: + - type: Transform + pos: -51.5,3.5 + parent: 34 + - uid: 14051 + components: + - type: Transform + pos: -43.5,0.5 + parent: 34 + - uid: 14052 + components: + - type: Transform + pos: -43.5,3.5 + parent: 34 + - uid: 14054 + components: + - type: Transform + pos: -44.5,3.5 + parent: 34 + - uid: 14058 + components: + - type: Transform + pos: -45.5,3.5 + parent: 34 + - uid: 14060 + components: + - type: Transform + pos: -47.5,-8.5 + parent: 34 + - uid: 14153 + components: + - type: Transform + pos: 35.5,8.5 + parent: 34 + - uid: 14169 + components: + - type: Transform + pos: 30.5,16.5 + parent: 34 - uid: 14216 components: - type: Transform @@ -87084,6 +89090,97 @@ entities: - type: Transform pos: 74.5,-21.5 parent: 34 + - uid: 14344 + components: + - type: Transform + pos: 24.5,12.5 + parent: 34 + - uid: 14345 + components: + - type: Transform + pos: 25.5,10.5 + parent: 34 + - uid: 14346 + components: + - type: Transform + pos: 30.5,12.5 + parent: 34 + - uid: 14347 + components: + - type: Transform + pos: 30.5,11.5 + parent: 34 + - uid: 14348 + components: + - type: Transform + pos: 26.5,10.5 + parent: 34 + - uid: 14349 + components: + - type: Transform + pos: 30.5,15.5 + parent: 34 + - uid: 14350 + components: + - type: Transform + pos: 30.5,13.5 + parent: 34 + - uid: 14351 + components: + - type: Transform + pos: 24.5,11.5 + parent: 34 + - uid: 14352 + components: + - type: Transform + pos: 28.5,10.5 + parent: 34 + - uid: 14353 + components: + - type: Transform + pos: 29.5,10.5 + parent: 34 + - uid: 14354 + components: + - type: Transform + pos: 30.5,10.5 + parent: 34 + - uid: 14355 + components: + - type: Transform + pos: 24.5,13.5 + parent: 34 + - uid: 14356 + components: + - type: Transform + pos: 24.5,10.5 + parent: 34 + - uid: 14357 + components: + - type: Transform + pos: 30.5,14.5 + parent: 34 + - uid: 14359 + components: + - type: Transform + pos: 36.5,13.5 + parent: 34 + - uid: 14360 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 53.5,-45.5 + parent: 34 + - uid: 14397 + components: + - type: Transform + pos: 31.5,14.5 + parent: 34 + - uid: 14403 + components: + - type: Transform + pos: 35.5,19.5 + parent: 34 - proto: WallReinforcedRust entities: - uid: 6016 @@ -87103,6 +89200,23 @@ entities: - type: Transform pos: 16.5,-30.5 parent: 34 + - uid: 38 + components: + - type: Transform + pos: -34.5,-16.5 + parent: 34 + - uid: 49 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,-12.5 + parent: 34 + - uid: 82 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,-12.5 + parent: 34 - uid: 109 components: - type: Transform @@ -87393,31 +89507,22 @@ entities: - type: Transform pos: -21.5,-2.5 parent: 34 - - uid: 381 - components: - - type: Transform - pos: -21.5,-3.5 - parent: 34 - - uid: 382 - components: - - type: Transform - pos: -21.5,-4.5 - parent: 34 - uid: 384 components: - type: Transform - pos: -21.5,-6.5 - parent: 34 - - uid: 385 - components: - - type: Transform - pos: -21.5,-7.5 + pos: -25.5,-8.5 parent: 34 - uid: 387 components: - type: Transform pos: -21.5,-9.5 parent: 34 + - uid: 388 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,-12.5 + parent: 34 - uid: 389 components: - type: Transform @@ -87523,75 +89628,84 @@ entities: - type: Transform pos: 1.5,-21.5 parent: 34 - - uid: 462 + - uid: 459 components: - type: Transform - pos: -27.5,-6.5 + pos: -35.5,-9.5 parent: 34 - - uid: 505 + - uid: 463 components: - type: Transform - pos: -28.5,-6.5 + rot: 3.141592653589793 rad + pos: -28.5,-12.5 parent: 34 - - uid: 507 + - uid: 488 components: - type: Transform - pos: -25.5,-6.5 + pos: -22.5,-4.5 parent: 34 - - uid: 508 + - uid: 489 components: - type: Transform - pos: -32.5,-8.5 + pos: 19.5,10.5 parent: 34 - - uid: 511 + - uid: 490 components: - type: Transform - pos: -23.5,-12.5 + pos: 18.5,10.5 parent: 34 - - uid: 517 + - uid: 496 components: - type: Transform - pos: -33.5,-13.5 + rot: 3.141592653589793 rad + pos: -31.5,-19.5 parent: 34 - - uid: 518 + - uid: 499 components: - type: Transform - pos: -33.5,-15.5 + pos: -35.5,-12.5 parent: 34 - - uid: 537 + - uid: 500 components: - type: Transform - pos: -31.5,-16.5 + pos: -34.5,-12.5 parent: 34 - - uid: 540 + - uid: 511 components: - type: Transform - pos: -32.5,-12.5 + pos: -23.5,-12.5 parent: 34 - - uid: 542 + - uid: 516 components: - type: Transform - pos: -32.5,-7.5 + rot: 3.141592653589793 rad + pos: -25.5,-12.5 parent: 34 - - uid: 544 + - uid: 517 components: - type: Transform - pos: -20.5,-9.5 + rot: 3.141592653589793 rad + pos: -31.5,-13.5 parent: 34 - - uid: 550 + - uid: 525 components: - type: Transform - pos: -33.5,-12.5 + pos: -35.5,-16.5 parent: 34 - - uid: 552 + - uid: 535 components: - type: Transform - pos: -31.5,-12.5 + pos: -32.5,-16.5 parent: 34 - - uid: 553 + - uid: 542 components: - type: Transform - pos: -35.5,-12.5 + pos: -32.5,-7.5 + parent: 34 + - uid: 544 + components: + - type: Transform + pos: -20.5,-9.5 parent: 34 - uid: 558 components: @@ -87608,20 +89722,37 @@ entities: - type: Transform pos: -23.5,-18.5 parent: 34 - - uid: 562 + - uid: 565 components: - type: Transform - pos: -33.5,-14.5 + pos: -32.5,-12.5 parent: 34 - - uid: 563 + - uid: 567 + components: + - type: Transform + pos: -36.5,-7.5 + parent: 34 + - uid: 569 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,-16.5 + parent: 34 + - uid: 570 + components: + - type: Transform + pos: -34.5,-2.5 + parent: 34 + - uid: 571 components: - type: Transform pos: -33.5,-16.5 parent: 34 - - uid: 564 + - uid: 572 components: - type: Transform - pos: -32.5,-16.5 + rot: 3.141592653589793 rad + pos: -31.5,-17.5 parent: 34 - uid: 577 components: @@ -87638,6 +89769,24 @@ entities: - type: Transform pos: -23.5,-13.5 parent: 34 + - uid: 596 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -27.5,-12.5 + parent: 34 + - uid: 597 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,-12.5 + parent: 34 + - uid: 608 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,-15.5 + parent: 34 - uid: 646 components: - type: Transform @@ -87703,15 +89852,40 @@ entities: - type: Transform pos: 2.5,-2.5 parent: 34 + - uid: 836 + components: + - type: Transform + pos: -32.5,-2.5 + parent: 34 - uid: 842 components: - type: Transform pos: -12.5,-10.5 parent: 34 - - uid: 873 + - uid: 865 components: - type: Transform - pos: -21.5,-8.5 + pos: -22.5,-6.5 + parent: 34 + - uid: 866 + components: + - type: Transform + pos: -22.5,-7.5 + parent: 34 + - uid: 867 + components: + - type: Transform + pos: -22.5,-8.5 + parent: 34 + - uid: 868 + components: + - type: Transform + pos: -22.5,-9.5 + parent: 34 + - uid: 870 + components: + - type: Transform + pos: -22.5,-2.5 parent: 34 - uid: 879 components: @@ -87723,10 +89897,91 @@ entities: - type: Transform pos: -14.5,-9.5 parent: 34 + - uid: 895 + components: + - type: Transform + pos: 24.5,15.5 + parent: 34 + - uid: 908 + components: + - type: Transform + pos: -33.5,-2.5 + parent: 34 + - uid: 909 + components: + - type: Transform + pos: -36.5,-2.5 + parent: 34 - uid: 913 components: - type: Transform - pos: -27.5,-9.5 + pos: -35.5,-2.5 + parent: 34 + - uid: 914 + components: + - type: Transform + pos: -36.5,-3.5 + parent: 34 + - uid: 915 + components: + - type: Transform + pos: -36.5,-4.5 + parent: 34 + - uid: 916 + components: + - type: Transform + pos: -36.5,-5.5 + parent: 34 + - uid: 918 + components: + - type: Transform + pos: -36.5,-6.5 + parent: 34 + - uid: 924 + components: + - type: Transform + pos: -36.5,-9.5 + parent: 34 + - uid: 929 + components: + - type: Transform + pos: -36.5,-8.5 + parent: 34 + - uid: 930 + components: + - type: Transform + pos: -36.5,-13.5 + parent: 34 + - uid: 931 + components: + - type: Transform + pos: -36.5,-14.5 + parent: 34 + - uid: 932 + components: + - type: Transform + pos: -36.5,-15.5 + parent: 34 + - uid: 935 + components: + - type: Transform + pos: -36.5,-16.5 + parent: 34 + - uid: 940 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,-20.5 + parent: 34 + - uid: 943 + components: + - type: Transform + pos: -36.5,-20.5 + parent: 34 + - uid: 947 + components: + - type: Transform + pos: -36.5,-12.5 parent: 34 - uid: 987 components: @@ -87758,6 +90013,12 @@ entities: - type: Transform pos: -27.5,-25.5 parent: 34 + - uid: 1057 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -44.5,-4.5 + parent: 34 - uid: 1075 components: - type: Transform @@ -87883,6 +90144,18 @@ entities: - type: Transform pos: 1.5,-31.5 parent: 34 + - uid: 1357 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -44.5,-5.5 + parent: 34 + - uid: 1367 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,-9.5 + parent: 34 - uid: 1377 components: - type: Transform @@ -87898,6 +90171,12 @@ entities: - type: Transform pos: 13.5,-39.5 parent: 34 + - uid: 1428 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,-3.5 + parent: 34 - uid: 1601 components: - type: Transform @@ -87943,190 +90222,42 @@ entities: - type: Transform pos: 11.5,5.5 parent: 34 - - uid: 2033 - components: - - type: Transform - pos: -40.5,-2.5 - parent: 34 - - uid: 2036 - components: - - type: Transform - pos: -40.5,-5.5 - parent: 34 - - uid: 2039 - components: - - type: Transform - pos: -49.5,-5.5 - parent: 34 - - uid: 2040 - components: - - type: Transform - pos: -50.5,-5.5 - parent: 34 - - uid: 2041 - components: - - type: Transform - pos: -51.5,-5.5 - parent: 34 - - uid: 2042 - components: - - type: Transform - pos: -44.5,-5.5 - parent: 34 - - uid: 2043 - components: - - type: Transform - pos: -45.5,-5.5 - parent: 34 - - uid: 2044 - components: - - type: Transform - pos: -46.5,-5.5 - parent: 34 - - uid: 2045 - components: - - type: Transform - pos: -47.5,-5.5 - parent: 34 - - uid: 2046 - components: - - type: Transform - pos: -44.5,-2.5 - parent: 34 - - uid: 2047 - components: - - type: Transform - pos: -44.5,-3.5 - parent: 34 - - uid: 2048 - components: - - type: Transform - pos: -44.5,-4.5 - parent: 34 - - uid: 2049 - components: - - type: Transform - pos: -48.5,-5.5 - parent: 34 - - uid: 2050 - components: - - type: Transform - pos: -48.5,-4.5 - parent: 34 - - uid: 2051 - components: - - type: Transform - pos: -48.5,-3.5 - parent: 34 - - uid: 2052 - components: - - type: Transform - pos: -48.5,-2.5 - parent: 34 - - uid: 2053 - components: - - type: Transform - pos: -44.5,-6.5 - parent: 34 - - uid: 2054 - components: - - type: Transform - pos: -44.5,-7.5 - parent: 34 - - uid: 2055 - components: - - type: Transform - pos: -48.5,-6.5 - parent: 34 - - uid: 2056 + - uid: 1942 components: - type: Transform - pos: -48.5,-7.5 + pos: 15.5,13.5 parent: 34 - - uid: 2057 + - uid: 2020 components: - type: Transform - pos: -48.5,-8.5 + pos: 20.5,11.5 parent: 34 - - uid: 2058 + - uid: 2033 components: - type: Transform - pos: -44.5,-8.5 + pos: -40.5,-2.5 parent: 34 - uid: 2059 components: - type: Transform pos: -40.5,-8.5 parent: 34 - - uid: 2065 - components: - - type: Transform - pos: -52.5,-8.5 - parent: 34 - - uid: 2066 - components: - - type: Transform - pos: -52.5,-2.5 - parent: 34 - - uid: 2067 - components: - - type: Transform - pos: -52.5,-4.5 - parent: 34 - - uid: 2068 - components: - - type: Transform - pos: -52.5,-5.5 - parent: 34 - - uid: 2069 - components: - - type: Transform - pos: -52.5,-7.5 - parent: 34 - - uid: 2070 - components: - - type: Transform - pos: -52.5,-6.5 - parent: 34 - - uid: 2071 - components: - - type: Transform - pos: -52.5,-3.5 - parent: 34 - uid: 2077 components: - type: Transform pos: -51.5,-11.5 parent: 34 - - uid: 2090 - components: - - type: Transform - pos: -52.5,-11.5 - parent: 34 - - uid: 2092 - components: - - type: Transform - pos: -52.5,-1.5 - parent: 34 - - uid: 2096 - components: - - type: Transform - pos: -51.5,-8.5 - parent: 34 - - uid: 2097 - components: - - type: Transform - pos: -50.5,-8.5 - parent: 34 - - uid: 2102 + - uid: 2100 components: - type: Transform - pos: -50.5,-2.5 + rot: 1.5707963267948966 rad + pos: -44.5,-3.5 parent: 34 - - uid: 2103 + - uid: 2114 components: - type: Transform - pos: -51.5,-2.5 + rot: 1.5707963267948966 rad + pos: -43.5,-2.5 parent: 34 - uid: 2116 components: @@ -88143,15 +90274,10 @@ entities: - type: Transform pos: 8.5,-25.5 parent: 34 - - uid: 2176 - components: - - type: Transform - pos: -41.5,-8.5 - parent: 34 - - uid: 2178 + - uid: 2174 components: - type: Transform - pos: -43.5,-2.5 + pos: -44.5,-8.5 parent: 34 - uid: 2240 components: @@ -88163,6 +90289,11 @@ entities: - type: Transform pos: -39.5,4.5 parent: 34 + - uid: 2302 + components: + - type: Transform + pos: -27.5,-9.5 + parent: 34 - uid: 2382 components: - type: Transform @@ -88173,11 +90304,26 @@ entities: - type: Transform pos: 15.5,-39.5 parent: 34 + - uid: 2531 + components: + - type: Transform + pos: -32.5,-9.5 + parent: 34 + - uid: 2532 + components: + - type: Transform + pos: -29.5,-9.5 + parent: 34 - uid: 2542 components: - type: Transform pos: 22.5,-40.5 parent: 34 + - uid: 2552 + components: + - type: Transform + pos: -36.5,-17.5 + parent: 34 - uid: 2561 components: - type: Transform @@ -88193,21 +90339,26 @@ entities: - type: Transform pos: 17.5,-40.5 parent: 34 - - uid: 2602 + - uid: 2611 components: - type: Transform - pos: -52.5,-9.5 + pos: -39.5,0.5 parent: 34 - - uid: 2611 + - uid: 2643 components: - type: Transform - pos: -39.5,0.5 + pos: -44.5,6.5 parent: 34 - uid: 2672 components: - type: Transform pos: 11.5,-39.5 parent: 34 + - uid: 2683 + components: + - type: Transform + pos: -26.5,-9.5 + parent: 34 - uid: 2705 components: - type: Transform @@ -88221,7 +90372,12 @@ entities: - uid: 2743 components: - type: Transform - pos: -23.5,-2.5 + pos: -25.5,-4.5 + parent: 34 + - uid: 2755 + components: + - type: Transform + pos: -25.5,-6.5 parent: 34 - uid: 2816 components: @@ -88263,11 +90419,31 @@ entities: - type: Transform pos: 6.5,-21.5 parent: 34 + - uid: 3112 + components: + - type: Transform + pos: 20.5,13.5 + parent: 34 + - uid: 3151 + components: + - type: Transform + pos: 18.5,13.5 + parent: 34 - uid: 3224 components: - type: Transform pos: 23.5,-40.5 parent: 34 + - uid: 3351 + components: + - type: Transform + pos: -22.5,-3.5 + parent: 34 + - uid: 3359 + components: + - type: Transform + pos: 20.5,12.5 + parent: 34 - uid: 3417 components: - type: Transform @@ -88293,11 +90469,32 @@ entities: - type: Transform pos: -55.5,2.5 parent: 34 + - uid: 3468 + components: + - type: Transform + pos: -45.5,6.5 + parent: 34 - uid: 3649 components: - type: Transform pos: 15.5,9.5 parent: 34 + - uid: 3754 + components: + - type: Transform + pos: -25.5,-5.5 + parent: 34 + - uid: 3854 + components: + - type: Transform + pos: -25.5,-7.5 + parent: 34 + - uid: 3860 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -36.5,-11.5 + parent: 34 - uid: 3870 components: - type: Transform @@ -88585,20 +90782,10 @@ entities: - type: Transform pos: 8.5,-27.5 parent: 34 - - uid: 4966 - components: - - type: Transform - pos: 24.5,9.5 - parent: 34 - - uid: 4970 - components: - - type: Transform - pos: 27.5,9.5 - parent: 34 - - uid: 4971 + - uid: 4962 components: - type: Transform - pos: 25.5,9.5 + pos: -29.5,-2.5 parent: 34 - uid: 4973 components: @@ -88675,6 +90862,12 @@ entities: - type: Transform pos: 32.5,-32.5 parent: 34 + - uid: 5279 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -47.5,0.5 + parent: 34 - uid: 5402 components: - type: Transform @@ -88710,6 +90903,27 @@ entities: - type: Transform pos: -36.5,0.5 parent: 34 + - uid: 5863 + components: + - type: Transform + pos: -48.5,8.5 + parent: 34 + - uid: 5864 + components: + - type: Transform + pos: -50.5,9.5 + parent: 34 + - uid: 5865 + components: + - type: Transform + pos: -47.5,6.5 + parent: 34 + - uid: 5886 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -44.5,-2.5 + parent: 34 - uid: 5923 components: - type: Transform @@ -88725,6 +90939,16 @@ entities: - type: Transform pos: 5.5,9.5 parent: 34 + - uid: 6081 + components: + - type: Transform + pos: -24.5,-2.5 + parent: 34 + - uid: 6083 + components: + - type: Transform + pos: -25.5,-2.5 + parent: 34 - uid: 6108 components: - type: Transform @@ -88755,27 +90979,107 @@ entities: - type: Transform pos: 6.5,3.5 parent: 34 + - uid: 6161 + components: + - type: Transform + pos: -26.5,-2.5 + parent: 34 + - uid: 6169 + components: + - type: Transform + pos: -24.5,-12.5 + parent: 34 - uid: 6343 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -52.5,-12.5 + pos: 16.5,10.5 parent: 34 - uid: 6388 components: - type: Transform pos: 12.5,-40.5 parent: 34 - - uid: 6730 + - uid: 6399 + components: + - type: Transform + pos: 17.5,10.5 + parent: 34 + - uid: 6516 + components: + - type: Transform + pos: 15.5,10.5 + parent: 34 + - uid: 6519 + components: + - type: Transform + pos: 15.5,11.5 + parent: 34 + - uid: 6521 + components: + - type: Transform + pos: 15.5,12.5 + parent: 34 + - uid: 6602 + components: + - type: Transform + pos: 21.5,10.5 + parent: 34 + - uid: 6604 + components: + - type: Transform + pos: -48.5,6.5 + parent: 34 + - uid: 6605 + components: + - type: Transform + pos: 22.5,10.5 + parent: 34 + - uid: 6606 components: - type: Transform pos: 23.5,10.5 parent: 34 + - uid: 6609 + components: + - type: Transform + pos: 19.5,13.5 + parent: 34 + - uid: 7141 + components: + - type: Transform + pos: -44.5,-6.5 + parent: 34 + - uid: 7142 + components: + - type: Transform + pos: -44.5,-7.5 + parent: 34 - uid: 7179 components: - type: Transform pos: -40.5,-21.5 parent: 34 + - uid: 7380 + components: + - type: Transform + pos: -48.5,7.5 + parent: 34 + - uid: 7398 + components: + - type: Transform + pos: -28.5,-9.5 + parent: 34 + - uid: 7466 + components: + - type: Transform + pos: -49.5,8.5 + parent: 34 + - uid: 7641 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 53.5,-42.5 + parent: 34 - uid: 7741 components: - type: Transform @@ -88791,11 +91095,21 @@ entities: - type: Transform pos: 9.5,-38.5 parent: 34 + - uid: 7803 + components: + - type: Transform + pos: -43.5,7.5 + parent: 34 - uid: 7846 components: - type: Transform pos: 12.5,-43.5 parent: 34 + - uid: 7983 + components: + - type: Transform + pos: -43.5,6.5 + parent: 34 - uid: 8004 components: - type: Transform @@ -88806,11 +91120,26 @@ entities: - type: Transform pos: -3.5,9.5 parent: 34 + - uid: 8085 + components: + - type: Transform + pos: -34.5,-20.5 + parent: 34 + - uid: 8092 + components: + - type: Transform + pos: -42.5,6.5 + parent: 34 - uid: 8116 components: - type: Transform pos: -4.5,8.5 parent: 34 + - uid: 8240 + components: + - type: Transform + pos: -50.5,8.5 + parent: 34 - uid: 8501 components: - type: Transform @@ -88821,6 +91150,47 @@ entities: - type: Transform pos: 4.5,-43.5 parent: 34 + - uid: 9191 + components: + - type: Transform + pos: -43.5,8.5 + parent: 34 + - uid: 9228 + components: + - type: Transform + pos: -43.5,9.5 + parent: 34 + - uid: 9233 + components: + - type: Transform + pos: -43.5,10.5 + parent: 34 + - uid: 9761 + components: + - type: Transform + pos: -35.5,-6.5 + parent: 34 + - uid: 9762 + components: + - type: Transform + pos: -34.5,-9.5 + parent: 34 + - uid: 9764 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -34.5,-6.5 + parent: 34 + - uid: 9766 + components: + - type: Transform + pos: -32.5,-6.5 + parent: 34 + - uid: 9770 + components: + - type: Transform + pos: -31.5,-9.5 + parent: 34 - uid: 10009 components: - type: Transform @@ -88831,12 +91201,6 @@ entities: - type: Transform pos: 2.5,9.5 parent: 34 - - uid: 10375 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -52.5,-14.5 - parent: 34 - uid: 10381 components: - type: Transform @@ -88852,11 +91216,6 @@ entities: - type: Transform pos: 7.5,-38.5 parent: 34 - - uid: 10622 - components: - - type: Transform - pos: 23.5,9.5 - parent: 34 - uid: 10711 components: - type: Transform @@ -88883,20 +91242,11 @@ entities: rot: 3.141592653589793 rad pos: 19.5,-34.5 parent: 34 - - uid: 11202 - components: - - type: Transform - pos: 23.5,12.5 - parent: 34 - - uid: 11206 - components: - - type: Transform - pos: 23.5,11.5 - parent: 34 - - uid: 11263 + - uid: 11262 components: - type: Transform - pos: 28.5,9.5 + rot: 3.141592653589793 rad + pos: -33.5,-6.5 parent: 34 - uid: 11381 components: @@ -88963,139 +91313,53 @@ entities: - type: Transform pos: 6.5,-2.5 parent: 34 -- proto: WallSolidRust - entities: - - uid: 3462 - components: - - type: Transform - pos: -54.5,9.5 - parent: 34 - - uid: 3471 - components: - - type: Transform - pos: -53.5,9.5 - parent: 34 - - uid: 4982 - components: - - type: Transform - pos: 22.5,10.5 - parent: 34 - - uid: 4983 - components: - - type: Transform - pos: 21.5,10.5 - parent: 34 - - uid: 5497 - components: - - type: Transform - pos: 38.5,-42.5 - parent: 34 - - uid: 11164 - components: - - type: Transform - pos: -52.5,9.5 - parent: 34 -- proto: WallWood - entities: - - uid: 2109 - components: - - type: Transform - pos: -52.5,2.5 - parent: 34 - - uid: 2111 - components: - - type: Transform - pos: -51.5,3.5 - parent: 34 - - uid: 2113 - components: - - type: Transform - pos: -47.5,2.5 - parent: 34 - - uid: 2114 - components: - - type: Transform - pos: -47.5,1.5 - parent: 34 - - uid: 2117 - components: - - type: Transform - pos: -52.5,1.5 - parent: 34 - - uid: 2118 - components: - - type: Transform - pos: -52.5,0.5 - parent: 34 - - uid: 5046 - components: - - type: Transform - pos: -52.5,3.5 - parent: 34 - - uid: 5047 - components: - - type: Transform - pos: -50.5,3.5 - parent: 34 - - uid: 5048 - components: - - type: Transform - pos: -49.5,3.5 - parent: 34 - - uid: 5049 - components: - - type: Transform - pos: -48.5,3.5 - parent: 34 - - uid: 5051 + - uid: 12977 components: - type: Transform pos: -42.5,0.5 parent: 34 - - uid: 5052 - components: - - type: Transform - pos: -42.5,1.5 - parent: 34 - - uid: 5053 + - uid: 13145 components: - type: Transform - pos: -42.5,2.5 + pos: 53.5,-43.5 parent: 34 - - uid: 5054 + - uid: 14059 components: - type: Transform - pos: -42.5,3.5 + pos: -53.5,2.5 parent: 34 - - uid: 5055 + - uid: 14070 components: - type: Transform - pos: -43.5,3.5 + pos: -47.5,2.5 parent: 34 - - uid: 5056 + - uid: 14592 components: - type: Transform - pos: -44.5,3.5 + rot: 3.141592653589793 rad + pos: 16.5,13.5 parent: 34 - - uid: 5057 +- proto: WallSolidRust + entities: + - uid: 3462 components: - type: Transform - pos: -45.5,3.5 + pos: -54.5,9.5 parent: 34 - - uid: 5058 + - uid: 3471 components: - type: Transform - pos: -46.5,3.5 + pos: -53.5,9.5 parent: 34 - - uid: 5808 + - uid: 5497 components: - type: Transform - pos: -47.5,3.5 + pos: 38.5,-42.5 parent: 34 - - uid: 5886 + - uid: 11164 components: - type: Transform - pos: -53.5,2.5 + pos: -52.5,9.5 parent: 34 - proto: WardrobeCargoFilled entities: @@ -89118,17 +91382,10 @@ entities: parent: 34 - proto: WardrobeGreyFilled entities: - - uid: 2208 - components: - - type: Transform - pos: -50.5,-6.5 - parent: 34 -- proto: WardrobeMixedFilled - entities: - - uid: 2120 + - uid: 6207 components: - type: Transform - pos: -43.5,1.5 + pos: 18.5,11.5 parent: 34 - proto: WardrobeSecurityFilled entities: @@ -89267,13 +91524,6 @@ entities: parent: 34 - type: WarpPoint location: Central Square - - uid: 11315 - components: - - type: Transform - pos: -43.5,-5.5 - parent: 34 - missingComponents: - - WarpPoint - uid: 12918 components: - type: Transform @@ -89297,7 +91547,7 @@ entities: parent: 34 - proto: WarpPointChapel entities: - - uid: 13762 + - uid: 14722 components: - type: Transform pos: -27.5,-16.5 @@ -89311,10 +91561,10 @@ entities: parent: 34 - proto: WarpPointCryo entities: - - uid: 13759 + - uid: 871 components: - type: Transform - pos: 17.5,15.5 + pos: 27.5,12.5 parent: 34 - proto: WarpPointDetective entities: @@ -89332,10 +91582,11 @@ entities: parent: 34 - proto: WarpPointDorms entities: - - uid: 13156 + - uid: 14537 components: - type: Transform - pos: -47.5,-5.5 + rot: -1.5707963267948966 rad + pos: 20.5,15.5 parent: 34 - proto: WarpPointEngineering entities: @@ -89346,10 +91597,10 @@ entities: parent: 34 - proto: WarpPointEpistemics entities: - - uid: 13766 + - uid: 14719 components: - type: Transform - pos: -30.5,-10.5 + pos: -45.5,-3.5 parent: 34 - proto: WarpPointEvac entities: @@ -89394,6 +91645,13 @@ entities: parent: 34 - type: WarpPoint location: Prosecutor +- proto: WarpPointLibrary + entities: + - uid: 14720 + components: + - type: Transform + pos: -31.5,-4.5 + parent: 34 - proto: WarpPointLogistics entities: - uid: 13771 @@ -89417,10 +91675,10 @@ entities: parent: 34 - proto: WarpPointReporter entities: - - uid: 14070 + - uid: 14721 components: - type: Transform - pos: -50.5,-13.5 + pos: -33.5,-18.5 parent: 34 - proto: WarpPointSalvage entities: @@ -89451,13 +91709,22 @@ entities: rot: -1.5707963267948966 rad pos: 45.5,-43.5 parent: 34 + - uid: 14459 + components: + - type: Transform + pos: 29.5,9.5 + parent: 34 - proto: WashingMachineFilledClothes entities: - - uid: 8890 + - uid: 10485 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -51.5,-3.5 + pos: 18.5,16.5 + parent: 34 + - uid: 13093 + components: + - type: Transform + pos: 21.5,16.5 parent: 34 - proto: WaterCooler entities: @@ -89466,11 +91733,6 @@ entities: - type: Transform pos: 19.5,-30.5 parent: 34 - - uid: 2190 - components: - - type: Transform - pos: -41.5,-5.5 - parent: 34 - uid: 3520 components: - type: Transform @@ -89528,15 +91790,15 @@ entities: - type: Transform pos: -18.5,2.5 parent: 34 - - uid: 10868 + - uid: 10870 components: - type: Transform - pos: 32.5,8.5 + pos: -50.5,-22.5 parent: 34 - - uid: 10870 + - uid: 13108 components: - type: Transform - pos: -50.5,-22.5 + pos: -31.5,-11.5 parent: 34 - uid: 14150 components: @@ -89548,12 +91810,24 @@ entities: - type: Transform pos: 35.5,-41.5 parent: 34 + - uid: 14400 + components: + - type: Transform + pos: 34.5,7.5 + parent: 34 - proto: WaterTankHighCapacity entities: - - uid: 876 + - uid: 2124 components: - type: Transform - pos: -17.5,-8.5 + pos: -18.5,-8.5 + parent: 34 +- proto: WaterVaporCanister + entities: + - uid: 12326 + components: + - type: Transform + pos: -52.5,-30.5 parent: 34 - proto: WeaponCapacitorRecharger entities: @@ -89774,12 +92048,6 @@ entities: parent: 34 - proto: WindoorSecure entities: - - uid: 931 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -26.5,-4.5 - parent: 34 - uid: 2276 components: - type: Transform @@ -89955,13 +92223,32 @@ entities: rot: 3.141592653589793 rad pos: -18.5,-20.5 parent: 34 -- proto: WindoorSecureScienceLocked +- proto: WindoorSecureReporterLocked entities: - - uid: 2523 + - uid: 2298 components: - type: Transform rot: 3.141592653589793 rad - pos: -34.5,-20.5 + pos: -33.5,-19.5 + parent: 34 + - uid: 3332 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -32.5,-19.5 + parent: 34 +- proto: WindoorSecureScienceLocked + entities: + - uid: 2178 + components: + - type: Transform + pos: -48.5,-7.5 + parent: 34 + - uid: 7128 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -40.5,-5.5 parent: 34 - proto: WindoorSecureSecurityLawyerLocked entities: @@ -90032,20 +92319,16 @@ entities: - type: Transform pos: 26.5,-25.5 parent: 34 - - uid: 585 - components: - - type: Transform - pos: -32.5,-9.5 - parent: 34 - - uid: 587 + - uid: 595 components: - type: Transform - pos: -32.5,-11.5 + pos: -29.5,-20.5 parent: 34 - - uid: 595 + - uid: 617 components: - type: Transform - pos: -29.5,-20.5 + rot: 1.5707963267948966 rad + pos: -30.5,-20.5 parent: 34 - uid: 648 components: @@ -90077,11 +92360,6 @@ entities: - type: Transform pos: -2.5,-9.5 parent: 34 - - uid: 910 - components: - - type: Transform - pos: -28.5,-20.5 - parent: 34 - uid: 911 components: - type: Transform @@ -90092,6 +92370,11 @@ entities: - type: Transform pos: -24.5,-20.5 parent: 34 + - uid: 917 + components: + - type: Transform + pos: -40.5,-12.5 + parent: 34 - uid: 1003 components: - type: Transform @@ -90172,11 +92455,6 @@ entities: - type: Transform pos: 14.5,-25.5 parent: 34 - - uid: 2179 - components: - - type: Transform - pos: -43.5,-8.5 - parent: 34 - uid: 2181 components: - type: Transform @@ -90187,6 +92465,11 @@ entities: - type: Transform pos: 8.5,-36.5 parent: 34 + - uid: 3103 + components: + - type: Transform + pos: -27.5,-2.5 + parent: 34 - uid: 3200 components: - type: Transform @@ -90317,10 +92600,11 @@ entities: - type: Transform pos: 15.5,3.5 parent: 34 - - uid: 5192 + - uid: 5263 components: - type: Transform - pos: 53.5,-42.5 + rot: 1.5707963267948966 rad + pos: -28.5,-20.5 parent: 34 - uid: 5470 components: @@ -90358,11 +92642,42 @@ entities: - type: Transform pos: 12.5,12.5 parent: 34 + - uid: 6528 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,15.5 + parent: 34 + - uid: 7403 + components: + - type: Transform + pos: -36.5,-18.5 + parent: 34 + - uid: 7423 + components: + - type: Transform + pos: -36.5,-19.5 + parent: 34 + - uid: 8262 + components: + - type: Transform + pos: -33.5,-20.5 + parent: 34 + - uid: 8274 + components: + - type: Transform + pos: -32.5,-20.5 + parent: 34 - uid: 8726 components: - type: Transform pos: 6.5,1.5 parent: 34 + - uid: 9767 + components: + - type: Transform + pos: -28.5,-2.5 + parent: 34 - uid: 10275 components: - type: Transform @@ -90408,8 +92723,20 @@ entities: - type: Transform pos: 43.5,-14.5 parent: 34 + - uid: 14659 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,-20.5 + parent: 34 - proto: WindowDirectional entities: + - uid: 2526 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -34.5,-19.5 + parent: 34 - uid: 10286 components: - type: Transform @@ -90435,16 +92762,22 @@ entities: - type: Transform pos: -16.5,6.5 parent: 34 - - uid: 1645 + - uid: 2036 components: - type: Transform - rot: 3.141592653589793 rad - pos: -27.5,-5.5 + rot: -1.5707963267948966 rad + pos: -49.5,-7.5 parent: 34 - - uid: 3324 + - uid: 2041 components: - type: Transform - pos: -27.5,-3.5 + rot: -1.5707963267948966 rad + pos: -49.5,-6.5 + parent: 34 + - uid: 2184 + components: + - type: Transform + pos: -49.5,-7.5 parent: 34 - uid: 4205 components: @@ -90601,24 +92934,6 @@ entities: - type: Transform pos: -15.5,6.5 parent: 34 - - uid: 13099 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 21.5,16.5 - parent: 34 - - uid: 13100 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 21.5,15.5 - parent: 34 - - uid: 13102 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 21.5,14.5 - parent: 34 - uid: 13287 components: - type: Transform @@ -90681,6 +92996,61 @@ entities: - type: Transform pos: 42.5,8.5 parent: 34 + - uid: 14539 + components: + - type: Transform + pos: 23.5,18.5 + parent: 34 + - uid: 14540 + components: + - type: Transform + pos: 22.5,18.5 + parent: 34 + - uid: 14541 + components: + - type: Transform + pos: 21.5,18.5 + parent: 34 + - uid: 14546 + components: + - type: Transform + pos: 25.5,18.5 + parent: 34 + - uid: 14547 + components: + - type: Transform + pos: 26.5,18.5 + parent: 34 + - uid: 14548 + components: + - type: Transform + pos: 27.5,18.5 + parent: 34 + - uid: 14549 + components: + - type: Transform + pos: 28.5,18.5 + parent: 34 + - uid: 14550 + components: + - type: Transform + pos: 29.5,18.5 + parent: 34 + - uid: 14552 + components: + - type: Transform + pos: 16.5,18.5 + parent: 34 + - uid: 14553 + components: + - type: Transform + pos: 17.5,18.5 + parent: 34 + - uid: 14554 + components: + - type: Transform + pos: 18.5,18.5 + parent: 34 - proto: WindowTintedDirectional entities: - uid: 11014 @@ -90709,16 +93079,6 @@ entities: parent: 34 - proto: WoodDoor entities: - - uid: 2183 - components: - - type: Transform - pos: -42.5,-8.5 - parent: 34 - - uid: 2184 - components: - - type: Transform - pos: -42.5,-2.5 - parent: 34 - uid: 6028 components: - type: Transform @@ -90756,6 +93116,11 @@ entities: - type: Transform pos: -55.5,-18.5 parent: 34 + - uid: 14433 + components: + - type: Transform + pos: 31.5,10.5 + parent: 34 - proto: WoodenSupportWallBroken entities: - uid: 6027 @@ -90768,6 +93133,11 @@ entities: - type: Transform pos: -54.5,-18.5 parent: 34 + - uid: 14432 + components: + - type: Transform + pos: 32.5,10.5 + parent: 34 - proto: Wrench entities: - uid: 6045 diff --git a/Resources/Prototypes/Catalog/Fills/Lockers/security.yml b/Resources/Prototypes/Catalog/Fills/Lockers/security.yml index 73dc7969254..1ceb86dd4e8 100644 --- a/Resources/Prototypes/Catalog/Fills/Lockers/security.yml +++ b/Resources/Prototypes/Catalog/Fills/Lockers/security.yml @@ -120,7 +120,7 @@ components: - type: StorageFill contents: - - id: ClothingEyesGlassesSecurity + - id: ClothingEyesGlassesCorpsman # DeltaV - Corpsman Glasses - id: WeaponDisabler - id: TrackingImplanter amount: 2 @@ -160,7 +160,7 @@ components: - type: StorageFill contents: - - id: ClothingEyesHudSecurity + - id: ClothingEyesGlassesCorpsman # DeltaV - Corpsman Glasses - id: WeaponDisabler - id: TrackingImplanter amount: 2 diff --git a/Resources/Prototypes/DeltaV/Entities/Clothing/Eyes/glasses.yml b/Resources/Prototypes/DeltaV/Entities/Clothing/Eyes/glasses.yml index 8642867effd..4124ca5b132 100644 --- a/Resources/Prototypes/DeltaV/Entities/Clothing/Eyes/glasses.yml +++ b/Resources/Prototypes/DeltaV/Entities/Clothing/Eyes/glasses.yml @@ -12,3 +12,33 @@ modifiers: coefficients: Caustic: 0.85 + +- type: entity + parent: [ClothingEyesBase, ShowSecurityIcons, ShowMedicalIcons, BaseRestrictedContraband] + id: ClothingEyesGlassesCorpsman + name: corpsman glasses + description: Security glasses designed for the Corpsman for medical and security needs. Now with a cool blue hue* + components: + - type: Sprite + sprite: DeltaV/Clothing/Eyes/Glasses/corpsglasses.rsi + - type: Clothing + sprite: DeltaV/Clothing/Eyes/Glasses/corpsglasses.rsi + - type: FlashImmunity + - type: EyeProtection + protectionTime: 5 + - type: Construction + graph: GlassesCorpsHUD + node: glassesCorps + - type: Tag + tags: + - HamsterWearable + - WhitelistChameleon + - SecDogWearable + - type: GuideHelp + guides: + - Security + - Antagonists + - Medical + - type: IdentityBlocker + coverage: EYES + diff --git a/Resources/Prototypes/DeltaV/Entities/Objects/Consumable/Food/soup.yml b/Resources/Prototypes/DeltaV/Entities/Objects/Consumable/Food/soup.yml index 6907a2d5741..d1ad0f8837b 100644 --- a/Resources/Prototypes/DeltaV/Entities/Objects/Consumable/Food/soup.yml +++ b/Resources/Prototypes/DeltaV/Entities/Objects/Consumable/Food/soup.yml @@ -30,3 +30,65 @@ sprite: DeltaV/Objects/Consumable/Food/scrambledeggs.rsi state: scrambled-eggs # Tastes like eggs, butter and salt + +- type: entity + name: blue tomato soup + parent: FoodBowlBase + id: FoodSoupTomatoBlue + description: It's hard to avoid spilling this tomato soup... + components: + - type: FlavorProfile + flavors: + - funny + - tomato + - type: Sprite + sprite: DeltaV/Objects/Consumable/Food/bluepurpletomatosoup.rsi + layers: + - state: bowl + - state: blue-tomato + - type: SolutionContainerManager + solutions: + food: + maxVol: 12 + reagents: + - ReagentId: Nutriment + Quantity: 3 + - ReagentId: SpaceLube + Quantity: 6 + - ReagentId: Water + Quantity: 3 + - type: Tag + tags: + - Fruit + - Soup + +- type: entity + name: purple tomato soup + parent: FoodBowlBase + id: FoodSoupTomatoPurple + description: Do they make purple tomatoes? + components: + - type: FlavorProfile + flavors: + - tingly + - tomato + - type: Sprite + sprite: DeltaV/Objects/Consumable/Food/bluepurpletomatosoup.rsi + layers: + - state: bowl + - state: purple-tomato + - type: SolutionContainerManager + solutions: + food: + maxVol: 12 + reagents: + - ReagentId: Nutriment + Quantity: 3 + - ReagentId: SpaceLube + Quantity: 3 + - ReagentId: Water + Quantity: 6 + - type: Tag + tags: + - Fruit + - Soup diff --git a/Resources/Prototypes/DeltaV/Recipes/Construction/Graphs/clothing/glasses_corpshud.yml b/Resources/Prototypes/DeltaV/Recipes/Construction/Graphs/clothing/glasses_corpshud.yml new file mode 100644 index 00000000000..2a29d4cf103 --- /dev/null +++ b/Resources/Prototypes/DeltaV/Recipes/Construction/Graphs/clothing/glasses_corpshud.yml @@ -0,0 +1,25 @@ +- type: constructionGraph + id: GlassesCorpsHUD + start: start + graph: + - node: start + edges: + - to: glassesCorps + steps: + - tag: Sunglasses + name: sun glasses + icon: + sprite: Clothing/Eyes/Glasses/sunglasses.rsi + state: icon + doAfter: 5 + - tag: HudMedicalSecurity + name: medsec hud + icon: + sprite: Clothing/Eyes/Hud/medsec.rsi + state: icon + doAfter: 5 + - material: Cable + amount: 5 + doAfter: 5 + - node: glassesCorps + entity: ClothingEyesGlassesCorpsman diff --git a/Resources/Prototypes/DeltaV/Recipes/Construction/clothing.yml b/Resources/Prototypes/DeltaV/Recipes/Construction/clothing.yml index 386a0211c03..5eee1b7c6e2 100644 --- a/Resources/Prototypes/DeltaV/Recipes/Construction/clothing.yml +++ b/Resources/Prototypes/DeltaV/Recipes/Construction/clothing.yml @@ -19,3 +19,14 @@ description: Prescription sechud, merged glasses and sechud together by sheer luck and cables with glue. icon: { sprite: DeltaV/Clothing/Eyes/Hud/prescsechud.rsi, state: icon } objectType: Item + +- type: construction + name: corpsman glasses + id: ClothingEyesGlassesCorpsman + graph: GlassesCorpsHUD + startNode: start + targetNode: glassesCorps + category: construction-category-clothing + description: A pair of sunglasses, modified to have a built-in security and medical HUD. + icon: { sprite: DeltaV/Clothing/Eyes/Glasses/corpsglasses.rsi, state: icon } + objectType: Item diff --git a/Resources/Prototypes/DeltaV/Recipes/Cooking/meal_recipes.yml b/Resources/Prototypes/DeltaV/Recipes/Cooking/meal_recipes.yml index 2533bff44bb..01287c1016d 100644 --- a/Resources/Prototypes/DeltaV/Recipes/Cooking/meal_recipes.yml +++ b/Resources/Prototypes/DeltaV/Recipes/Cooking/meal_recipes.yml @@ -29,3 +29,26 @@ FoodDoughPie: 1 FoodPumpkin: 1 FoodPlateTin: 1 + +- type: microwaveMealRecipe + id: RecipeBlueTomatoSoup + name: blue tomato soup recipe + result: FoodSoupTomatoBlue + time: 10 + reagents: + Water: 10 + solids: + FoodBowlBig: 1 + FoodBlueTomato: 2 + +- type: microwaveMealRecipe + id: RecipePurpleTomatoSoup + name: purple tomato soup recipe + result: FoodSoupTomatoPurple + time: 10 + reagents: + Water: 10 + solids: + FoodBowlBig: 1 + FoodBlueTomato: 1 + FoodTomato: 1 diff --git a/Resources/Prototypes/DeltaV/XenoArch/Effects/glimmer.yml b/Resources/Prototypes/DeltaV/XenoArch/Effects/glimmer.yml new file mode 100644 index 00000000000..227859b05c2 --- /dev/null +++ b/Resources/Prototypes/DeltaV/XenoArch/Effects/glimmer.yml @@ -0,0 +1,32 @@ +- type: artifactEffect + id: EffectRaiseGlimmer + targetDepth: 2 + effectHint: artifact-effect-hint-noosphere + components: + - type: GlimmerArtifact + range: + min: 0 + max: 450 # cant instantly get ended by a looping artifact + change: 30 + +- type: artifactEffect + id: EffectRaiseGlimmerLarge + targetDepth: 4 + effectHint: artifact-effect-hint-noosphere + components: + - type: GlimmerArtifact + range: + min: 0 + max: 700 # cant get to 1000 from a looping artifact + change: 70 + +- type: artifactEffect + id: EffectLowerGlimmer + targetDepth: 4 + effectHint: artifact-effect-hint-noosphere + components: + - type: GlimmerArtifact + range: + min: 400 # for recovering from serious glimmer emergencies, not a full drain replacement + max: 1000 + change: -50 diff --git a/Resources/Prototypes/DeltaV/XenoArch/Effects/psionic.yml b/Resources/Prototypes/DeltaV/XenoArch/Effects/psionic.yml new file mode 100644 index 00000000000..8004305b4bf --- /dev/null +++ b/Resources/Prototypes/DeltaV/XenoArch/Effects/psionic.yml @@ -0,0 +1,7 @@ +- type: artifactEffect + id: EffectMakePsionic + targetDepth: 4 + effectHint: artifact-effect-hint-noosphere + components: + - type: PsionicProducingArtifact + range: 5 diff --git a/Resources/Prototypes/DeltaV/XenoArch/artifact_triggers.yml b/Resources/Prototypes/DeltaV/XenoArch/artifact_triggers.yml new file mode 100644 index 00000000000..51390e5dd61 --- /dev/null +++ b/Resources/Prototypes/DeltaV/XenoArch/artifact_triggers.yml @@ -0,0 +1,9 @@ +- type: artifactTrigger + id: TriggerMetapsionic + targetDepth: 3 + triggerHint: artifact-trigger-hint-psionic + components: + - type: ArtifactMetapsionicTrigger + - type: MetapsionicPower + +# TODO: when golemization is ported, add a trigger for golemizing someone, target 7 or something diff --git a/Resources/Prototypes/DeltaV/tags.yml b/Resources/Prototypes/DeltaV/tags.yml index 275fab995d0..335749959bf 100644 --- a/Resources/Prototypes/DeltaV/tags.yml +++ b/Resources/Prototypes/DeltaV/tags.yml @@ -59,6 +59,9 @@ - type: Tag id: PaperSlip + +- type: Tag + id: HudMedicalSecurity #Craftable Corpsman Glasses - type: Tag id: BorgModuleSecurity diff --git a/Resources/Prototypes/Entities/Clothing/Eyes/hud.yml b/Resources/Prototypes/Entities/Clothing/Eyes/hud.yml index 9e881bf9c21..f79817bfab7 100644 --- a/Resources/Prototypes/Entities/Clothing/Eyes/hud.yml +++ b/Resources/Prototypes/Entities/Clothing/Eyes/hud.yml @@ -164,6 +164,9 @@ - type: Construction graph: HudMedSec node: medsecHud + - type: Tag + tags: + - HudMedicalSecurity - type: entity parent: [ClothingEyesBase, ShowSecurityIcons, ShowMedicalIcons] diff --git a/Resources/Prototypes/Maps/asterisk.yml b/Resources/Prototypes/Maps/asterisk.yml index 074fc8bbeed..0f1621369a1 100644 --- a/Resources/Prototypes/Maps/asterisk.yml +++ b/Resources/Prototypes/Maps/asterisk.yml @@ -3,7 +3,7 @@ mapName: 'Asterisk' mapPath: /Maps/asterisk.yml minPlayers: 5 - maxPlayers: 70 #80 available job slots that aren't passenger + maxPlayers: 50 stations: Asterisk: stationProto: StandardNanotrasenStation diff --git a/Resources/Prototypes/Maps/chibi.yml b/Resources/Prototypes/Maps/chibi.yml index 9c06677bb28..62b88e3dc0e 100644 --- a/Resources/Prototypes/Maps/chibi.yml +++ b/Resources/Prototypes/Maps/chibi.yml @@ -3,13 +3,11 @@ mapName: 'Chibi' mapPath: /Maps/chibi.yml minPlayers: 0 - maxPlayers: 10 + maxPlayers: 4 stations: Chibi: stationProto: StandardNanotrasenStation components: - - type: StationEmergencyShuttle - emergencyShuttlePath: /Maps/Shuttles/DeltaV/NTES_Right.yml - type: StationNameSetup mapNameTemplate: '{0} Chibi Station {1}' nameGenerator: diff --git a/Resources/Prototypes/Maps/edge.yml b/Resources/Prototypes/Maps/edge.yml index 713366d5467..c93d3e64c3d 100644 --- a/Resources/Prototypes/Maps/edge.yml +++ b/Resources/Prototypes/Maps/edge.yml @@ -68,6 +68,6 @@ #justice ChiefJustice: [ 1, 1 ] Lawyer: [ 1, 1 ] - Prosecutor: [ 1, 1] + Prosecutor: [ 1, 1 ] Clerk: [ 1, 1 ] diff --git a/Resources/Prototypes/Maps/shoukou.yml b/Resources/Prototypes/Maps/shoukou.yml index bef59f1b8c4..8b4b72f18f1 100644 --- a/Resources/Prototypes/Maps/shoukou.yml +++ b/Resources/Prototypes/Maps/shoukou.yml @@ -14,11 +14,12 @@ !type:NanotrasenNameGenerator prefixCreator: 'NY' - type: StationEmergencyShuttle - emergencyShuttlePath: /Maps/Shuttles/DeltaV/NTES_Delta.yml + emergencyShuttlePath: /Maps/Shuttles/DeltaV/NTES_Kaeri.yml - type: StationJobs availableJobs: #Service Passenger: [ -1, -1 ] + Librarian: [ 1, 1 ] ServiceWorker: [ 1, 2 ] Reporter: [ 0, 1 ] Bartender: [ 1, 2 ] diff --git a/Resources/Prototypes/Nyanotrasen/Entities/Objects/Weapons/Guns/Pistols/pistols.yml b/Resources/Prototypes/Nyanotrasen/Entities/Objects/Weapons/Guns/Pistols/pistols.yml index e6343053000..292a1c90939 100644 --- a/Resources/Prototypes/Nyanotrasen/Entities/Objects/Weapons/Guns/Pistols/pistols.yml +++ b/Resources/Prototypes/Nyanotrasen/Entities/Objects/Weapons/Guns/Pistols/pistols.yml @@ -1,18 +1,18 @@ - type: entity - name: mk 32 "Universal" + name: Mk32 "Universal" # DeltaV - update Mk32 parent: BaseWeaponPistol id: WeaponPistolUniversal - description: An expensive and robust pistol with decent offensive capabilities. Uses .45 magnum ammo. + description: The Mark 32 Offensive Handgun, produced by NanoTrasen's Small Arms Division. Uses .45 magnum ammo. # DeltaV - update Mk32 components: - type: Sprite - sprite: Nyanotrasen/Objects/Weapons/Guns/Pistols/universal.rsi + sprite: DeltaV/Objects/Weapons/Guns/Pistols/universal.rsi # DeltaV - update Mk32 layers: - state: base map: ["enum.GunVisualLayers.Base"] - state: mag-0 map: ["enum.GunVisualLayers.Mag"] - type: Clothing - sprite: Nyanotrasen/Objects/Weapons/Guns/Pistols/universal.rsi + sprite: DeltaV/Objects/Weapons/Guns/Pistols/universal.rsi # DeltaV - update Mk32 - type: Gun fireRate: 3 availableModes: diff --git a/Resources/Prototypes/Recipes/Construction/clothing.yml b/Resources/Prototypes/Recipes/Construction/clothing.yml index daabdbf3bfb..8efdffb67dc 100644 --- a/Resources/Prototypes/Recipes/Construction/clothing.yml +++ b/Resources/Prototypes/Recipes/Construction/clothing.yml @@ -119,13 +119,13 @@ icon: { sprite: Clothing/Belt/quiver.rsi, state: icon } objectType: Item -- type: construction - name: justice helm - id: ClothingHeadHelmetJustice - graph: HelmetJustice - startNode: start - targetNode: helmet - category: construction-category-clothing - description: Advanced security gear. Protects the station from ne'er-do-wells. - icon: { sprite: Clothing/Head/Helmets/justice.rsi, state: icon } - objectType: Item +#- type: construction # DeltaV - remove for overstimulation + LRP +# name: justice helm +# id: ClothingHeadHelmetJustice +# graph: HelmetJustice +# startNode: start +# targetNode: helmet +# category: construction-category-clothing +# description: Advanced security gear. Protects the station from ne'er-do-wells. +# icon: { sprite: Clothing/Head/Helmets/justice.rsi, state: icon } +# objectType: Item diff --git a/Resources/Prototypes/XenoArch/Effects/utility_effects.yml b/Resources/Prototypes/XenoArch/Effects/utility_effects.yml index 8cf7fb0b360..a3261dc4de3 100644 --- a/Resources/Prototypes/XenoArch/Effects/utility_effects.yml +++ b/Resources/Prototypes/XenoArch/Effects/utility_effects.yml @@ -188,24 +188,25 @@ soundGunshot: path: /Audio/Weapons/Guns/Gunshots/revolver.ogg -- type: artifactEffect - id: EffectSentience - targetDepth: 3 - effectHint: artifact-effect-hint-sentience - permanentComponents: - - type: GhostRole - allowMovement: true - allowSpeech: true - makeSentient: true - name: ghost-role-information-artifact-name - description: ghost-role-information-artifact-description - rules: ghost-role-information-freeagent-rules - raffle: - settings: default - - type: GhostTakeoverAvailable - - type: MovementSpeedModifier - baseWalkSpeed: 0.25 - baseSprintSpeed: 0.5 +# DeltaV: disabled sentience due to very rarely being good RP, and usually ending the round early +#- type: artifactEffect +# id: EffectSentience +# targetDepth: 3 +# effectHint: artifact-effect-hint-sentience +# permanentComponents: +# - type: GhostRole +# allowMovement: true +# allowSpeech: true +# makeSentient: true +# name: ghost-role-information-artifact-name +# description: ghost-role-information-artifact-description +# rules: ghost-role-information-freeagent-rules +# raffle: +# settings: default +# - type: GhostTakeoverAvailable +# - type: MovementSpeedModifier +# baseWalkSpeed: 0.25 +# baseSprintSpeed: 0.5 - type: artifactEffect id: EffectMultitool diff --git a/Resources/Textures/Clothing/Head/Hardsuits/capspace.rsi/meta.json b/Resources/Textures/Clothing/Head/Hardsuits/capspace.rsi/meta.json index 1ccf847b3ed..48713a917ed 100644 --- a/Resources/Textures/Clothing/Head/Hardsuits/capspace.rsi/meta.json +++ b/Resources/Textures/Clothing/Head/Hardsuits/capspace.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e, modified by Emisse for SS14. Vox states by Flareguy for SS14", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e, modified by Emisse for SS14. Vox states by Flareguy for SS14 | Vulpkanin states sprited by TJohnson (Delta-V)", "size": { "x": 32, "y": 32 @@ -36,6 +36,14 @@ { "name": "on-equipped-HELMET-harpy", "directions": 4 + }, + { + "name": "off-equipped-HELMET-vulpkanin", + "directions": 4 + }, + { + "name": "on-equipped-HELMET-vulpkanin", + "directions": 4 } ] } diff --git a/Resources/Textures/Clothing/Head/Hardsuits/capspace.rsi/off-equipped-HELMET-vulpkanin.png b/Resources/Textures/Clothing/Head/Hardsuits/capspace.rsi/off-equipped-HELMET-vulpkanin.png new file mode 100644 index 00000000000..3ceb81a1eae Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/capspace.rsi/off-equipped-HELMET-vulpkanin.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/capspace.rsi/on-equipped-HELMET-vulpkanin.png b/Resources/Textures/Clothing/Head/Hardsuits/capspace.rsi/on-equipped-HELMET-vulpkanin.png new file mode 100644 index 00000000000..1da47c401f3 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/capspace.rsi/on-equipped-HELMET-vulpkanin.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/luxury.rsi/meta.json b/Resources/Textures/Clothing/Head/Hardsuits/luxury.rsi/meta.json index d80c50a1c44..e4270e72c63 100644 --- a/Resources/Textures/Clothing/Head/Hardsuits/luxury.rsi/meta.json +++ b/Resources/Textures/Clothing/Head/Hardsuits/luxury.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Texture edit from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e. Vox states by Flareguy for Space Station 14", + "copyright": "Texture edit from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e. Vox states by Flareguy for Space Station 14 | Vulpkanin states sprited by TJohnson (Delta-V)", "size": { "x": 32, "y": 32 @@ -28,6 +28,14 @@ { "name": "on-equipped-HELMET-vox", "directions": 4 + }, + { + "name": "off-equipped-HELMET-vulpkanin", + "directions": 4 + }, + { + "name": "on-equipped-HELMET-vulpkanin", + "directions": 4 } ] } diff --git a/Resources/Textures/Clothing/Head/Hardsuits/luxury.rsi/off-equipped-HELMET-vulpkanin.png b/Resources/Textures/Clothing/Head/Hardsuits/luxury.rsi/off-equipped-HELMET-vulpkanin.png new file mode 100644 index 00000000000..697bf06c99d Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/luxury.rsi/off-equipped-HELMET-vulpkanin.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/luxury.rsi/on-equipped-HELMET-vulpkanin.png b/Resources/Textures/Clothing/Head/Hardsuits/luxury.rsi/on-equipped-HELMET-vulpkanin.png new file mode 100644 index 00000000000..fbb2aa0518a Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/luxury.rsi/on-equipped-HELMET-vulpkanin.png differ diff --git a/Resources/Textures/Clothing/Mask/neckgaiter.rsi/equipped-MASK-vulpkanin.png b/Resources/Textures/Clothing/Mask/neckgaiter.rsi/equipped-MASK-vulpkanin.png new file mode 100644 index 00000000000..886ea7a9b19 Binary files /dev/null and b/Resources/Textures/Clothing/Mask/neckgaiter.rsi/equipped-MASK-vulpkanin.png differ diff --git a/Resources/Textures/Clothing/Mask/neckgaiter.rsi/meta.json b/Resources/Textures/Clothing/Mask/neckgaiter.rsi/meta.json index 4da74959ddc..6845040bf65 100644 --- a/Resources/Textures/Clothing/Mask/neckgaiter.rsi/meta.json +++ b/Resources/Textures/Clothing/Mask/neckgaiter.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Sprited by belay5 (Discord) | equipped-MASK-vox sprited by PuroSlavKing (Github)", + "copyright": "Sprited by belay5 (Discord) | equipped-MASK-vox sprited by PuroSlavKing (Github) | equipped-MASK-vulpkanin sprited by TJohnson (Delta-V)", "size": { "x": 32, "y": 32 @@ -29,6 +29,10 @@ { "name": "inhand-right", "directions": 4 + }, + { + "name": "equipped-MASK-vulpkanin", + "directions": 4 } ] } diff --git a/Resources/Textures/Clothing/Mask/neckgaiterred.rsi/equipped-MASK-vulpkanin.png b/Resources/Textures/Clothing/Mask/neckgaiterred.rsi/equipped-MASK-vulpkanin.png new file mode 100644 index 00000000000..80efc668ddb Binary files /dev/null and b/Resources/Textures/Clothing/Mask/neckgaiterred.rsi/equipped-MASK-vulpkanin.png differ diff --git a/Resources/Textures/Clothing/Mask/neckgaiterred.rsi/meta.json b/Resources/Textures/Clothing/Mask/neckgaiterred.rsi/meta.json index d5005eec9f5..21cd28bf150 100644 --- a/Resources/Textures/Clothing/Mask/neckgaiterred.rsi/meta.json +++ b/Resources/Textures/Clothing/Mask/neckgaiterred.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Originally sprited by belay5 (Discord) then recolored by Nairod (Github). equipped-MASK-vox sprited by PuroSlavKing (Github) and recolored by Flareguy", + "copyright": "Originally sprited by belay5 (Discord) then recolored by Nairod (Github). equipped-MASK-vox sprited by PuroSlavKing (Github) and recolored by Flareguy | equipped-MASK-vulpkanin sprited by TJohnson (Delta-V)", "size": { "x": 32, "y": 32 @@ -29,6 +29,10 @@ { "name": "inhand-right", "directions": 4 + }, + { + "name": "equipped-MASK-vulpkanin", + "directions": 4 } ] } diff --git a/Resources/Textures/DeltaV/Clothing/Eyes/Glasses/corpsglasses.rsi/equipped-EYES-hamster.png b/Resources/Textures/DeltaV/Clothing/Eyes/Glasses/corpsglasses.rsi/equipped-EYES-hamster.png new file mode 100644 index 00000000000..ef6b81f3f47 Binary files /dev/null and b/Resources/Textures/DeltaV/Clothing/Eyes/Glasses/corpsglasses.rsi/equipped-EYES-hamster.png differ diff --git a/Resources/Textures/DeltaV/Clothing/Eyes/Glasses/corpsglasses.rsi/equipped-EYES-secdog.png b/Resources/Textures/DeltaV/Clothing/Eyes/Glasses/corpsglasses.rsi/equipped-EYES-secdog.png new file mode 100644 index 00000000000..56f07db4ae1 Binary files /dev/null and b/Resources/Textures/DeltaV/Clothing/Eyes/Glasses/corpsglasses.rsi/equipped-EYES-secdog.png differ diff --git a/Resources/Textures/DeltaV/Clothing/Eyes/Glasses/corpsglasses.rsi/equipped-EYES.png b/Resources/Textures/DeltaV/Clothing/Eyes/Glasses/corpsglasses.rsi/equipped-EYES.png new file mode 100644 index 00000000000..2e2d81e66de Binary files /dev/null and b/Resources/Textures/DeltaV/Clothing/Eyes/Glasses/corpsglasses.rsi/equipped-EYES.png differ diff --git a/Resources/Textures/DeltaV/Clothing/Eyes/Glasses/corpsglasses.rsi/icon.png b/Resources/Textures/DeltaV/Clothing/Eyes/Glasses/corpsglasses.rsi/icon.png new file mode 100644 index 00000000000..e16283bad41 Binary files /dev/null and b/Resources/Textures/DeltaV/Clothing/Eyes/Glasses/corpsglasses.rsi/icon.png differ diff --git a/Resources/Textures/DeltaV/Clothing/Eyes/Glasses/corpsglasses.rsi/inhand-left.png b/Resources/Textures/DeltaV/Clothing/Eyes/Glasses/corpsglasses.rsi/inhand-left.png new file mode 100644 index 00000000000..934cdf25f24 Binary files /dev/null and b/Resources/Textures/DeltaV/Clothing/Eyes/Glasses/corpsglasses.rsi/inhand-left.png differ diff --git a/Resources/Textures/DeltaV/Clothing/Eyes/Glasses/corpsglasses.rsi/inhand-right.png b/Resources/Textures/DeltaV/Clothing/Eyes/Glasses/corpsglasses.rsi/inhand-right.png new file mode 100644 index 00000000000..0abf0350879 Binary files /dev/null and b/Resources/Textures/DeltaV/Clothing/Eyes/Glasses/corpsglasses.rsi/inhand-right.png differ diff --git a/Resources/Textures/DeltaV/Clothing/Eyes/Glasses/corpsglasses.rsi/meta.json b/Resources/Textures/DeltaV/Clothing/Eyes/Glasses/corpsglasses.rsi/meta.json new file mode 100644 index 00000000000..5975b01e810 --- /dev/null +++ b/Resources/Textures/DeltaV/Clothing/Eyes/Glasses/corpsglasses.rsi/meta.json @@ -0,0 +1,34 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Remodeled design of the Security Glasses done by Unkn0wn_Gh0st on github", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-EYES", + "directions": 4 + }, + { + "name": "equipped-EYES-hamster", + "directions": 4 + }, + { + "name": "equipped-EYES-secdog", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/DeltaV/Clothing/Head/Helmets/light_riot.rsi/equipped-HELMET-reptilian.png b/Resources/Textures/DeltaV/Clothing/Head/Helmets/light_riot.rsi/equipped-HELMET-reptilian.png new file mode 100644 index 00000000000..0c85288121d Binary files /dev/null and b/Resources/Textures/DeltaV/Clothing/Head/Helmets/light_riot.rsi/equipped-HELMET-reptilian.png differ diff --git a/Resources/Textures/DeltaV/Clothing/Head/Helmets/light_riot.rsi/equipped-HELMET-vox.png b/Resources/Textures/DeltaV/Clothing/Head/Helmets/light_riot.rsi/equipped-HELMET-vox.png new file mode 100644 index 00000000000..1b58e3c47da Binary files /dev/null and b/Resources/Textures/DeltaV/Clothing/Head/Helmets/light_riot.rsi/equipped-HELMET-vox.png differ diff --git a/Resources/Textures/DeltaV/Clothing/Head/Helmets/light_riot.rsi/equipped-HELMET-vulpkanin.png b/Resources/Textures/DeltaV/Clothing/Head/Helmets/light_riot.rsi/equipped-HELMET-vulpkanin.png new file mode 100644 index 00000000000..0c85288121d Binary files /dev/null and b/Resources/Textures/DeltaV/Clothing/Head/Helmets/light_riot.rsi/equipped-HELMET-vulpkanin.png differ diff --git a/Resources/Textures/DeltaV/Clothing/Head/Helmets/light_riot.rsi/meta.json b/Resources/Textures/DeltaV/Clothing/Head/Helmets/light_riot.rsi/meta.json index 191b8682128..4c4e0f35e49 100644 --- a/Resources/Textures/DeltaV/Clothing/Head/Helmets/light_riot.rsi/meta.json +++ b/Resources/Textures/DeltaV/Clothing/Head/Helmets/light_riot.rsi/meta.json @@ -21,6 +21,18 @@ { "name": "inhand-right", "directions": 4 + }, + { + "name": "equipped-HELMET-vox", + "directions": 4 + }, + { + "name": "equipped-HELMET-vulpkanin", + "directions": 4 + }, + { + "name": "equipped-HELMET-reptilian", + "directions": 4 } ] } \ No newline at end of file diff --git a/Resources/Textures/DeltaV/Objects/Consumable/Food/bluepurpletomatosoup.rsi/blue-tomato.png b/Resources/Textures/DeltaV/Objects/Consumable/Food/bluepurpletomatosoup.rsi/blue-tomato.png new file mode 100644 index 00000000000..31c76047e04 Binary files /dev/null and b/Resources/Textures/DeltaV/Objects/Consumable/Food/bluepurpletomatosoup.rsi/blue-tomato.png differ diff --git a/Resources/Textures/DeltaV/Objects/Consumable/Food/bluepurpletomatosoup.rsi/bowl.png b/Resources/Textures/DeltaV/Objects/Consumable/Food/bluepurpletomatosoup.rsi/bowl.png new file mode 100644 index 00000000000..9f91f21ff45 Binary files /dev/null and b/Resources/Textures/DeltaV/Objects/Consumable/Food/bluepurpletomatosoup.rsi/bowl.png differ diff --git a/Resources/Textures/DeltaV/Objects/Consumable/Food/bluepurpletomatosoup.rsi/meta.json b/Resources/Textures/DeltaV/Objects/Consumable/Food/bluepurpletomatosoup.rsi/meta.json new file mode 100644 index 00000000000..adf7d8b7ef8 --- /dev/null +++ b/Resources/Textures/DeltaV/Objects/Consumable/Food/bluepurpletomatosoup.rsi/meta.json @@ -0,0 +1,20 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Bowl taken from tgstation and modified by Swept at https://github.com/tgstation/tgstation/commit/40d75cc340c63582fb66ce15bf75a36115f6bdaa, Tomato texture created by potato1234_x and recolored by DisposableCrewmember42", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "bowl" + }, + { + "name": "blue-tomato" + }, + { + "name": "purple-tomato" + } + ] +} diff --git a/Resources/Textures/DeltaV/Objects/Consumable/Food/bluepurpletomatosoup.rsi/purple-tomato.png b/Resources/Textures/DeltaV/Objects/Consumable/Food/bluepurpletomatosoup.rsi/purple-tomato.png new file mode 100644 index 00000000000..91070a8f28b Binary files /dev/null and b/Resources/Textures/DeltaV/Objects/Consumable/Food/bluepurpletomatosoup.rsi/purple-tomato.png differ diff --git a/Resources/Textures/DeltaV/Objects/Weapons/Guns/Pistols/universal.rsi/base.png b/Resources/Textures/DeltaV/Objects/Weapons/Guns/Pistols/universal.rsi/base.png new file mode 100644 index 00000000000..84eb5da24be Binary files /dev/null and b/Resources/Textures/DeltaV/Objects/Weapons/Guns/Pistols/universal.rsi/base.png differ diff --git a/Resources/Textures/DeltaV/Objects/Weapons/Guns/Pistols/universal.rsi/bolt-open.png b/Resources/Textures/DeltaV/Objects/Weapons/Guns/Pistols/universal.rsi/bolt-open.png new file mode 100644 index 00000000000..85427c2ab73 Binary files /dev/null and b/Resources/Textures/DeltaV/Objects/Weapons/Guns/Pistols/universal.rsi/bolt-open.png differ diff --git a/Resources/Textures/DeltaV/Objects/Weapons/Guns/Pistols/universal.rsi/equipped-BELT.png b/Resources/Textures/DeltaV/Objects/Weapons/Guns/Pistols/universal.rsi/equipped-BELT.png new file mode 100644 index 00000000000..d102816ef36 Binary files /dev/null and b/Resources/Textures/DeltaV/Objects/Weapons/Guns/Pistols/universal.rsi/equipped-BELT.png differ diff --git a/Resources/Textures/DeltaV/Objects/Weapons/Guns/Pistols/universal.rsi/equipped-SUITSTORAGE.png b/Resources/Textures/DeltaV/Objects/Weapons/Guns/Pistols/universal.rsi/equipped-SUITSTORAGE.png new file mode 100644 index 00000000000..561b65c8a46 Binary files /dev/null and b/Resources/Textures/DeltaV/Objects/Weapons/Guns/Pistols/universal.rsi/equipped-SUITSTORAGE.png differ diff --git a/Resources/Textures/DeltaV/Objects/Weapons/Guns/Pistols/universal.rsi/icon.png b/Resources/Textures/DeltaV/Objects/Weapons/Guns/Pistols/universal.rsi/icon.png new file mode 100644 index 00000000000..df00b4ff7ad Binary files /dev/null and b/Resources/Textures/DeltaV/Objects/Weapons/Guns/Pistols/universal.rsi/icon.png differ diff --git a/Resources/Textures/DeltaV/Objects/Weapons/Guns/Pistols/universal.rsi/inhand-left.png b/Resources/Textures/DeltaV/Objects/Weapons/Guns/Pistols/universal.rsi/inhand-left.png new file mode 100644 index 00000000000..9300e09c03c Binary files /dev/null and b/Resources/Textures/DeltaV/Objects/Weapons/Guns/Pistols/universal.rsi/inhand-left.png differ diff --git a/Resources/Textures/DeltaV/Objects/Weapons/Guns/Pistols/universal.rsi/inhand-right.png b/Resources/Textures/DeltaV/Objects/Weapons/Guns/Pistols/universal.rsi/inhand-right.png new file mode 100644 index 00000000000..608315d7e3c Binary files /dev/null and b/Resources/Textures/DeltaV/Objects/Weapons/Guns/Pistols/universal.rsi/inhand-right.png differ diff --git a/Resources/Textures/DeltaV/Objects/Weapons/Guns/Pistols/universal.rsi/mag-0.png b/Resources/Textures/DeltaV/Objects/Weapons/Guns/Pistols/universal.rsi/mag-0.png new file mode 100644 index 00000000000..918f5aaf0dc Binary files /dev/null and b/Resources/Textures/DeltaV/Objects/Weapons/Guns/Pistols/universal.rsi/mag-0.png differ diff --git a/Resources/Textures/DeltaV/Objects/Weapons/Guns/Pistols/universal.rsi/meta.json b/Resources/Textures/DeltaV/Objects/Weapons/Guns/Pistols/universal.rsi/meta.json new file mode 100644 index 00000000000..40251545d35 --- /dev/null +++ b/Resources/Textures/DeltaV/Objects/Weapons/Guns/Pistols/universal.rsi/meta.json @@ -0,0 +1,39 @@ +{ + "version": 1, + "license": "CC0-1.0", + "copyright": "Original work by TJohnson.", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "base" + }, + { + "name": "bolt-open" + }, + { + "name": "mag-0" + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + }, + { + "name": "equipped-BELT", + "directions": 4 + }, + { + "name": "equipped-SUITSTORAGE", + "directions": 4 + } + ] +}